├── .gitignore ├── Changelog.md ├── Documentation.md ├── LICENSE.md ├── README.md ├── config ├── __init__.py ├── constants.py └── stats.py ├── indicator_config.py ├── indicators.py ├── lib ├── __init__.py ├── common │ ├── __init__.py │ ├── banner.py │ ├── database.py │ └── utils.py ├── core │ ├── __init__.py │ ├── methods │ │ ├── __init__.py │ │ ├── exploit.py │ │ ├── info.py │ │ ├── json_dump.py │ │ ├── patches.py │ │ ├── ref.py │ │ ├── risk.py │ │ ├── rules.py │ │ └── scanners.py │ ├── search.py │ └── update.py └── migration │ ├── __init__.py │ ├── csvexports.sql │ ├── mongo.conf │ └── mongo.py └── trommel.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/Changelog.md -------------------------------------------------------------------------------- /Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/Documentation.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/config/constants.py -------------------------------------------------------------------------------- /config/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/config/stats.py -------------------------------------------------------------------------------- /indicator_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/indicator_config.py -------------------------------------------------------------------------------- /indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/indicators.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/common/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/common/banner.py -------------------------------------------------------------------------------- /lib/common/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/common/database.py -------------------------------------------------------------------------------- /lib/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/common/utils.py -------------------------------------------------------------------------------- /lib/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/core/methods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/core/methods/__init__.py -------------------------------------------------------------------------------- /lib/core/methods/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/core/methods/exploit.py -------------------------------------------------------------------------------- /lib/core/methods/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/core/methods/info.py -------------------------------------------------------------------------------- /lib/core/methods/json_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/core/methods/json_dump.py -------------------------------------------------------------------------------- /lib/core/methods/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/core/methods/patches.py -------------------------------------------------------------------------------- /lib/core/methods/ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/core/methods/ref.py -------------------------------------------------------------------------------- /lib/core/methods/risk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/core/methods/risk.py -------------------------------------------------------------------------------- /lib/core/methods/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/core/methods/rules.py -------------------------------------------------------------------------------- /lib/core/methods/scanners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/core/methods/scanners.py -------------------------------------------------------------------------------- /lib/core/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/core/search.py -------------------------------------------------------------------------------- /lib/core/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/core/update.py -------------------------------------------------------------------------------- /lib/migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/migration/csvexports.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/migration/csvexports.sql -------------------------------------------------------------------------------- /lib/migration/mongo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/migration/mongo.conf -------------------------------------------------------------------------------- /lib/migration/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/lib/migration/mongo.py -------------------------------------------------------------------------------- /trommel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CERTCC/trommel/HEAD/trommel.py --------------------------------------------------------------------------------