Skip to content

Commit

Permalink
add result in robots
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavi Mendez committed Oct 31, 2020
1 parent 5f04595 commit 39db477
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/wfuzz/plugins/scripts/robots.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,6 @@ def process(self, fuzzresult):
url = url.strip(" *")

if url:
self.queue_url(urljoin(fuzzresult.url, url))
new_link = urljoin(fuzzresult.url, url)
self.queue_url(new_link)
self.add_result("link", "New link found", new_link)

0 comments on commit 39db477

Please sign in to comment.