You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Worked a bit on the client discovery function, it runs, but doesn't pick up anything at the moment. This is most likely due to an issue with not correctly channel hopping nor have I focused down on a specific channel. So the next goal is to go back to the disc() function and fix the issue with getting the correct channel. After we fix that we're going to build a default function to channel hop and start off with that in order to find clients. Once that is complete will hone the function for selecting a specific channel from argument and really drive home the information we can gather with --client-discover
Copy file name to clipboardExpand all lines: okeusstrike.1
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -70,30 +70,30 @@ OPTIONS
70
70
Specifies that the deauthentication frames should be fragmented and will be fragmented based on a user supplied size in bytes. This option will automatically
71
71
add padding for fragment sizes that are odd in number to the frame size or are larger than the frame size.
72
72
Example: if the frame size is 50 bytes, the user inputs 26 bytes for the fragment size, OkeusStrike will send (2) 26 byte fragmented frames, with each frame
73
-
having an extra byte of padding to make up for the odd numbered total.
73
+
having an extra byte of padding to make up for the odd numbered total.
74
74
75
75
This is also true for input fragment sizes larger than the frame size, in which case the frame will be padded and fragmented based on the specified
76
76
fragment size.
77
77
Example: if the frame size is 50 bytes, the user inputs 60 bytes for the fragment size, OkeusStrike will send (2) 60 byte fragmented frames, with each
78
-
frame having 25 bytes of the original frame and 35 bytes of padding.
78
+
frame having 25 bytes of the original frame and 35 bytes of padding.
79
79
80
80
For fragment sizes are a less than half the size of the original frame size, the frame will be
81
81
divided into fragments of the specified size and sent in as many fragments as needed to send the entire frame with padding for equal sized fragments.
82
-
Example: if the frame size is 50 bytes, the user inputs 20 bytes for the fragment size, OkeusStrike will send (3) 20 byte fragmented frames, with each frame
83
-
an equal amount of padding to make up for the odd numbered total.
82
+
Example: if the frame size is 50 bytes, the user inputs 24 bytes for the fragment size, OkeusStrike will send (2) 24 byte fragmented frames, followed by (1)
83
+
2 byte fragmented frame, for a total of (3) fragmented frames.
84
84
85
85
This option can be combined with --sequence (described below) for increased control over the fragmentation of the deauthentication frame.
86
86
87
87
--sequence <sequence_number>
88
88
Specifies the total number of fragmented frames to send from user input. The option will automatically provide padding for odd numbered totals.
89
89
90
90
Example: if the frame size is 50 bytes, the user inputs (4) for the sequence number, OkeusStrike will send (4) frames of 13 bytes each, with each frame sending
91
-
a portion of the origial frame and padded to account for the odd numbered total.
91
+
a portion of the origial frame and padded to account for the odd numbered total.
92
92
93
-
If the user inputs a sequence number greater than the size of the frame, then OkeusStrike will send as many fragmented frames as possible with the original frame
94
-
data and then send the remaining frames with padding to make up the total number of frames specified.
93
+
If the user inputs a sequence number greater than the size of the frame, then OkeusStrike will send as many fragmented frames as possible with the original frame
94
+
data and then send the remaining frames with padding to make up the total number of frames specified.
95
95
Example: if the frame size is 50 bytes, the user inputs (60) for the sequence number, OkeusStrike will send the first 50 frames with 1 byte each of the original
96
-
data, and the remaining 10 frames will be sent with 1 byte of padding each.
96
+
data, and the remaining 10 frames will be sent with 1 byte of padding each.
97
97
98
98
This option can be combined with --fragment (described above) for increased control over the fragmentation of the deauthentication frame.
0 commit comments