├── .gitignore ├── LICENSE ├── README.md ├── anal.py ├── blk.py ├── cmp.py ├── idascan.py ├── ir.py ├── mark.py ├── note.py ├── r2scan.py ├── scan.py └── unstrip.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzread/unstrip/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzread/unstrip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzread/unstrip/HEAD/README.md -------------------------------------------------------------------------------- /anal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzread/unstrip/HEAD/anal.py -------------------------------------------------------------------------------- /blk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzread/unstrip/HEAD/blk.py -------------------------------------------------------------------------------- /cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzread/unstrip/HEAD/cmp.py -------------------------------------------------------------------------------- /idascan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzread/unstrip/HEAD/idascan.py -------------------------------------------------------------------------------- /ir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzread/unstrip/HEAD/ir.py -------------------------------------------------------------------------------- /mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzread/unstrip/HEAD/mark.py -------------------------------------------------------------------------------- /note.py: -------------------------------------------------------------------------------- 1 | from idc import * 2 | 3 | SetFunctionCmt(addr,comment,0) 4 | -------------------------------------------------------------------------------- /r2scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzread/unstrip/HEAD/r2scan.py -------------------------------------------------------------------------------- /scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzread/unstrip/HEAD/scan.py -------------------------------------------------------------------------------- /unstrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzread/unstrip/HEAD/unstrip.py --------------------------------------------------------------------------------