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