├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── rust-toolchain.toml └── src ├── client.rs ├── dynamic_analysis.rs ├── idl.rs ├── main.rs └── static_analysis.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sec3-service/IDLGuesser/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sec3-service/IDLGuesser/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sec3-service/IDLGuesser/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sec3-service/IDLGuesser/HEAD/README.md -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.86.0" 3 | 4 | -------------------------------------------------------------------------------- /src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sec3-service/IDLGuesser/HEAD/src/client.rs -------------------------------------------------------------------------------- /src/dynamic_analysis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sec3-service/IDLGuesser/HEAD/src/dynamic_analysis.rs -------------------------------------------------------------------------------- /src/idl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sec3-service/IDLGuesser/HEAD/src/idl.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sec3-service/IDLGuesser/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/static_analysis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sec3-service/IDLGuesser/HEAD/src/static_analysis.rs --------------------------------------------------------------------------------