ownlan 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0116861dd003de1e992f9ab248fdf15e3298572f
4
- data.tar.gz: 441ba24e75b87357b872687559ff8c0f4edfbf9f
3
+ metadata.gz: de47556689ff2bd8200ab6563f0db9bdea19e791
4
+ data.tar.gz: 8640d8eb85dbc44ee0f88976a9f50bbc7f264330
5
5
  SHA512:
6
- metadata.gz: 8ce3c7dd9c3ce95cc66fc31cd8cf914f1b3397617a74a42650ac10229a8d2ada14699f9af48c95dafbc837b644ccd0f64609c9b2de62b1655a35bcaf35f4ce20
7
- data.tar.gz: 77813ea23512ea33d6c22485241735070d151d005ff46300bf9d007cdc660af47d163033104a3f56129b44f4b087fd8ae8b25333a841e42e50e557c74237ac35
6
+ metadata.gz: b96ce1e8048d204aaa198e22ebe89a45448e8d4013fa6dc2f6282d7a8d2306204c244a4212380ca5cb276d585bd0a669699d3dc2cc1bb92bbe7a5afbe64e6ebb
7
+ data.tar.gz: 497ffa054999873ba3e73c54872dac8f3ead35e0bf9a629b2331485efac2bd8f242296b59ee5b93bae02b6def469e13ec91a2948bc047e0e86506946e2252a21
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ownlan (0.4.0)
4
+ ownlan (0.4.1)
5
5
  activesupport
6
6
  packetfu
7
7
  trollop
data/README.md CHANGED
@@ -112,26 +112,24 @@ You can also use the provided executable. Simple launch it in accordance to the
112
112
 
113
113
  client Set a First-Duplex disconnection attack (the client is targeted). If no source mac argument, yours will be given (useful for MITM Attacks).
114
114
  * Required options: victim_ip
115
- * Falcultative options: random_source_mac , source_mac
115
+ * Falcultative options: random_mac , source_mac
116
116
  gateway Set a Second-Duplex disconnection attack (the gateway is targeted). If no source mac argument, yours will be given (useful for MITM Attacks).
117
117
  * Required options: victim_ip
118
- * Falcultative options: random_source_mac , source_mac
118
+ * Falcultative options: random_mac , source_mac
119
119
  ntoa The client is targeted to get disconnected, using a neighbour table overflow attack. Requires a victim ip.
120
120
  * Required options: victim_ip
121
- * Falcultative options: random_source_mac
121
+ * Falcultative options: random_mac
122
122
  fake-ip-conflict Generate a fake ip conflict to the victim. Can be used along all the others attacks, or alone.
123
123
  * Required options: victim_ip [Not Implemented]
124
124
 
125
- resynchronize Resynchronize the Gateway ARP Cache by sending to it continuous healthy correspondancies packets to protect someone or yourself from gateway. Default params are your mac and the gateway's mac. WARNING: If your gateway_mac is the attacker's, this protection won't work. In this case, input the gateway's mac manually.
125
+ resynchronize Operate a dual duplex attack on a victim to disconnect the attacker and heal the victim. Warning: If you are the victim, you will have to fill the optional options.
126
+ * Required options: victim_ip
126
127
  * Optional options: victim_mac , gateway_mac
127
128
  stealth Becomes invisible from network scanners, preventing you from getting targeted. [Not Implemented]
128
129
  static Set a static ARP Cache for the current session. Good against first-duplex ARP Cache Poisoning. [Not Implemented]
129
130
  freeze Reset and Freeze your ARP Cache. Good against NTOAs. [Not Implemented]
130
131
 
131
132
 
132
- attack. (reveive IP or MAC argument)
133
-
134
-
135
133
  - Where [Other Options] can be:
136
134
 
137
135
 
@@ -142,7 +140,7 @@ You can also use the provided executable. Simple launch it in accordance to the
142
140
  -v, --victim-mac=<s> Set the mac address of the target
143
141
  -g, --gateway-ip=<s> Set the ip adress of the gateway
144
142
  -e, --gateway-mac=<s> Set the mac adress of the gateway. (for Protect only)
145
- -s, --source-mac=<s> Set the mac of the source mac address. Default: Your mac address for wlan0 (00:c0:ca:69:0f:a9)
143
+ -s, --source-mac=<s> Set the mac of the source mac address.
146
144
  -o, --source-ip=<s> Set the ip address of the originating packet.
147
145
  -n, --version Print version and exit
148
146
  -h, --help Show this message
data/lib/ownlan/cli.rb CHANGED
@@ -31,13 +31,13 @@ where [sub-options] are either:
31
31
  Attacks sub-options:
32
32
  client Set a First-Duplex disconnection attack (the client is targeted). If no source mac argument, yours will be given (useful for MITM Attacks).
33
33
  * Required options: victim_ip
34
- * Falcultative options: random_source_mac , source_mac
34
+ * Falcultative options: random_mac , source_mac
35
35
  gateway Set a Second-Duplex disconnection attack (the gateway is targeted). If no source mac argument, yours will be given (useful for MITM Attacks).
36
36
  * Required options: victim_ip
37
- * Falcultative options: random_source_mac , source_mac
37
+ * Falcultative options: random_mac , source_mac
38
38
  ntoa The client is targeted to get disconnected, using a neighbour table overflow attack. Requires a victim ip.
39
39
  * Required options: victim_ip
40
- * Falcultative options: random_source_mac
40
+ * Falcultative options: random_mac
41
41
  fake-ip-conflict Generate a fake ip conflict to the victim. Can be used along all the others attacks, or alone.
42
42
  * Required options: victim_ip
43
43
  EOS
@@ -50,9 +50,9 @@ Protect sub-options:
50
50
  stealth Becomes invisible from network scanners, preventing you from getting targeted.
51
51
  static Set a static ARP Cache for the current session. Good against first-duplex ARP Cache Poisoning.
52
52
  freeze Reset and Freeze your ARP Cache. Good against NTOAs.
53
- resynchronize Resynchronize the Gateway ARP Cache by sending to it continuous healthy correspondancies packets to protect someone or yourself from gateway attack. Default params are your mac and the gateway's mac. WARNING: If your gateway_mac is the attacker's, this protection won't work. In this case, input the gateway's mac manually.
54
- * Required options: target_ip
55
- * Optional options: target_mac , gateway_mac
53
+ resynchronize Operate a dual duplex attack on a victim to disconnect the attacker and heal the victim. Warning: If you are the victim, you will have to fill the optional options.
54
+ * Required options: victim_ip
55
+ * Optional options: victim_mac , gateway_mac
56
56
 
57
57
  EOS
58
58
 
@@ -78,7 +78,7 @@ Other Options:
78
78
 
79
79
  opt :delay, "Set the time lapse delay between each packet", default: 0.5
80
80
  opt :interface, "Set the network interface which will be used", short: 'i', default: 'wlan0'
81
- opt :random_source_mac, "If setted, the used origin addresses will be randomly generated."
81
+ opt :random_mac, "If setted, the used origin addresses will be randomly generated."
82
82
  opt :victim_ip, "Set the ip address of the target.", short: 't', type: :string
83
83
  opt :victim_mac, "Set the mac address of the target", type: :string
84
84
  opt :gateway_ip, "Set the ip adress of the gateway", type: :string
@@ -1,3 +1,3 @@
1
1
  module Ownlan
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ownlan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - sidney