├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── core ├── action-wordlist.txt ├── functions.py ├── html_content.py ├── object-wordlist.txt └── variables.py ├── output └── .gitkeep ├── random_c2profile.py ├── readme.md └── templates └── default_c2profile_template.jinja /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickvourd/random_c2_profile/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickvourd/random_c2_profile/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickvourd/random_c2_profile/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickvourd/random_c2_profile/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /core/action-wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickvourd/random_c2_profile/HEAD/core/action-wordlist.txt -------------------------------------------------------------------------------- /core/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickvourd/random_c2_profile/HEAD/core/functions.py -------------------------------------------------------------------------------- /core/html_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickvourd/random_c2_profile/HEAD/core/html_content.py -------------------------------------------------------------------------------- /core/object-wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickvourd/random_c2_profile/HEAD/core/object-wordlist.txt -------------------------------------------------------------------------------- /core/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickvourd/random_c2_profile/HEAD/core/variables.py -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | keep -------------------------------------------------------------------------------- /random_c2profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickvourd/random_c2_profile/HEAD/random_c2profile.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickvourd/random_c2_profile/HEAD/readme.md -------------------------------------------------------------------------------- /templates/default_c2profile_template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickvourd/random_c2_profile/HEAD/templates/default_c2profile_template.jinja --------------------------------------------------------------------------------