├── .gitignore ├── LICENSE ├── README.md ├── clean.sh ├── keywords.txt ├── ldaphelper.py ├── persistence.py ├── reg_gen.py ├── regulars.txt ├── requirements.txt ├── smbat.py ├── smbsr.py └── worker.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.db 3 | *.csv 4 | __pycache__/ 5 | uncpaths.txt 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldboy21/SMBAT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldboy21/SMBAT/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldboy21/SMBAT/HEAD/clean.sh -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- 1 | password 2 | ciao 3 | grande 4 | bomber 5 | -------------------------------------------------------------------------------- /ldaphelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldboy21/SMBAT/HEAD/ldaphelper.py -------------------------------------------------------------------------------- /persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldboy21/SMBAT/HEAD/persistence.py -------------------------------------------------------------------------------- /reg_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldboy21/SMBAT/HEAD/reg_gen.py -------------------------------------------------------------------------------- /regulars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldboy21/SMBAT/HEAD/regulars.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ldap3 2 | pysmb 3 | python_masscan 4 | textract 5 | -------------------------------------------------------------------------------- /smbat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldboy21/SMBAT/HEAD/smbat.py -------------------------------------------------------------------------------- /smbsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldboy21/SMBAT/HEAD/smbsr.py -------------------------------------------------------------------------------- /worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldboy21/SMBAT/HEAD/worker.py --------------------------------------------------------------------------------