Files
2023-03-20 10:39:32 +00:00

11 lines
207 B
Python

#!/usr/bin/env python3
import sys
def start():
from poshc2.client.command_handlers.ImplantHandler import main
args = sys.argv
args.remove("--client")
args.remove("start.py")
main(args)