├── .gitignore ├── AUTHORS ├── EasyROP.py ├── LICENSE.md ├── README.md └── easyrop ├── __init__.py ├── args.py ├── binaries ├── binary.py ├── binary_exception.py └── pe.py ├── core.py ├── gadgets ├── turingOP.xml └── user_defined.xml ├── op_searcher.py ├── operations ├── instruction.py ├── instruction_exception.py ├── operation.py └── set.py ├── parsers ├── parse_exception.py ├── parser.py └── xml_parser.py ├── registers.py ├── rop_generator.py └── version.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/AUTHORS -------------------------------------------------------------------------------- /EasyROP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/EasyROP.py -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/README.md -------------------------------------------------------------------------------- /easyrop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/__init__.py -------------------------------------------------------------------------------- /easyrop/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/args.py -------------------------------------------------------------------------------- /easyrop/binaries/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/binaries/binary.py -------------------------------------------------------------------------------- /easyrop/binaries/binary_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/binaries/binary_exception.py -------------------------------------------------------------------------------- /easyrop/binaries/pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/binaries/pe.py -------------------------------------------------------------------------------- /easyrop/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/core.py -------------------------------------------------------------------------------- /easyrop/gadgets/turingOP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/gadgets/turingOP.xml -------------------------------------------------------------------------------- /easyrop/gadgets/user_defined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/gadgets/user_defined.xml -------------------------------------------------------------------------------- /easyrop/op_searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/op_searcher.py -------------------------------------------------------------------------------- /easyrop/operations/instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/operations/instruction.py -------------------------------------------------------------------------------- /easyrop/operations/instruction_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/operations/instruction_exception.py -------------------------------------------------------------------------------- /easyrop/operations/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/operations/operation.py -------------------------------------------------------------------------------- /easyrop/operations/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/operations/set.py -------------------------------------------------------------------------------- /easyrop/parsers/parse_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/parsers/parse_exception.py -------------------------------------------------------------------------------- /easyrop/parsers/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/parsers/parser.py -------------------------------------------------------------------------------- /easyrop/parsers/xml_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/parsers/xml_parser.py -------------------------------------------------------------------------------- /easyrop/registers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/registers.py -------------------------------------------------------------------------------- /easyrop/rop_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/rop_generator.py -------------------------------------------------------------------------------- /easyrop/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbOverhead/EasyROP/HEAD/easyrop/version.py --------------------------------------------------------------------------------