├── .github └── workflows │ ├── build.yml │ └── doc.yml ├── .gitignore ├── .img ├── logo.png └── screen01.png ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── conf └── rhabdomancer.toml ├── ida-plugin-stub.py ├── ida-plugin.json ├── src ├── lib.rs └── main.rs └── tests ├── data └── ls └── main.rs /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .cargo-ok 3 | .DS_Store 4 | .idea 5 | -------------------------------------------------------------------------------- /.img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/.img/logo.png -------------------------------------------------------------------------------- /.img/screen01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/.img/screen01.png -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/README.md -------------------------------------------------------------------------------- /conf/rhabdomancer.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/conf/rhabdomancer.toml -------------------------------------------------------------------------------- /ida-plugin-stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/ida-plugin-stub.py -------------------------------------------------------------------------------- /ida-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/ida-plugin.json -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/src/main.rs -------------------------------------------------------------------------------- /tests/data/ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/tests/data/ls -------------------------------------------------------------------------------- /tests/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdea/rhabdomancer/HEAD/tests/main.rs --------------------------------------------------------------------------------