Files
wpscan/lib/wpscan/web_site/humans_txt.rb
2018-05-14 18:08:42 +01:00

14 lines
188 B
Ruby

# encoding: UTF-8
class WebSite
module HumansTxt
# Gets the humans.txt URL
# @return [ String ]
def humans_url
@uri.clone.merge('humans.txt').to_s
end
end
end