-
Notifications
You must be signed in to change notification settings - Fork 428
Tips'n'Tricks
doomedraven edited this page Jul 14, 2021
·
5 revisions
- Add TOC
Here we will collect all our small tips and tricks which isn't documentad and you can find them only by reading code
- Details can be found in this commit
- To stop it just execute
ps aux|grep "python3 cuckoo.py"|awk '{ print $2 }'| xargs kill -1
- Ensure that you stopped all required services as
systemctl stop cape.service
- Start cape as
CAPE_DBG=1 python3 cuckoo.py -d
- Add a new task, DISABLE human interaction emulation checkbox, set very high timeout like 1000
- Once task start, core will upload analyzer folder to virtual machine
- Attach to virtual machine
- Start analyzer.py by hand in cmd.exe with admin privilages:
- Ex: c:\windows\py.exe c:\tmp\analyzer.py
- You will see what fails, and if you don't, add more debugging lines or attach
pdb
or any other tool that you like