Add /humans.txt check

See http://humanstxt.org/
This commit is contained in:
g0tmi1k
2018-05-09 16:33:44 +01:00
parent dc48008d43
commit 6c0a21c80d
4 changed files with 157 additions and 0 deletions

View File

@@ -211,6 +211,14 @@ def main
end
end
if wp_target.has_humans?
puts info("humans.txt available under: #{wp_target.humans_url}")
wp_target.parse_humans_txt.each do |dir|
puts info("Interesting entry from humans.txt: #{dir}")
end
end
if wp_target.has_full_path_disclosure?
puts warning("Full Path Disclosure (FPD) in '#{wp_target.full_path_disclosure_url}': #{wp_target.full_path_disclosure_data}")
end