├── LICENSE ├── README.md ├── requirements.txt ├── seclib ├── __init__.py ├── discovery.py ├── integration_engine │ ├── __init__.py │ ├── http_integrator.py │ └── integrator.py ├── models.py ├── modulehandler.py ├── sslib.py ├── tests │ ├── __init__.py │ ├── test_authenticate.py │ └── test_tripwire.py └── utils.py ├── secsmash.py └── ssmodules ├── __init__.py ├── cbr.py └── tripwire.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | colorama 2 | requests 3 | netaddr 4 | lxml 5 | -------------------------------------------------------------------------------- /seclib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seclib/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/seclib/discovery.py -------------------------------------------------------------------------------- /seclib/integration_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seclib/integration_engine/http_integrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/seclib/integration_engine/http_integrator.py -------------------------------------------------------------------------------- /seclib/integration_engine/integrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/seclib/integration_engine/integrator.py -------------------------------------------------------------------------------- /seclib/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/seclib/models.py -------------------------------------------------------------------------------- /seclib/modulehandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/seclib/modulehandler.py -------------------------------------------------------------------------------- /seclib/sslib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/seclib/sslib.py -------------------------------------------------------------------------------- /seclib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seclib/tests/test_authenticate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/seclib/tests/test_authenticate.py -------------------------------------------------------------------------------- /seclib/tests/test_tripwire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/seclib/tests/test_tripwire.py -------------------------------------------------------------------------------- /seclib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/seclib/utils.py -------------------------------------------------------------------------------- /secsmash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/secsmash.py -------------------------------------------------------------------------------- /ssmodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ssmodules/cbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/ssmodules/cbr.py -------------------------------------------------------------------------------- /ssmodules/tripwire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tevora-threat/SecSmash/HEAD/ssmodules/tripwire.py --------------------------------------------------------------------------------