From b3cf67c8f327aa98bcdbf66ac16fd9737b0a57b6 Mon Sep 17 00:00:00 2001 From: Christian Mehlmauer Date: Fri, 7 Dec 2012 20:18:02 +0100 Subject: [PATCH] updated docs --- doc/BruteForce.html | 2 +- doc/Gemfile.html | 160 ++++++++++ doc/Generate_List.html | 79 ++++- doc/Object.html | 5 +- doc/README.html | 39 ++- doc/WpDetector.html | 6 +- doc/WpEnumerator.html | 21 +- doc/WpTarget.html | 21 +- doc/WpUser.html | 267 ++++++++++++---- doc/WpscanOptions.html | 45 +-- doc/created.rid | 32 +- doc/images/add.png | Bin 0 -> 733 bytes doc/images/delete.png | Bin 0 -> 715 bytes doc/images/tag_blue.png | Bin 0 -> 1880 bytes doc/images/transparent.png | Bin 0 -> 97 bytes doc/js/navigation.js | 142 +++++++++ doc/js/search.js | 94 ++++++ doc/js/search_index.js | 1 + doc/js/searcher.js | 228 ++++++++++++++ doc/table_of_contents.html | 608 +++++++++++++++++++++++++++++++++++++ 20 files changed, 1618 insertions(+), 132 deletions(-) create mode 100644 doc/Gemfile.html create mode 100755 doc/images/add.png create mode 100755 doc/images/delete.png create mode 100755 doc/images/tag_blue.png create mode 100644 doc/images/transparent.png create mode 100644 doc/js/navigation.js create mode 100644 doc/js/search.js create mode 100644 doc/js/search_index.js create mode 100644 doc/js/searcher.js create mode 100644 doc/table_of_contents.html diff --git a/doc/BruteForce.html b/doc/BruteForce.html index 8f66c736..4837d869 100644 --- a/doc/BruteForce.html +++ b/doc/BruteForce.html @@ -273,7 +273,7 @@ on large wordlists, although bareable.

queue_count += 1 # create local vars for on_complete call back, Issue 51. - username = login.name + username = login.name != 'empty' ? login.name : login.nickname # Issue #66 password = password # the request object diff --git a/doc/Gemfile.html b/doc/Gemfile.html new file mode 100644 index 00000000..9dd729b8 --- /dev/null +++ b/doc/Gemfile.html @@ -0,0 +1,160 @@ + + + + + + +Gemfile - RDoc Documentation + + + + + + + + + + + + + + + + +
+ +

source “rubygems.org

+ +

gem “typhoeus”, “0.4.2” gem “rspec”, :require => “spec” gem “nokogiri” +gem “json” gem “webmock”, “1.8.11” gem “simplecov”

+ +
+ + + + + diff --git a/doc/Generate_List.html b/doc/Generate_List.html index 83973aea..98a43548 100644 --- a/doc/Generate_List.html +++ b/doc/Generate_List.html @@ -80,6 +80,8 @@
  • #save +
  • #set_file_name + @@ -250,15 +252,13 @@ def initialize(type, verbose) if type =~ %rplugins/ @type = "plugin" - @svn_url = 'http://plugins.svn.wordpress.org/' - @file_name = DATA_DIR + '/plugins.txt' - @popular_url = 'http://wordpress.org/extend/plugins/browse/popular/' + @svn_url = "http://plugins.svn.wordpress.org/" + @popular_url = "http://wordpress.org/extend/plugins/browse/popular/" @popular_regex = %r{<h3><a href="http://wordpress.org/extend/plugins/(.+)/">.+</a></h3>} elsif type =~ %rthemes/ @type = "theme" - @svn_url = 'http://themes.svn.wordpress.org/' - @file_name = DATA_DIR + '/themes.txt' - @popular_url = 'http://wordpress.org/extend/themes/browse/popular/' + @svn_url = "http://themes.svn.wordpress.org/" + @popular_url = "http://wordpress.org/extend/themes/browse/popular/" @popular_regex = %r{<h3><a href="http://wordpress.org/extend/themes/(.+)">.+</a></h3>} else raise "Type #{type} not defined" @@ -299,8 +299,9 @@
    -
    # File lib/wpstools/generate_list.rb, line 48
    +            
    # File lib/wpstools/generate_list.rb, line 71
     def generate_full_list
    +  set_file_name(:full)
       items = Svn_Parser.new(@svn_url, @verbose).parse
       save items
     end
    @@ -330,8 +331,9 @@