Codebase list poshc2 / a1952898-4784-4908-98b4-0891f02af7a5/main poshc2 / server / __init__.py
a1952898-4784-4908-98b4-0891f02af7a5/main

Tree @a1952898-4784-4908-98b4-0891f02af7a5/main (Download .tar.gz)

__init__.py @a1952898-4784-4908-98b4-0891f02af7a5/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)