├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── examples ├── builder.py ├── parser.py ├── randomizer.py └── urlgrep.py ├── malleablec2 ├── __init__.py ├── components.py ├── grammar.lark └── randomizer.py ├── poetry.lock ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt └── tests ├── __init__.py ├── profiles ├── amazon.profile ├── reference.profile └── template.profile ├── test_builder.py └── test_parser.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: byt3bl33d3r -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/README.md -------------------------------------------------------------------------------- /examples/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/examples/builder.py -------------------------------------------------------------------------------- /examples/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/examples/parser.py -------------------------------------------------------------------------------- /examples/randomizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/examples/randomizer.py -------------------------------------------------------------------------------- /examples/urlgrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/examples/urlgrep.py -------------------------------------------------------------------------------- /malleablec2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/malleablec2/__init__.py -------------------------------------------------------------------------------- /malleablec2/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/malleablec2/components.py -------------------------------------------------------------------------------- /malleablec2/grammar.lark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/malleablec2/grammar.lark -------------------------------------------------------------------------------- /malleablec2/randomizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/malleablec2/randomizer.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/profiles/amazon.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/tests/profiles/amazon.profile -------------------------------------------------------------------------------- /tests/profiles/reference.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/tests/profiles/reference.profile -------------------------------------------------------------------------------- /tests/profiles/template.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/tests/profiles/template.profile -------------------------------------------------------------------------------- /tests/test_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/tests/test_builder.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/pyMalleableC2/HEAD/tests/test_parser.py --------------------------------------------------------------------------------