Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1.41 KB

README.md

File metadata and controls

29 lines (23 loc) · 1.41 KB

Anva - Analyzing Non-Volatile Applications

Anva allows the monitoring of userland programs through running it within the same virtual address space.

Anva consists of a self-made PE Loader that mimics Windows' PE Loader (situated in NTDLL.DLL) to manual map the target program into the same virtual address space as Anva. This is needed so Anva has shared memory access with the target.

Anva supports:

  • Both x86 and x64 PE formats
  • VMProtect support
  • Fixed and relocatable base address
  • Sections with correct memory protection
  • Imports with DLL loading
  • SEH handlers against exceptions
  • TLS and TLS callbacks
  • PEB setup
  • Supports console, window and DLL applications.

Anva is powered by MinHook for both x86 and x64 trampoline hooks. Anva uses tramp-hooks to monitor specific WinAPI and NTAPI calls and respond accordingly, but this mechanism can be modified to use instrumentation callback for better results.

Anva can be used in different domains:

  • Malware analysis
  • Reverse engineering
  • Protection unpacking
  • API monitoring
  • CRC bypassing

Always use a Virtual Machine for Malware Analysis while running Anva because Anva does not come with full sandboxing techniques by default.

Anva running a VMProtect'd game: image-modified