| 1 | from autorecon.plugins import ServiceScan |
| 2 | |
| 3 | class NmapRDP(ServiceScan): |
| 4 | |
| 5 | def __init__(self): |
| 6 | super().__init__() |
| 7 | self.name = "Nmap RDP" |
| 8 | self.tags = ['default', 'safe', 'rdp'] |
| 9 | |
| 10 | def configure(self): |
| 11 | self.match_service_name(['^rdp', '^ms\-wbt\-server', '^ms\-term\-serv']) |
| 12 | |
| 13 | async def run(self, service): |
| 14 | await service.execute('nmap {nmap_extra} -sV -p {port} --script="banner,(rdp* or ssl*) and not (brute or broadcast or dos or external or fuzzer)" -oN "{scandir}/{protocol}_{port}_rdp_nmap.txt" -oX "{scandir}/xml/{protocol}_{port}_rdp_nmap.xml" {address}') |
nothing calls this directly
no outgoing calls
no test coverage detected