forked from Consti10/wifibroadcast
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Iee80211 header optimization and more (#9)
* packet validation by src / dest mac * add 2G script * rename * exp throughput without aut * exp throughput without aut - rev * optimize IEE80211 header usage * optimize IEE80211 header usage, document * optimize IEE80211 header usage, document * optimize IEE80211 header usage, document * optimize IEE80211 header usage, document * optimize IEE80211 header usage, document * optimize IEE80211 header usage, document * optimize IEE80211 header usage, document * optimize IEE80211 header usage, document * optimize IEE80211 header usage, document * optimize IEE80211 header usage, document * optimize IEE80211 header usage, document * optimize IEE80211 header usage, document * optimize IEE80211 header usage, document * add link pollution stats * add link pollution stats * fix security issue * fix security issue * add likely openhd packets stat for channel scan feature * add likely openhd packets stat for channel scan feature * add likely openhd packets stat for channel scan feature * add likely openhd packets stat for channel scan feature * add likely openhd packets stat for channel scan feature * add likely openhd packets stat for channel scan feature * add likely openhd packets stat for channel scan feature
- Loading branch information
Showing
14 changed files
with
474 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
|
||
# Simple script to enable monitor mode and set same frequency all together | ||
# Intended to be used with executables/example_hello.cpp | ||
|
||
if [ $# -eq 0 ] | ||
then | ||
echo "Please specify the card intended for wifibroadcast" | ||
exit -1 | ||
fi | ||
|
||
# !! Need to pass card | ||
MY_WIFI_CARD=$1 | ||
|
||
|
||
sh ./enable_monitor_mode.sh $MY_WIFI_CARD | ||
|
||
# Should work on most card(s) - 2412Mhz at HT20 (20Mhz channel width) | ||
sh ./set_freq.sh $MY_WIFI_CARD 2412 HT20 | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#bin/bash | ||
# For my pc, since I always use the same 4 cards for testing (2*RTL8812AU, 2xAR9271) that report themselves with fixed interface names | ||
# I created this script for easier setup | ||
sudo ./simple_2G.sh wlx6cfdb9b2a150 | ||
sudo ./simple_2G.sh wlxc4e984126183 | ||
|
||
sudo ./simple_5G.sh wlxac9e17596103 | ||
sudo ./simple_5G.sh wlx0492268830e5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.