├── LICENSE ├── README.md ├── dereferencing.py ├── dereferencing ├── __init__.py ├── actions.py ├── colorizer.py ├── config.py ├── constants.py ├── dbg.py ├── regs.py ├── views │ ├── __init__.py │ ├── custom.py │ ├── registers.py │ └── stack.py └── win2_errors.py └── ida-plugin.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/README.md -------------------------------------------------------------------------------- /dereferencing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/dereferencing.py -------------------------------------------------------------------------------- /dereferencing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dereferencing/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/dereferencing/actions.py -------------------------------------------------------------------------------- /dereferencing/colorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/dereferencing/colorizer.py -------------------------------------------------------------------------------- /dereferencing/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/dereferencing/config.py -------------------------------------------------------------------------------- /dereferencing/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/dereferencing/constants.py -------------------------------------------------------------------------------- /dereferencing/dbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/dereferencing/dbg.py -------------------------------------------------------------------------------- /dereferencing/regs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/dereferencing/regs.py -------------------------------------------------------------------------------- /dereferencing/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/dereferencing/views/__init__.py -------------------------------------------------------------------------------- /dereferencing/views/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/dereferencing/views/custom.py -------------------------------------------------------------------------------- /dereferencing/views/registers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/dereferencing/views/registers.py -------------------------------------------------------------------------------- /dereferencing/views/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/dereferencing/views/stack.py -------------------------------------------------------------------------------- /dereferencing/win2_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/dereferencing/win2_errors.py -------------------------------------------------------------------------------- /ida-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigargu/deREferencing/HEAD/ida-plugin.json --------------------------------------------------------------------------------