Lab 7-2
Analyze the malware found in the file Lab07-02.exe. Questions
- How does this program achieve persistence?
- no persistence
- What is the purpose of this program?
- visit a webpage using COM objects
- When will this program finish executing?
- after opening the webpage
But first a static analysis with PEStudio!
- File is not packed, PEiD won’t show anything
- sections are ok
- Libraries:
- it has ole32, so probably it loads COM / DLL files
- Imports:
- exit
- OLEFunctions related. Probably a loader for COM files
- Strings:
Perhaps the malware could:
- Get that ad.html page using some COM functionalities
- Close itself
By using IDA:
- yes, we see OLEInitialize and CoCreateInstance
- COM object is recalled into “call” dword
- 0x2C is the word “Navigate”, therefore it calls a webpage ????