├── .gitignore ├── CVE-2020-0796 ├── exploit.py └── libs │ ├── lznt1.py │ └── smb.py ├── CVE-2021-30860 └── exploit.py ├── CVE-2021-31166 ├── README.md ├── exploit.py └── libs │ ├── lznt1.py │ └── smb.py ├── README.md └── libs └── win_lpe.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffssh/exploits/HEAD/.gitignore -------------------------------------------------------------------------------- /CVE-2020-0796/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffssh/exploits/HEAD/CVE-2020-0796/exploit.py -------------------------------------------------------------------------------- /CVE-2020-0796/libs/lznt1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffssh/exploits/HEAD/CVE-2020-0796/libs/lznt1.py -------------------------------------------------------------------------------- /CVE-2020-0796/libs/smb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffssh/exploits/HEAD/CVE-2020-0796/libs/smb.py -------------------------------------------------------------------------------- /CVE-2021-30860/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffssh/exploits/HEAD/CVE-2021-30860/exploit.py -------------------------------------------------------------------------------- /CVE-2021-31166/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffssh/exploits/HEAD/CVE-2021-31166/README.md -------------------------------------------------------------------------------- /CVE-2021-31166/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffssh/exploits/HEAD/CVE-2021-31166/exploit.py -------------------------------------------------------------------------------- /CVE-2021-31166/libs/lznt1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffssh/exploits/HEAD/CVE-2021-31166/libs/lznt1.py -------------------------------------------------------------------------------- /CVE-2021-31166/libs/smb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffssh/exploits/HEAD/CVE-2021-31166/libs/smb.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffssh/exploits/HEAD/README.md -------------------------------------------------------------------------------- /libs/win_lpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffssh/exploits/HEAD/libs/win_lpe.py --------------------------------------------------------------------------------