Skip to content

Commit 6e827e7

Browse files
committed
rename referencies in docs
1 parent 3dc063b commit 6e827e7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This project consists of multiple components, that can be reused in other projec
3939
- [**Main**](main) component is entry point for this project. All neccessary initialisation steps are done here. Management AP is started and the control is handed to webserver.
4040
- [**Wifi Controller**](components/wifi_controller) component wraps all Wi-Fi related operations. It's used to start AP, connect as STA, scan nearby APs etc.
4141
- [**Webserver**](components/webserver) component provides web UI to configure attacks. It expects that AP is started and no additional security features like SSL encryption are enabled.
42-
- [**Deauther**](components/deauther) component bypasses Wi-Fi Stack Libraries restriction to send some types of arbitrary 802.11 frames.
42+
- [**Wi-Fi Stack Libraries Bypasser**](components/wsl_bypasser) component bypasses Wi-Fi Stack Libraries restriction to send some types of arbitrary 802.11 frames.
4343
- [**Frame Analyzer**](components/frame_analyzer) component processes captured frames and provides parsing functionality to other components.
4444
- [**PCAP Serializer**](components/pcap_serializer) component serializes captured frames into PCAP binary format and provides it to other components (mostly for webserver/UI)
4545
- [**HCCAPX Serializer**](components/hccapx_serializer) component serializes captured frames into HCCAPX binary format and provides it to other components (mostly for webserver/UI)

Diff for: components/wsl_bypasser/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This is done in [CMakeLists.txt](CMakeLists.txt) by following line:
1212
target_link_libraries(${COMPONENT_LIB} -Wl,-zmuldefs)
1313
```
1414

15-
And the function itself is defined in [deauther.c](deauther.c) as:
15+
And the function itself is defined in [wsl_bypasser.c](wsl_bypasser.c) as:
1616
```c
1717
int ieee80211_raw_frame_sanity_check(int32_t arg, int32_t arg2, int32_t arg3){
1818
return 0;

Diff for: main/attack_handshake.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818
typedef enum{
1919
ATTACK_HANDSHAKE_METHOD_ROGUE_AP, ///< Method using rogue/duplicated AP utilising native ESP-IDF behaviour only
20-
ATTACK_HANDSHAKE_METHOD_BROADCAST, ///< Method that takes advantage of deauther component that bypass blocking mechanism in Wi-Fi Stack Libraries
20+
ATTACK_HANDSHAKE_METHOD_BROADCAST, ///< Method that takes advantage of WSL Bypasser component that bypass blocking mechanism in Wi-Fi Stack Libraries
2121
/// to send raw 802.11 frames
2222
} attack_handshake_methods_t;
2323

0 commit comments

Comments
 (0)