bettercap 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/bettercap.rb +2 -0
- data/lib/bettercap/context.rb +33 -13
- data/lib/bettercap/discovery/agents/ndp.rb +43 -0
- data/lib/bettercap/discovery/thread.rb +1 -1
- data/lib/bettercap/firewalls/base.rb +2 -2
- data/lib/bettercap/firewalls/bsd.rb +13 -2
- data/lib/bettercap/firewalls/linux.rb +38 -7
- data/lib/bettercap/monkey/packetfu/utils.rb +219 -1
- data/lib/bettercap/network/ndp_reader.rb +35 -0
- data/lib/bettercap/network/network.rb +32 -4
- data/lib/bettercap/network/target.rb +1 -1
- data/lib/bettercap/network/validator.rb +33 -0
- data/lib/bettercap/options/core_options.rb +26 -3
- data/lib/bettercap/options/options.rb +5 -0
- data/lib/bettercap/options/proxy_options.rb +73 -1
- data/lib/bettercap/options/spoof_options.rb +10 -2
- data/lib/bettercap/proxy/http/proxy.rb +6 -1
- data/lib/bettercap/proxy/http/response.rb +8 -2
- data/lib/bettercap/proxy/http/ssl/bettercap-ca.pem +52 -48
- data/lib/bettercap/proxy/http/sslstrip/strip.rb +3 -9
- data/lib/bettercap/proxy/http/streamer.rb +1 -1
- data/lib/bettercap/proxy/udp/module.rb +85 -0
- data/lib/bettercap/proxy/udp/pool.rb +86 -0
- data/lib/bettercap/proxy/udp/proxy.rb +92 -0
- data/lib/bettercap/shell.rb +8 -2
- data/lib/bettercap/sniffer/parsers/https.rb +13 -4
- data/lib/bettercap/spoofers/ndp.rb +144 -0
- data/lib/bettercap/version.rb +1 -1
- metadata +15 -3
data/lib/bettercap/version.rb
CHANGED
@@ -12,7 +12,7 @@ This project is released under the GPL 3 license.
|
|
12
12
|
=end
|
13
13
|
module BetterCap
|
14
14
|
# Current version of bettercap.
|
15
|
-
VERSION = '1.6.
|
15
|
+
VERSION = '1.6.1'
|
16
16
|
# Program banner.
|
17
17
|
BANNER = File.read( File.dirname(__FILE__) + '/banner' ).gsub( '#VERSION#', "v#{VERSION}")
|
18
18
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bettercap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Simone Margaritelli
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colorize
|
@@ -54,6 +54,9 @@ dependencies:
|
|
54
54
|
- - ">="
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: 0.12.0
|
57
|
+
- - "<="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: 1.1.11
|
57
60
|
type: :runtime
|
58
61
|
prerelease: false
|
59
62
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -64,6 +67,9 @@ dependencies:
|
|
64
67
|
- - ">="
|
65
68
|
- !ruby/object:Gem::Version
|
66
69
|
version: 0.12.0
|
70
|
+
- - "<="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: 1.1.11
|
67
73
|
- !ruby/object:Gem::Dependency
|
68
74
|
name: network_interface
|
69
75
|
requirement: !ruby/object:Gem::Requirement
|
@@ -162,6 +168,7 @@ files:
|
|
162
168
|
- lib/bettercap/discovery/agents/arp.rb
|
163
169
|
- lib/bettercap/discovery/agents/base.rb
|
164
170
|
- lib/bettercap/discovery/agents/icmp.rb
|
171
|
+
- lib/bettercap/discovery/agents/ndp.rb
|
165
172
|
- lib/bettercap/discovery/agents/udp.rb
|
166
173
|
- lib/bettercap/discovery/thread.rb
|
167
174
|
- lib/bettercap/error.rb
|
@@ -180,6 +187,7 @@ files:
|
|
180
187
|
- lib/bettercap/monkey/system.rb
|
181
188
|
- lib/bettercap/network/arp_reader.rb
|
182
189
|
- lib/bettercap/network/hw-prefixes
|
190
|
+
- lib/bettercap/network/ndp_reader.rb
|
183
191
|
- lib/bettercap/network/network.rb
|
184
192
|
- lib/bettercap/network/packet_queue.rb
|
185
193
|
- lib/bettercap/network/protos/base.rb
|
@@ -219,6 +227,9 @@ files:
|
|
219
227
|
- lib/bettercap/proxy/tcp/module.rb
|
220
228
|
- lib/bettercap/proxy/tcp/proxy.rb
|
221
229
|
- lib/bettercap/proxy/thread_pool.rb
|
230
|
+
- lib/bettercap/proxy/udp/module.rb
|
231
|
+
- lib/bettercap/proxy/udp/pool.rb
|
232
|
+
- lib/bettercap/proxy/udp/proxy.rb
|
222
233
|
- lib/bettercap/shell.rb
|
223
234
|
- lib/bettercap/sniffer/parsers/base.rb
|
224
235
|
- lib/bettercap/sniffer/parsers/cookie.rb
|
@@ -247,6 +258,7 @@ files:
|
|
247
258
|
- lib/bettercap/spoofers/arp.rb
|
248
259
|
- lib/bettercap/spoofers/base.rb
|
249
260
|
- lib/bettercap/spoofers/icmp.rb
|
261
|
+
- lib/bettercap/spoofers/ndp.rb
|
250
262
|
- lib/bettercap/spoofers/none.rb
|
251
263
|
- lib/bettercap/update_checker.rb
|
252
264
|
- lib/bettercap/version.rb
|
@@ -271,7 +283,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
271
283
|
version: '0'
|
272
284
|
requirements: []
|
273
285
|
rubyforge_project:
|
274
|
-
rubygems_version: 2.
|
286
|
+
rubygems_version: 2.6.12
|
275
287
|
signing_key:
|
276
288
|
specification_version: 4
|
277
289
|
summary: A complete, modular, portable and easily extensible MITM framework.
|