├── .gitignore ├── LICENSE ├── README.md ├── client.py ├── data └── .gitignore ├── gdog.py ├── requirements.txt └── shellcode_generate.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldevel/gdog/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldevel/gdog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldevel/gdog/HEAD/README.md -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldevel/gdog/HEAD/client.py -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /gdog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldevel/gdog/HEAD/gdog.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pycrypto 2 | wmi 3 | enum34 4 | netifaces -------------------------------------------------------------------------------- /shellcode_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maldevel/gdog/HEAD/shellcode_generate.py --------------------------------------------------------------------------------