PoshC2_Python/Alias.py

19 lines
336 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-03-03 18:22:40 +00:00
["safetydump", "run-exe SafetyDump.Program SafetyDump"]
2019-02-03 19:50:40 +00:00
]