├── .github └── workflows │ └── build.yml ├── .gitignore ├── Cargo.toml ├── README.md ├── assets └── parascope-demo.gif ├── dist └── pypi │ ├── README.md │ ├── parascope │ ├── __init__.py │ └── _launcher.py │ ├── pyproject.toml │ └── setup.py ├── plugin ├── README.md ├── ida-plugin.json ├── ida_plugin_stub.py └── parascope-logo.svg ├── rules └── call-to-unbound-copy-functions.yml └── src ├── binary.rs ├── common.rs ├── main.rs └── source.rs /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /tests 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/README.md -------------------------------------------------------------------------------- /assets/parascope-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/assets/parascope-demo.gif -------------------------------------------------------------------------------- /dist/pypi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/dist/pypi/README.md -------------------------------------------------------------------------------- /dist/pypi/parascope/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/pypi/parascope/_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/dist/pypi/parascope/_launcher.py -------------------------------------------------------------------------------- /dist/pypi/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/dist/pypi/pyproject.toml -------------------------------------------------------------------------------- /dist/pypi/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/dist/pypi/setup.py -------------------------------------------------------------------------------- /plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/plugin/README.md -------------------------------------------------------------------------------- /plugin/ida-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/plugin/ida-plugin.json -------------------------------------------------------------------------------- /plugin/ida_plugin_stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/plugin/ida_plugin_stub.py -------------------------------------------------------------------------------- /plugin/parascope-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/plugin/parascope-logo.svg -------------------------------------------------------------------------------- /rules/call-to-unbound-copy-functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/rules/call-to-unbound-copy-functions.yml -------------------------------------------------------------------------------- /src/binary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/src/binary.rs -------------------------------------------------------------------------------- /src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/src/common.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorpse/parascope/HEAD/src/source.rs --------------------------------------------------------------------------------