├── .gitignore ├── LICENSE ├── README.md ├── analyze.py ├── extract.py ├── lib.py ├── output.csv ├── requirements.txt ├── rules.yar ├── scan.py └── scan_list.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/cobaltstrike/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/cobaltstrike/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/cobaltstrike/HEAD/README.md -------------------------------------------------------------------------------- /analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/cobaltstrike/HEAD/analyze.py -------------------------------------------------------------------------------- /extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/cobaltstrike/HEAD/extract.py -------------------------------------------------------------------------------- /lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/cobaltstrike/HEAD/lib.py -------------------------------------------------------------------------------- /output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/cobaltstrike/HEAD/output.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pandas 3 | -------------------------------------------------------------------------------- /rules.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/cobaltstrike/HEAD/rules.yar -------------------------------------------------------------------------------- /scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/cobaltstrike/HEAD/scan.py -------------------------------------------------------------------------------- /scan_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/cobaltstrike/HEAD/scan_list.py --------------------------------------------------------------------------------