Codebase list poshc2 / 4fb30d48-434b-4cb5-89ee-3771b7fc07c6/main poshc2 / server / __init__.py
4fb30d48-434b-4cb5-89ee-3771b7fc07c6/main

Tree @4fb30d48-434b-4cb5-89ee-3771b7fc07c6/main (Download .tar.gz)

__init__.py @4fb30d48-434b-4cb5-89ee-3771b7fc07c6/mainraw · history · blame

#!/usr/bin/env python3

import sys


def start():
    from poshc2.server.C2Server import main
    args = sys.argv
    args.remove("--server")
    args.remove("start.py")
    main(args)