├── .gitignore ├── LICENSE ├── README.rst ├── autoenum └── autoenum.py ├── autostruct └── autostruct.py ├── function_flow └── function_flow.py ├── function_strings └── function_strings.py ├── lca └── lca.py ├── proxy └── proxy.py ├── quick_copy └── quick_copy.py ├── requirements.txt └── tarkus.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/ida-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/ida-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/ida-plugins/HEAD/README.rst -------------------------------------------------------------------------------- /autoenum/autoenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/ida-plugins/HEAD/autoenum/autoenum.py -------------------------------------------------------------------------------- /autostruct/autostruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/ida-plugins/HEAD/autostruct/autostruct.py -------------------------------------------------------------------------------- /function_flow/function_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/ida-plugins/HEAD/function_flow/function_flow.py -------------------------------------------------------------------------------- /function_strings/function_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/ida-plugins/HEAD/function_strings/function_strings.py -------------------------------------------------------------------------------- /lca/lca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/ida-plugins/HEAD/lca/lca.py -------------------------------------------------------------------------------- /proxy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/ida-plugins/HEAD/proxy/proxy.py -------------------------------------------------------------------------------- /quick_copy/quick_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/ida-plugins/HEAD/quick_copy/quick_copy.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/ida-plugins/HEAD/requirements.txt -------------------------------------------------------------------------------- /tarkus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmr232/ida-plugins/HEAD/tarkus.yml --------------------------------------------------------------------------------