├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── config_template.yml ├── gimmelogs.py ├── modules ├── configuration.py ├── parser │ ├── br_parser.py │ ├── cs_parser.py │ └── oc2_parser.py ├── reporting.py ├── sql │ ├── sqlite_func.py │ └── sqlite_model.py ├── ttp.py └── utils.py ├── requirements.txt └── ttps.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/README.md -------------------------------------------------------------------------------- /config_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/config_template.yml -------------------------------------------------------------------------------- /gimmelogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/gimmelogs.py -------------------------------------------------------------------------------- /modules/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/modules/configuration.py -------------------------------------------------------------------------------- /modules/parser/br_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/modules/parser/br_parser.py -------------------------------------------------------------------------------- /modules/parser/cs_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/modules/parser/cs_parser.py -------------------------------------------------------------------------------- /modules/parser/oc2_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/modules/parser/oc2_parser.py -------------------------------------------------------------------------------- /modules/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/modules/reporting.py -------------------------------------------------------------------------------- /modules/sql/sqlite_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/modules/sql/sqlite_func.py -------------------------------------------------------------------------------- /modules/sql/sqlite_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/modules/sql/sqlite_model.py -------------------------------------------------------------------------------- /modules/ttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/modules/ttp.py -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/modules/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | sqlalchemy 2 | pyyaml -------------------------------------------------------------------------------- /ttps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-DE/C2-logparser/HEAD/ttps.csv --------------------------------------------------------------------------------