├── .gitmodules ├── LICENSE ├── README.md ├── binja-scripts ├── __init__.py └── fdr.py └── codeql-queries ├── .gitignore ├── divergentrepsfor.ql ├── divergentrepswhile.ql └── qlpack.yml /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trailofbits/divergent-representations/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trailofbits/divergent-representations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trailofbits/divergent-representations/HEAD/README.md -------------------------------------------------------------------------------- /binja-scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trailofbits/divergent-representations/HEAD/binja-scripts/__init__.py -------------------------------------------------------------------------------- /binja-scripts/fdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trailofbits/divergent-representations/HEAD/binja-scripts/fdr.py -------------------------------------------------------------------------------- /codeql-queries/.gitignore: -------------------------------------------------------------------------------- 1 | .cache/ -------------------------------------------------------------------------------- /codeql-queries/divergentrepsfor.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trailofbits/divergent-representations/HEAD/codeql-queries/divergentrepsfor.ql -------------------------------------------------------------------------------- /codeql-queries/divergentrepswhile.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trailofbits/divergent-representations/HEAD/codeql-queries/divergentrepswhile.ql -------------------------------------------------------------------------------- /codeql-queries/qlpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trailofbits/divergent-representations/HEAD/codeql-queries/qlpack.yml --------------------------------------------------------------------------------