Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 896 Bytes

2020.05.27.md

File metadata and controls

29 lines (18 loc) · 896 Bytes

0x01 ida

idat64 -c -A -S"script.py arg1 arg2" <file.bin>

使用-S来传参
idc.auto_wait():等待自动分析结束,否则可能得到的函数会少

使用headless功能就可以批量分析了
FOR %f IN (C:\Windows\*.exe) DO idat64.exe -c -A -S"analysis.py analysis.txt" -o%TEMP%\foobar.idb %f

Batch Binary Analysis with IDA Pro 7.4 Automation

0x02 杂命令

在一个ubuntu16.04的环境中怎么也装不上pip,通过以下可以了

sudo apt-get install software-properties-common
sudo apt-add-repository universe
sudo apt-get update
sudo apt-get install python-pip

0x03 CTF

堆喷在glibc pwn中的应用
没仔细看,过于超纲了。。。