├── .gitignore ├── README.md ├── converter ├── Makefile ├── README.md ├── functions.c ├── functions.h └── main.c ├── cryde ├── README.md ├── config.ini └── cryde.py ├── execshellcode ├── README.md └── execshellcode.c ├── findaddr ├── README.md └── findaddr.c ├── hex2str ├── README.md └── hex2str.c ├── init_scripts ├── Install_Docker_Debian.sh ├── VB_Debian.sh └── new_debian.sh ├── ms ├── double-pulsar.sh ├── ms17-010.sh └── sambacry.sh ├── pwsh ├── Base64.ps1 └── Test-ADCredential.ps1 ├── pytools ├── .gitignore ├── BeaufortCipher.py ├── Cipher.py ├── KeyCipher.py ├── PolyalphaCipher.py ├── PolybiusCipher.py ├── README.md ├── Substitution.py ├── Text.py ├── VigenereCipher.py ├── VigenereLikeCipher.py └── __init__.py ├── syscalls32.md └── syscalls64.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/README.md -------------------------------------------------------------------------------- /converter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/converter/Makefile -------------------------------------------------------------------------------- /converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/converter/README.md -------------------------------------------------------------------------------- /converter/functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/converter/functions.c -------------------------------------------------------------------------------- /converter/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/converter/functions.h -------------------------------------------------------------------------------- /converter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/converter/main.c -------------------------------------------------------------------------------- /cryde/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/cryde/README.md -------------------------------------------------------------------------------- /cryde/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/cryde/config.ini -------------------------------------------------------------------------------- /cryde/cryde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/cryde/cryde.py -------------------------------------------------------------------------------- /execshellcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/execshellcode/README.md -------------------------------------------------------------------------------- /execshellcode/execshellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/execshellcode/execshellcode.c -------------------------------------------------------------------------------- /findaddr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/findaddr/README.md -------------------------------------------------------------------------------- /findaddr/findaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/findaddr/findaddr.c -------------------------------------------------------------------------------- /hex2str/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/hex2str/README.md -------------------------------------------------------------------------------- /hex2str/hex2str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/hex2str/hex2str.c -------------------------------------------------------------------------------- /init_scripts/Install_Docker_Debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/init_scripts/Install_Docker_Debian.sh -------------------------------------------------------------------------------- /init_scripts/VB_Debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/init_scripts/VB_Debian.sh -------------------------------------------------------------------------------- /init_scripts/new_debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/init_scripts/new_debian.sh -------------------------------------------------------------------------------- /ms/double-pulsar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/ms/double-pulsar.sh -------------------------------------------------------------------------------- /ms/ms17-010.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/ms/ms17-010.sh -------------------------------------------------------------------------------- /ms/sambacry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/ms/sambacry.sh -------------------------------------------------------------------------------- /pwsh/Base64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/pwsh/Base64.ps1 -------------------------------------------------------------------------------- /pwsh/Test-ADCredential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/pwsh/Test-ADCredential.ps1 -------------------------------------------------------------------------------- /pytools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/pytools/.gitignore -------------------------------------------------------------------------------- /pytools/BeaufortCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/pytools/BeaufortCipher.py -------------------------------------------------------------------------------- /pytools/Cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/pytools/Cipher.py -------------------------------------------------------------------------------- /pytools/KeyCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/pytools/KeyCipher.py -------------------------------------------------------------------------------- /pytools/PolyalphaCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/pytools/PolyalphaCipher.py -------------------------------------------------------------------------------- /pytools/PolybiusCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/pytools/PolybiusCipher.py -------------------------------------------------------------------------------- /pytools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/pytools/README.md -------------------------------------------------------------------------------- /pytools/Substitution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/pytools/Substitution.py -------------------------------------------------------------------------------- /pytools/Text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/pytools/Text.py -------------------------------------------------------------------------------- /pytools/VigenereCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/pytools/VigenereCipher.py -------------------------------------------------------------------------------- /pytools/VigenereLikeCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/pytools/VigenereLikeCipher.py -------------------------------------------------------------------------------- /pytools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /syscalls32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/syscalls32.md -------------------------------------------------------------------------------- /syscalls64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackndo/misc/HEAD/syscalls64.md --------------------------------------------------------------------------------