PoshC2_Python/Alias.py

20 lines
395 B
Python
Raw Normal View History

2019-02-03 19:50:40 +00:00
#!/usr/bin/python
# Powershell Implant
ps_alias = [
2019-02-16 18:59:42 +00:00
["s","get-screenshot"],
["whoami","([Security.Principal.WindowsIdentity]::GetCurrent()).name"],
2019-02-03 19:50:40 +00:00
]
# Python Implant
py_alias = [
2019-02-16 18:59:42 +00:00
["s","get-screenshot"]
2019-02-03 19:50:40 +00:00
]
# C# Implant
cs_alias = [
2019-02-16 18:59:42 +00:00
["s","get-screenshot"],
2019-04-12 15:23:08 +00:00
["safetydump", "run-exe SafetyDump.Program SafetyDump"],
["seatbelt", "run-exe Seatbelt.Program Seatbelt all"]
2019-02-03 19:50:40 +00:00
]