diff --git a/doc_rdoc/WpTarget/InterestingHeaders.html b/doc_rdoc/WpTarget/InterestingHeaders.html new file mode 100644 index 00000000..d4c70b0c --- /dev/null +++ b/doc_rdoc/WpTarget/InterestingHeaders.html @@ -0,0 +1,404 @@ + + + +
+ + +@return Array
+ + + ++# File lib/wpscan/wp_target/interesting_headers.rb, line 18 +def self.known_headers + %{ + Location + Date + Content-Type + Content-Length + Connection + Etag + Expires + Last-Modified + Pragma + Vary + Cache-Control + } +end+
Checks for interesting headers
+ + + ++# File lib/wpscan/wp_target/interesting_headers.rb, line 6 +def interesting_headers + response = Browser.head(@uri.to_s) + headers = response.headers + InterestingHeaders.known_headers.each do |h| + headers.delete(h) + end + headers.to_a.compact.sort +end+
Generated with the Darkfish + Rdoc Generator 2.
+-> create 2 files per key : one for the data storage (key.store ?) + and the other for the cache timeout (key.expiration, key.timeout ?) +or 1 file for all timeouts ? +-> 2 dirs : 1 for storage, the other for cache_timeout ?+ +
Since ruby 1.9.2, URI::escape is obsolete See rosettacode.org/wiki/URL_encoding#Ruby +and www.ruby-forum.com/topic/207489
+ +This class act as an absract one
+ +This tool generates a list to use for plugin and theme enumeration
+ +This Class Parses SVN Repositories via HTTP
+ +