├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── data ├── base.c ├── base.h ├── prototypes.json └── typedefs.json ├── example-output ├── Syscalls-asm.x64.asm ├── Syscalls.c └── Syscalls.h └── syswhispers.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klezVirus/SysWhispers3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klezVirus/SysWhispers3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klezVirus/SysWhispers3/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klezVirus/SysWhispers3/HEAD/data/base.c -------------------------------------------------------------------------------- /data/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klezVirus/SysWhispers3/HEAD/data/base.h -------------------------------------------------------------------------------- /data/prototypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klezVirus/SysWhispers3/HEAD/data/prototypes.json -------------------------------------------------------------------------------- /data/typedefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klezVirus/SysWhispers3/HEAD/data/typedefs.json -------------------------------------------------------------------------------- /example-output/Syscalls-asm.x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klezVirus/SysWhispers3/HEAD/example-output/Syscalls-asm.x64.asm -------------------------------------------------------------------------------- /example-output/Syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klezVirus/SysWhispers3/HEAD/example-output/Syscalls.c -------------------------------------------------------------------------------- /example-output/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klezVirus/SysWhispers3/HEAD/example-output/Syscalls.h -------------------------------------------------------------------------------- /syswhispers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klezVirus/SysWhispers3/HEAD/syswhispers.py --------------------------------------------------------------------------------