- Python3 version
- Include FindServices.py
- Up-to-date AV process and services name including security tools' process name (add about 800++ new process name)
Targeted Windows box (shell):
C:\Users\target> tasklist
C:\Users\target> sc queryex type=service state=all | find /i "SERVICE_NAME:"
Our box:
git clone https://github.com/fareedfauzi/FindAntivirusProcess.git
cd FindAntivirusProcess
chmod +x *.py
python3 ./FindProcess.py <filename>
python3 ./FindProcess.py tasklist.txt
python3 ./FindService.py <filename>
python3 ./FindService.py services.txt
To get the <filename>, run these command on the targetted Windows machine and write it into a file.
tasklist= List all processessc queryex type=service state=all | find /i "SERVICE_NAME:"= List and filter all active services
Copy and paste the output into a file, for example tasklist.txt
fareed@github$ python3 FindProcess.py tasklist-examples.txt
0 avguard.exe AviraAntiVir
1 avshadow.exe Avira
2 avwebgrd.exe AVIRAPersonalEditionClassic
fareed@github$ python3 FindService.py services-example.txt
0 WinDefend WindowsDefender
Keep up to date AntivirusProcess.txt and AntivirusServices.txt.