Files
2020-07-30 09:06:50 +01:00

12 lines
185 B
Python

#!/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)