Skip to content

Commit fc5a0e2

Browse files
stupid push, forgot to remove test puts
1 parent ed9d290 commit fc5a0e2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

modules/auxiliary/scanner/http/wordpress_pingback_access.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ def get_blog_posts(xml_rpc, ip)
124124
while (res.code == 301 || res.code == 302) and res.headers['Location'] and count != 0
125125
vprint_status("Web server returned a #{res.code}...following to #{res.headers['Location']}")
126126
uri = res.headers['Location'].sub(/.*?#{ip}/, "")
127-
puts uri
128127
res = send_request_cgi({
129128
'uri' => "#{uri}",
130129
'method' => 'GET'
@@ -146,7 +145,7 @@ def get_blog_posts(xml_rpc, ip)
146145
end
147146

148147
if res.nil? or res.code != 200
149-
vprint_status("")
148+
vprint_status("Did not recieve HTTP response from #{ip}")
150149
return blog_posts
151150
end
152151

0 commit comments

Comments
 (0)