wordlist 0.1.1 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/ruby.yml +28 -0
- data/.gitignore +6 -3
- data/ChangeLog.md +55 -1
- data/Gemfile +15 -0
- data/LICENSE.txt +1 -3
- data/README.md +301 -60
- data/Rakefile +7 -32
- data/benchmarks.rb +115 -0
- data/bin/wordlist +4 -7
- data/data/stop_words/ar.txt +104 -0
- data/data/stop_words/bg.txt +259 -0
- data/data/stop_words/bn.txt +363 -0
- data/data/stop_words/ca.txt +126 -0
- data/data/stop_words/cs.txt +138 -0
- data/data/stop_words/da.txt +101 -0
- data/data/stop_words/de.txt +129 -0
- data/data/stop_words/el.txt +79 -0
- data/data/stop_words/en.txt +175 -0
- data/data/stop_words/es.txt +178 -0
- data/data/stop_words/eu.txt +98 -0
- data/data/stop_words/fa.txt +332 -0
- data/data/stop_words/fi.txt +747 -0
- data/data/stop_words/fr.txt +116 -0
- data/data/stop_words/ga.txt +109 -0
- data/data/stop_words/gl.txt +160 -0
- data/data/stop_words/he.txt +499 -0
- data/data/stop_words/hi.txt +97 -0
- data/data/stop_words/hr.txt +179 -0
- data/data/stop_words/hu.txt +35 -0
- data/data/stop_words/hy.txt +45 -0
- data/data/stop_words/id.txt +357 -0
- data/data/stop_words/it.txt +134 -0
- data/data/stop_words/ja.txt +44 -0
- data/data/stop_words/ko.txt +677 -0
- data/data/stop_words/ku.txt +63 -0
- data/data/stop_words/lt.txt +507 -0
- data/data/stop_words/lv.txt +163 -0
- data/data/stop_words/mr.txt +99 -0
- data/data/stop_words/nl.txt +48 -0
- data/data/stop_words/no.txt +172 -0
- data/data/stop_words/pl.txt +138 -0
- data/data/stop_words/pt.txt +147 -0
- data/data/stop_words/ro.txt +281 -0
- data/data/stop_words/ru.txt +421 -0
- data/data/stop_words/sk.txt +173 -0
- data/data/stop_words/sv.txt +386 -0
- data/data/stop_words/th.txt +115 -0
- data/data/stop_words/tr.txt +114 -0
- data/data/stop_words/uk.txt +28 -0
- data/data/stop_words/ur.txt +513 -0
- data/data/stop_words/zh.txt +125 -0
- data/gemspec.yml +13 -12
- data/lib/wordlist/abstract_wordlist.rb +25 -0
- data/lib/wordlist/builder.rb +172 -138
- data/lib/wordlist/cli.rb +459 -0
- data/lib/wordlist/compression/reader.rb +72 -0
- data/lib/wordlist/compression/writer.rb +80 -0
- data/lib/wordlist/exceptions.rb +31 -0
- data/lib/wordlist/file.rb +177 -0
- data/lib/wordlist/format.rb +39 -0
- data/lib/wordlist/lexer/lang.rb +34 -0
- data/lib/wordlist/lexer/stop_words.rb +69 -0
- data/lib/wordlist/lexer.rb +221 -0
- data/lib/wordlist/list_methods.rb +462 -0
- data/lib/wordlist/modifiers/capitalize.rb +46 -0
- data/lib/wordlist/modifiers/downcase.rb +46 -0
- data/lib/wordlist/modifiers/gsub.rb +52 -0
- data/lib/wordlist/modifiers/modifier.rb +44 -0
- data/lib/wordlist/modifiers/mutate.rb +134 -0
- data/lib/wordlist/modifiers/mutate_case.rb +26 -0
- data/lib/wordlist/modifiers/sub.rb +98 -0
- data/lib/wordlist/modifiers/tr.rb +72 -0
- data/lib/wordlist/modifiers/upcase.rb +46 -0
- data/lib/wordlist/modifiers.rb +9 -0
- data/lib/wordlist/operators/binary_operator.rb +39 -0
- data/lib/wordlist/operators/concat.rb +48 -0
- data/lib/wordlist/operators/intersect.rb +56 -0
- data/lib/wordlist/operators/operator.rb +29 -0
- data/lib/wordlist/operators/power.rb +73 -0
- data/lib/wordlist/operators/product.rb +51 -0
- data/lib/wordlist/operators/subtract.rb +55 -0
- data/lib/wordlist/operators/unary_operator.rb +30 -0
- data/lib/wordlist/operators/union.rb +62 -0
- data/lib/wordlist/operators/unique.rb +53 -0
- data/lib/wordlist/operators.rb +8 -0
- data/lib/wordlist/unique_filter.rb +41 -61
- data/lib/wordlist/version.rb +4 -2
- data/lib/wordlist/words.rb +72 -0
- data/lib/wordlist.rb +104 -2
- data/spec/abstract_list_spec.rb +18 -0
- data/spec/builder_spec.rb +220 -76
- data/spec/cli_spec.rb +802 -0
- data/spec/compression/reader_spec.rb +137 -0
- data/spec/compression/writer_spec.rb +194 -0
- data/spec/file_spec.rb +269 -0
- data/spec/fixtures/wordlist.txt +15 -0
- data/spec/fixtures/wordlist.txt.bz2 +0 -0
- data/spec/fixtures/wordlist.txt.gz +0 -0
- data/spec/fixtures/wordlist.txt.xz +0 -0
- data/spec/fixtures/wordlist_with_ambiguous_format +3 -0
- data/spec/fixtures/wordlist_with_comments.txt +19 -0
- data/spec/fixtures/wordlist_with_empty_lines.txt +19 -0
- data/spec/format_spec.rb +50 -0
- data/spec/helpers/text.rb +3 -3
- data/spec/helpers/wordlist.rb +2 -2
- data/spec/lexer/lang_spec.rb +70 -0
- data/spec/lexer/stop_words_spec.rb +77 -0
- data/spec/lexer_spec.rb +718 -0
- data/spec/list_methods_spec.rb +181 -0
- data/spec/modifiers/capitalize_spec.rb +27 -0
- data/spec/modifiers/downcase_spec.rb +27 -0
- data/spec/modifiers/gsub_spec.rb +59 -0
- data/spec/modifiers/modifier_spec.rb +20 -0
- data/spec/modifiers/mutate_case_spec.rb +46 -0
- data/spec/modifiers/mutate_spec.rb +39 -0
- data/spec/modifiers/sub_spec.rb +98 -0
- data/spec/modifiers/tr_spec.rb +46 -0
- data/spec/modifiers/upcase_spec.rb +27 -0
- data/spec/operators/binary_operator_spec.rb +19 -0
- data/spec/operators/concat_spec.rb +26 -0
- data/spec/operators/intersect_spec.rb +37 -0
- data/spec/operators/operator_spec.rb +16 -0
- data/spec/operators/power_spec.rb +57 -0
- data/spec/operators/product_spec.rb +39 -0
- data/spec/operators/subtract_spec.rb +37 -0
- data/spec/operators/unary_operator_spec.rb +14 -0
- data/spec/operators/union_spec.rb +37 -0
- data/spec/operators/unique_spec.rb +25 -0
- data/spec/spec_helper.rb +2 -1
- data/spec/unique_filter_spec.rb +108 -18
- data/spec/wordlist_spec.rb +55 -3
- data/spec/words_spec.rb +41 -0
- data/wordlist.gemspec +1 -0
- metadata +164 -126
- data/lib/wordlist/builders/website.rb +0 -216
- data/lib/wordlist/builders.rb +0 -1
- data/lib/wordlist/flat_file.rb +0 -47
- data/lib/wordlist/list.rb +0 -162
- data/lib/wordlist/mutator.rb +0 -113
- data/lib/wordlist/parsers.rb +0 -74
- data/lib/wordlist/runners/list.rb +0 -116
- data/lib/wordlist/runners/runner.rb +0 -67
- data/lib/wordlist/runners.rb +0 -2
- data/scripts/benchmark +0 -59
- data/scripts/text/comedy_of_errors.txt +0 -4011
- data/spec/classes/parser_class.rb +0 -7
- data/spec/classes/test_list.rb +0 -9
- data/spec/flat_file_spec.rb +0 -25
- data/spec/list_spec.rb +0 -58
- data/spec/mutator_spec.rb +0 -43
- data/spec/parsers_spec.rb +0 -118
metadata
CHANGED
@@ -1,167 +1,205 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: wordlist
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 1
|
9
|
-
- 1
|
10
|
-
version: 0.1.1
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.1
|
11
5
|
platform: ruby
|
12
|
-
authors:
|
6
|
+
authors:
|
13
7
|
- Postmodern
|
14
|
-
autorequire:
|
8
|
+
autorequire:
|
15
9
|
bindir: bin
|
16
10
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
- - ~>
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
hash: 15
|
29
|
-
segments:
|
30
|
-
- 0
|
31
|
-
- 2
|
32
|
-
version: "0.2"
|
33
|
-
type: :runtime
|
34
|
-
version_requirements: *id001
|
35
|
-
- !ruby/object:Gem::Dependency
|
36
|
-
name: rubygems-tasks
|
37
|
-
prerelease: false
|
38
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
-
none: false
|
40
|
-
requirements:
|
41
|
-
- - ~>
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
hash: 9
|
44
|
-
segments:
|
45
|
-
- 0
|
46
|
-
- 1
|
47
|
-
version: "0.1"
|
11
|
+
date: 2023-07-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.0'
|
48
20
|
type: :development
|
49
|
-
version_requirements: *id002
|
50
|
-
- !ruby/object:Gem::Dependency
|
51
|
-
name: rspec
|
52
21
|
prerelease: false
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
- 2
|
61
|
-
- 4
|
62
|
-
version: "2.4"
|
63
|
-
type: :development
|
64
|
-
version_requirements: *id003
|
65
|
-
- !ruby/object:Gem::Dependency
|
66
|
-
name: yard
|
67
|
-
prerelease: false
|
68
|
-
requirement: &id004 !ruby/object:Gem::Requirement
|
69
|
-
none: false
|
70
|
-
requirements:
|
71
|
-
- - ~>
|
72
|
-
- !ruby/object:Gem::Version
|
73
|
-
hash: 27
|
74
|
-
segments:
|
75
|
-
- 0
|
76
|
-
- 8
|
77
|
-
version: "0.8"
|
78
|
-
type: :development
|
79
|
-
version_requirements: *id004
|
80
|
-
description: A Ruby library for generating and working with word-lists. Wordlist allows one to efficiently generate unique word-lists from arbitrary text or other sources, such as website content. Wordlist can also quickly enumerate through words within an existing word-list, applying multiple mutation rules to each word in the list.
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.0'
|
27
|
+
description: Wordlist is a Ruby library and CLI for reading, combining, mutating,
|
28
|
+
and building wordlists, efficiently.
|
81
29
|
email: postmodern.mod3@gmail.com
|
82
|
-
executables:
|
30
|
+
executables:
|
83
31
|
- wordlist
|
84
32
|
extensions: []
|
85
|
-
|
86
|
-
extra_rdoc_files:
|
33
|
+
extra_rdoc_files:
|
87
34
|
- ChangeLog.md
|
88
35
|
- LICENSE.txt
|
89
36
|
- README.md
|
90
|
-
files:
|
91
|
-
- .document
|
92
|
-
- .
|
93
|
-
- .
|
94
|
-
- .
|
37
|
+
files:
|
38
|
+
- ".document"
|
39
|
+
- ".github/workflows/ruby.yml"
|
40
|
+
- ".gitignore"
|
41
|
+
- ".rspec"
|
42
|
+
- ".yardopts"
|
95
43
|
- ChangeLog.md
|
44
|
+
- Gemfile
|
96
45
|
- LICENSE.txt
|
97
46
|
- README.md
|
98
47
|
- Rakefile
|
48
|
+
- benchmarks.rb
|
99
49
|
- bin/wordlist
|
50
|
+
- data/stop_words/ar.txt
|
51
|
+
- data/stop_words/bg.txt
|
52
|
+
- data/stop_words/bn.txt
|
53
|
+
- data/stop_words/ca.txt
|
54
|
+
- data/stop_words/cs.txt
|
55
|
+
- data/stop_words/da.txt
|
56
|
+
- data/stop_words/de.txt
|
57
|
+
- data/stop_words/el.txt
|
58
|
+
- data/stop_words/en.txt
|
59
|
+
- data/stop_words/es.txt
|
60
|
+
- data/stop_words/eu.txt
|
61
|
+
- data/stop_words/fa.txt
|
62
|
+
- data/stop_words/fi.txt
|
63
|
+
- data/stop_words/fr.txt
|
64
|
+
- data/stop_words/ga.txt
|
65
|
+
- data/stop_words/gl.txt
|
66
|
+
- data/stop_words/he.txt
|
67
|
+
- data/stop_words/hi.txt
|
68
|
+
- data/stop_words/hr.txt
|
69
|
+
- data/stop_words/hu.txt
|
70
|
+
- data/stop_words/hy.txt
|
71
|
+
- data/stop_words/id.txt
|
72
|
+
- data/stop_words/it.txt
|
73
|
+
- data/stop_words/ja.txt
|
74
|
+
- data/stop_words/ko.txt
|
75
|
+
- data/stop_words/ku.txt
|
76
|
+
- data/stop_words/lt.txt
|
77
|
+
- data/stop_words/lv.txt
|
78
|
+
- data/stop_words/mr.txt
|
79
|
+
- data/stop_words/nl.txt
|
80
|
+
- data/stop_words/no.txt
|
81
|
+
- data/stop_words/pl.txt
|
82
|
+
- data/stop_words/pt.txt
|
83
|
+
- data/stop_words/ro.txt
|
84
|
+
- data/stop_words/ru.txt
|
85
|
+
- data/stop_words/sk.txt
|
86
|
+
- data/stop_words/sv.txt
|
87
|
+
- data/stop_words/th.txt
|
88
|
+
- data/stop_words/tr.txt
|
89
|
+
- data/stop_words/uk.txt
|
90
|
+
- data/stop_words/ur.txt
|
91
|
+
- data/stop_words/zh.txt
|
100
92
|
- gemspec.yml
|
101
93
|
- lib/wordlist.rb
|
94
|
+
- lib/wordlist/abstract_wordlist.rb
|
102
95
|
- lib/wordlist/builder.rb
|
103
|
-
- lib/wordlist/
|
104
|
-
- lib/wordlist/
|
105
|
-
- lib/wordlist/
|
106
|
-
- lib/wordlist/
|
107
|
-
- lib/wordlist/
|
108
|
-
- lib/wordlist/
|
109
|
-
- lib/wordlist/
|
110
|
-
- lib/wordlist/
|
111
|
-
- lib/wordlist/
|
96
|
+
- lib/wordlist/cli.rb
|
97
|
+
- lib/wordlist/compression/reader.rb
|
98
|
+
- lib/wordlist/compression/writer.rb
|
99
|
+
- lib/wordlist/exceptions.rb
|
100
|
+
- lib/wordlist/file.rb
|
101
|
+
- lib/wordlist/format.rb
|
102
|
+
- lib/wordlist/lexer.rb
|
103
|
+
- lib/wordlist/lexer/lang.rb
|
104
|
+
- lib/wordlist/lexer/stop_words.rb
|
105
|
+
- lib/wordlist/list_methods.rb
|
106
|
+
- lib/wordlist/modifiers.rb
|
107
|
+
- lib/wordlist/modifiers/capitalize.rb
|
108
|
+
- lib/wordlist/modifiers/downcase.rb
|
109
|
+
- lib/wordlist/modifiers/gsub.rb
|
110
|
+
- lib/wordlist/modifiers/modifier.rb
|
111
|
+
- lib/wordlist/modifiers/mutate.rb
|
112
|
+
- lib/wordlist/modifiers/mutate_case.rb
|
113
|
+
- lib/wordlist/modifiers/sub.rb
|
114
|
+
- lib/wordlist/modifiers/tr.rb
|
115
|
+
- lib/wordlist/modifiers/upcase.rb
|
116
|
+
- lib/wordlist/operators.rb
|
117
|
+
- lib/wordlist/operators/binary_operator.rb
|
118
|
+
- lib/wordlist/operators/concat.rb
|
119
|
+
- lib/wordlist/operators/intersect.rb
|
120
|
+
- lib/wordlist/operators/operator.rb
|
121
|
+
- lib/wordlist/operators/power.rb
|
122
|
+
- lib/wordlist/operators/product.rb
|
123
|
+
- lib/wordlist/operators/subtract.rb
|
124
|
+
- lib/wordlist/operators/unary_operator.rb
|
125
|
+
- lib/wordlist/operators/union.rb
|
126
|
+
- lib/wordlist/operators/unique.rb
|
112
127
|
- lib/wordlist/unique_filter.rb
|
113
128
|
- lib/wordlist/version.rb
|
114
|
-
-
|
115
|
-
-
|
129
|
+
- lib/wordlist/words.rb
|
130
|
+
- spec/abstract_list_spec.rb
|
116
131
|
- spec/builder_examples.rb
|
117
132
|
- spec/builder_spec.rb
|
118
|
-
- spec/
|
119
|
-
- spec/
|
120
|
-
- spec/
|
133
|
+
- spec/cli_spec.rb
|
134
|
+
- spec/compression/reader_spec.rb
|
135
|
+
- spec/compression/writer_spec.rb
|
136
|
+
- spec/file_spec.rb
|
137
|
+
- spec/fixtures/wordlist.txt
|
138
|
+
- spec/fixtures/wordlist.txt.bz2
|
139
|
+
- spec/fixtures/wordlist.txt.gz
|
140
|
+
- spec/fixtures/wordlist.txt.xz
|
141
|
+
- spec/fixtures/wordlist_with_ambiguous_format
|
142
|
+
- spec/fixtures/wordlist_with_comments.txt
|
143
|
+
- spec/fixtures/wordlist_with_empty_lines.txt
|
144
|
+
- spec/format_spec.rb
|
121
145
|
- spec/helpers/text.rb
|
122
146
|
- spec/helpers/wordlist.rb
|
123
|
-
- spec/
|
124
|
-
- spec/
|
125
|
-
- spec/
|
147
|
+
- spec/lexer/lang_spec.rb
|
148
|
+
- spec/lexer/stop_words_spec.rb
|
149
|
+
- spec/lexer_spec.rb
|
150
|
+
- spec/list_methods_spec.rb
|
151
|
+
- spec/modifiers/capitalize_spec.rb
|
152
|
+
- spec/modifiers/downcase_spec.rb
|
153
|
+
- spec/modifiers/gsub_spec.rb
|
154
|
+
- spec/modifiers/modifier_spec.rb
|
155
|
+
- spec/modifiers/mutate_case_spec.rb
|
156
|
+
- spec/modifiers/mutate_spec.rb
|
157
|
+
- spec/modifiers/sub_spec.rb
|
158
|
+
- spec/modifiers/tr_spec.rb
|
159
|
+
- spec/modifiers/upcase_spec.rb
|
160
|
+
- spec/operators/binary_operator_spec.rb
|
161
|
+
- spec/operators/concat_spec.rb
|
162
|
+
- spec/operators/intersect_spec.rb
|
163
|
+
- spec/operators/operator_spec.rb
|
164
|
+
- spec/operators/power_spec.rb
|
165
|
+
- spec/operators/product_spec.rb
|
166
|
+
- spec/operators/subtract_spec.rb
|
167
|
+
- spec/operators/unary_operator_spec.rb
|
168
|
+
- spec/operators/union_spec.rb
|
169
|
+
- spec/operators/unique_spec.rb
|
126
170
|
- spec/spec_helper.rb
|
127
171
|
- spec/text/flat_file.txt
|
128
172
|
- spec/text/previous_wordlist.txt
|
129
173
|
- spec/text/sample.txt
|
130
174
|
- spec/unique_filter_spec.rb
|
131
175
|
- spec/wordlist_spec.rb
|
176
|
+
- spec/words_spec.rb
|
132
177
|
- wordlist.gemspec
|
133
|
-
homepage: https://github.com/
|
134
|
-
licenses:
|
178
|
+
homepage: https://github.com/postmodern/wordlist.rb
|
179
|
+
licenses:
|
135
180
|
- MIT
|
136
|
-
|
181
|
+
metadata:
|
182
|
+
documentation_uri: https://rubydoc.info/gems/wordlist
|
183
|
+
source_code_uri: https://github.com/postmodern/wordlist.rb
|
184
|
+
bug_tracker_uri: https://github.com/postmodern/wordlist.rb/issues
|
185
|
+
changelog_uri: https://github.com/postmodern/wordlist.rb/blob/master/ChangeLog.md
|
186
|
+
post_install_message:
|
137
187
|
rdoc_options: []
|
138
|
-
|
139
|
-
require_paths:
|
188
|
+
require_paths:
|
140
189
|
- lib
|
141
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
142
|
-
|
143
|
-
requirements:
|
190
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
144
192
|
- - ">="
|
145
|
-
- !ruby/object:Gem::Version
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
version: "0"
|
150
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
151
|
-
none: false
|
152
|
-
requirements:
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: 2.0.0
|
195
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
196
|
+
requirements:
|
153
197
|
- - ">="
|
154
|
-
- !ruby/object:Gem::Version
|
155
|
-
|
156
|
-
segments:
|
157
|
-
- 0
|
158
|
-
version: "0"
|
198
|
+
- !ruby/object:Gem::Version
|
199
|
+
version: '0'
|
159
200
|
requirements: []
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
specification_version: 3
|
165
|
-
summary: A Ruby library for generating and working with word-lists.
|
201
|
+
rubygems_version: 3.4.10
|
202
|
+
signing_key:
|
203
|
+
specification_version: 4
|
204
|
+
summary: Ruby library and CLI for reading, combining, mutating, and building wordlists
|
166
205
|
test_files: []
|
167
|
-
|
@@ -1,216 +0,0 @@
|
|
1
|
-
require 'wordlist/builder'
|
2
|
-
|
3
|
-
require 'spidr'
|
4
|
-
|
5
|
-
module Wordlist
|
6
|
-
module Builders
|
7
|
-
class Website < Builder
|
8
|
-
|
9
|
-
# Proxy to use
|
10
|
-
attr_accessor :proxy
|
11
|
-
|
12
|
-
# User-Agent to use
|
13
|
-
attr_accessor :user_agent
|
14
|
-
|
15
|
-
# Referer URL to use
|
16
|
-
attr_accessor :referer
|
17
|
-
|
18
|
-
# Host to spider
|
19
|
-
attr_accessor :host
|
20
|
-
|
21
|
-
# HTTP Host Header to use in all requests.
|
22
|
-
attr_accessor :host_header
|
23
|
-
|
24
|
-
# Additional hosts that can be spidered
|
25
|
-
attr_reader :hosts
|
26
|
-
|
27
|
-
# Links to ignore while spidering
|
28
|
-
attr_reader :ignore_links
|
29
|
-
|
30
|
-
# Specifies whether the `content` attribute of `meta` tags will be
|
31
|
-
# parsed
|
32
|
-
attr_accessor :parse_meta
|
33
|
-
|
34
|
-
# Specifies whether `title` tags will be parsed
|
35
|
-
attr_accessor :parse_title
|
36
|
-
|
37
|
-
# Specifies whether `h1` tags will be parsed
|
38
|
-
attr_accessor :parse_h1
|
39
|
-
|
40
|
-
# Specifies whether `h2` tags will be parsed
|
41
|
-
attr_accessor :parse_h2
|
42
|
-
|
43
|
-
# Specifies whether `h3` tags will be parsed
|
44
|
-
attr_accessor :parse_h3
|
45
|
-
|
46
|
-
# Specifies whether `h4` tags will be parsed
|
47
|
-
attr_accessor :parse_h4
|
48
|
-
|
49
|
-
# Specifies whether `h5` tags will be parsed
|
50
|
-
attr_accessor :parse_h5
|
51
|
-
|
52
|
-
# Specifies whether `p` tags will be parsed
|
53
|
-
attr_accessor :parse_p
|
54
|
-
|
55
|
-
# Specifies whether `span` tags will be parsed
|
56
|
-
attr_accessor :parse_span
|
57
|
-
|
58
|
-
# Specifies whether the `alt` attributes of `img` tags will be parsed
|
59
|
-
attr_accessor :parse_alt
|
60
|
-
|
61
|
-
# Specifies whether HTML comment tags will be parsed
|
62
|
-
attr_accessor :parse_comments
|
63
|
-
|
64
|
-
# Additional XPath expressions to use to parse spidered pages
|
65
|
-
attr_reader :xpaths
|
66
|
-
|
67
|
-
#
|
68
|
-
# Creates a new Website builder object.
|
69
|
-
#
|
70
|
-
# @param [String] path
|
71
|
-
# The path to the word-list to build.
|
72
|
-
#
|
73
|
-
# @param [Hash] options
|
74
|
-
# Additional options.
|
75
|
-
#
|
76
|
-
# @option options [Hash] :proxy
|
77
|
-
# The Hash of proxy information to use.
|
78
|
-
#
|
79
|
-
# @option options [String] :user_agent
|
80
|
-
# The User-Agent string to send with each request.
|
81
|
-
#
|
82
|
-
# @option options [String] :referer
|
83
|
-
# The Referer URL to send with each request.
|
84
|
-
#
|
85
|
-
# @option options [String] :host_header
|
86
|
-
# The HTTP Host header to use in all requests.
|
87
|
-
#
|
88
|
-
# @option options [Array<String, Regexp, Proc>] :ignore_links
|
89
|
-
# Links to ignore while spidering.
|
90
|
-
#
|
91
|
-
# @option options [Boolean] :parse_meta (true)
|
92
|
-
# Specifies whether the `content` attribute of `meta` tags will be
|
93
|
-
# parsed.
|
94
|
-
#
|
95
|
-
# @option options [Boolean] :parse_title (true)
|
96
|
-
# Specifies whether `title` tags will be parsed.
|
97
|
-
#
|
98
|
-
# @option options [Boolean] :parse_h1 (true)
|
99
|
-
# Specifies whether `h1` tags will be parsed.
|
100
|
-
#
|
101
|
-
# @option options [Boolean] :parse_h2 (true)
|
102
|
-
# Specifies whether `h2` tags will be parsed.
|
103
|
-
#
|
104
|
-
# @option options [Boolean] :parse_h3 (true)
|
105
|
-
# Specifies whether `h3` tags will be parsed.
|
106
|
-
#
|
107
|
-
# @option options [Boolean] :parse_h4 (true)
|
108
|
-
# Specifies whether `h4` tags will be parsed.
|
109
|
-
#
|
110
|
-
# @option options [Boolean] :parse_h5 (true)
|
111
|
-
# Specifies whether `h5` tags will be parsed.
|
112
|
-
#
|
113
|
-
# @option options [Boolean] :parse_p (true)
|
114
|
-
# Specifies whether `p` tags will be parsed.
|
115
|
-
#
|
116
|
-
# @option options [Boolean] :parse_span (true)
|
117
|
-
# Specifies whether `span` tags will be parsed.
|
118
|
-
#
|
119
|
-
# @option options [Boolean] :parse_alt (true)
|
120
|
-
# Specifies whether the `alt` attributes of `img` tags will be
|
121
|
-
# parsed.
|
122
|
-
#
|
123
|
-
# @option options [Boolean] :parse_comments (false)
|
124
|
-
# Specifies whether HTML comment tags will be parsed.
|
125
|
-
#
|
126
|
-
# @option options [Array<String>] :xpaths
|
127
|
-
# Additional list of XPath expressions, to use when parsing
|
128
|
-
# spidered pages.
|
129
|
-
#
|
130
|
-
def initialize(path,options={},&block)
|
131
|
-
@proxy = options.fetch(:proxy,Spidr.proxy)
|
132
|
-
@user_agent = options[:user_agent]
|
133
|
-
@referer = options[:referer]
|
134
|
-
|
135
|
-
@host = options[:host]
|
136
|
-
@host_header = options[:host_header]
|
137
|
-
@hosts = Array(options[:hosts])
|
138
|
-
|
139
|
-
@ignore_links = Array(options[:ignore_links])
|
140
|
-
|
141
|
-
@parse_meta = options.fetch(:parse_meta,true)
|
142
|
-
@parse_title = options.fetch(:parse_title,true)
|
143
|
-
@parse_h1 = options.fetch(:parse_h1,true)
|
144
|
-
@parse_h2 = options.fetch(:parse_h2,true)
|
145
|
-
@parse_h3 = options.fetch(:parse_h3,true)
|
146
|
-
@parse_h4 = options.fetch(:parse_h4,true)
|
147
|
-
@parse_h5 = options.fetch(:parse_h5,true)
|
148
|
-
@parse_p = options.fetch(:parse_p,true)
|
149
|
-
@parse_span = options.fetch(:parse_span,true)
|
150
|
-
@parse_alt = options.fetch(:parse_alt,true)
|
151
|
-
@parse_comments = options.fetch(:parse_comments,false)
|
152
|
-
|
153
|
-
@xpaths = Array(options[:xpaths])
|
154
|
-
|
155
|
-
super(path,options,&block)
|
156
|
-
end
|
157
|
-
|
158
|
-
#
|
159
|
-
# Builds the word-list file by spidering the `host` and parsing the
|
160
|
-
# inner-text from all HTML pages.
|
161
|
-
#
|
162
|
-
# @yield [builder]
|
163
|
-
# If a block is given, it will be called before all HTML pages on
|
164
|
-
# the `host` have been parsed.
|
165
|
-
#
|
166
|
-
# @yieldparam [Website] builder
|
167
|
-
# The website word-list builder.
|
168
|
-
#
|
169
|
-
def build!(&block)
|
170
|
-
super(&block)
|
171
|
-
|
172
|
-
options = {
|
173
|
-
:proxy => @proxy,
|
174
|
-
:user_agent => @user_agent,
|
175
|
-
:referer => @referer,
|
176
|
-
:hosts => @hosts,
|
177
|
-
:ignore_links => @ignore_links
|
178
|
-
}
|
179
|
-
|
180
|
-
xpaths = []
|
181
|
-
xpaths << '//meta/@content' if @parse_meta
|
182
|
-
xpaths << '//title' if @parse_title
|
183
|
-
xpaths << '//h1' if @parse_h1
|
184
|
-
xpaths << '//h2' if @parse_h2
|
185
|
-
xpaths << '//h3' if @parse_h3
|
186
|
-
xpaths << '//h4' if @parse_h4
|
187
|
-
xpaths << '//h5' if @parse_h5
|
188
|
-
xpaths << '//p' if @parse_p
|
189
|
-
xpaths << '//span' if @parse_span
|
190
|
-
xpaths << '//img/@alt' if @parse_alt
|
191
|
-
xpaths += @xpaths
|
192
|
-
|
193
|
-
Spidr.host(@host,options) do |spidr|
|
194
|
-
spidr.every_page do |page|
|
195
|
-
if page.html?
|
196
|
-
if page.doc
|
197
|
-
xpaths.each do |xpath|
|
198
|
-
page.doc.search(xpath).each do |element|
|
199
|
-
parse(element.inner_text)
|
200
|
-
end
|
201
|
-
end
|
202
|
-
end
|
203
|
-
|
204
|
-
if (@parse_comments && page.doc)
|
205
|
-
page.doc.traverse do |element|
|
206
|
-
parse(element.inner_text) if element.comment?
|
207
|
-
end
|
208
|
-
end
|
209
|
-
end
|
210
|
-
end
|
211
|
-
end
|
212
|
-
end
|
213
|
-
|
214
|
-
end
|
215
|
-
end
|
216
|
-
end
|
data/lib/wordlist/builders.rb
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
require 'wordlist/builders/website'
|
data/lib/wordlist/flat_file.rb
DELETED
@@ -1,47 +0,0 @@
|
|
1
|
-
require 'wordlist/list'
|
2
|
-
|
3
|
-
module Wordlist
|
4
|
-
class FlatFile < List
|
5
|
-
|
6
|
-
# The path to the flat-file
|
7
|
-
attr_accessor :path
|
8
|
-
|
9
|
-
#
|
10
|
-
# Opens a new FlatFile list.
|
11
|
-
#
|
12
|
-
# @param [String] path
|
13
|
-
# The path to the flat file word-list read from.
|
14
|
-
#
|
15
|
-
# @param [Hash] options
|
16
|
-
# Additional options.
|
17
|
-
#
|
18
|
-
def initialize(path,options={},&block)
|
19
|
-
@path = path
|
20
|
-
|
21
|
-
super(options,&block)
|
22
|
-
end
|
23
|
-
|
24
|
-
#
|
25
|
-
# Enumerates through every word in the flat-file.
|
26
|
-
#
|
27
|
-
# @yield [word]
|
28
|
-
# The given block will be passed every word from the word-list.
|
29
|
-
#
|
30
|
-
# @yieldparam [String] word
|
31
|
-
# A word from the word-list.
|
32
|
-
#
|
33
|
-
# @example
|
34
|
-
# flat_file.each_word do |word|
|
35
|
-
# puts word
|
36
|
-
# end
|
37
|
-
#
|
38
|
-
def each_word(&block)
|
39
|
-
File.open(@path) do |file|
|
40
|
-
file.each_line do |line|
|
41
|
-
yield line.chomp
|
42
|
-
end
|
43
|
-
end
|
44
|
-
end
|
45
|
-
|
46
|
-
end
|
47
|
-
end
|