mirror of
https://github.com/nettitude/PoshC2
synced 2026-06-08 16:22:47 +00:00
12 lines
185 B
Python
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)
|