API Call Analysis Flashcards
Which are the best API indicators for extracting the file and writing it on disk for execution?
FindResource, LoadResource, SizeOfResource and LockResource API calls near WriteFIle and CreateProcess calls.
Name some best PE Examiner tools?
CFF Explorer, Detect It Easy (DIE), PE viewer, 010 Editor, Hex Editor.
Name calling conventions of functions ?
cdecl, standard call, Fast call, This Call
Which API call is made to create mutex? or which API is imported to create mutex?
CreateMutexA
Why malwares created mutex?
To avoid reinfecting the same machine.
What is the basic functionality of mutex?
Main functionality of mutex is to specialize resources, mutex ensure that single resource is not accessible by multiple parties. Malware authors use mutex to determine if target machine already infected or not.
Is Mutex name an IOC ?
Yes.
Name typical API imports for keyloggers?
GetKeyState, GetAsyncKeyState, GetWindowText, OpenClipboard, GetClipBoardData,CloseClipboard