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 @@