├── .gitignore ├── CVE-2019-18935.py ├── LICENSE ├── RAU_crypto ├── LICENSE ├── RAU_crypto.py └── README.md ├── README.md ├── empty.cs ├── requirements.txt ├── reverse-shell.c ├── sleep.c └── sliver-stager.c /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | env/ 3 | payloads/ 4 | -------------------------------------------------------------------------------- /CVE-2019-18935.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noperator/CVE-2019-18935/HEAD/CVE-2019-18935.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noperator/CVE-2019-18935/HEAD/LICENSE -------------------------------------------------------------------------------- /RAU_crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noperator/CVE-2019-18935/HEAD/RAU_crypto/LICENSE -------------------------------------------------------------------------------- /RAU_crypto/RAU_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noperator/CVE-2019-18935/HEAD/RAU_crypto/RAU_crypto.py -------------------------------------------------------------------------------- /RAU_crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noperator/CVE-2019-18935/HEAD/RAU_crypto/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noperator/CVE-2019-18935/HEAD/README.md -------------------------------------------------------------------------------- /empty.cs: -------------------------------------------------------------------------------- 1 | class Empty {} 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome 2 | requests 3 | -------------------------------------------------------------------------------- /reverse-shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noperator/CVE-2019-18935/HEAD/reverse-shell.c -------------------------------------------------------------------------------- /sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noperator/CVE-2019-18935/HEAD/sleep.c -------------------------------------------------------------------------------- /sliver-stager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noperator/CVE-2019-18935/HEAD/sliver-stager.c --------------------------------------------------------------------------------