While researching for a book that I am writing (“Malware : Writing Malicious Code”), I came across this-
“Some malware goes so far as to avoid importing any functions from available
DLLs. Instead, it emulates all of the APIs it needs. This means that you cannot list the
functions, so you cannot easily set breakpoints on them, as all API calls will just be
a part of the malware code.In some cases, malware authors even use this to trap reverse engineers: they
may import functions that are never used (having used the emulated ones instead).”
Now my question is-
How can I write win32 api without using win32 or native api. For example, How can I write code that’ll manipulate windows registry without using win32 or native api?
or if you’ve heard of any virus that emulates API, give me its name. The rest (like, retrieving the API emulating code from the virus) I’ll manage.