PoshC2_Python/Alias.py

18 lines
259 B
Python

#!/usr/bin/python
# Powershell Implant
ps_alias = [
["s","get-screenshot"],
["whoami","([Security.Principal.WindowsIdentity]::GetCurrent()).name"],
]
# Python Implant
py_alias = [
["s","get-screenshot"]
]
# C# Implant
cs_alias = [
["s","get-screenshot"]
]