Advanced Search
Search Results
156 total results found
Tar Backup via SSH
New Page
About Cron # Edit this file to introduce tasks to be run by cron. # # Each task to run has to be defined through a single line # indicating with different fields when the task will be run # and what command to run for the task # # To define the time you can ...
Wargames
install ffmpeg
apt-get install ffmpeg Convert .wav file to mp3 ffmpeg -i track01.wav -acodec mp3 track01.mp3 You can also specify the bitrate of the MP3 with the -ab flag. ffmpeg -i track01.wav -acodec mp3 -ab 64k track01.mp3 Convert a folder full of .wav into .mp3 for i ...
apt
Advanced usage. apt
Browse TOR via Commandline
apt-get install torsocks if you haven't already enabled TOR, enable it via systemctl enable --now tor Surf in commandline via Torsocks In my experience the only commandline browser that works together with torsocks is w3m. First install w3m: apt-get install ...
find / grep /sort /unique
commandline
Monitoring
Remember to do Backups!!! install smpd apt-get install snmpd libsnmp-dev add v3 user net-snmp-config --create-snmpv3-user -ro -A authpass -X privpass -a SHA -x AES username add clientserver to observium cd /opt/observium ./add_device.php <ipaddress> ap v3 us...
Rot13
https://en.wikipedia.org/wiki/ROT13
Join the Matrix
What is the Matrix In my opinion, The Matrix films provide the best metaphor our society has for understanding why organized evil and oppression are allowed to exist, and so I will use it for this purpose. While my interpretation isn't the only possible one, I...
Godmode
stat
Get Date of OS Installation stat / | grep "Birth" | sed 's/Birth: //g' | cut -b 2-11
Windows
Basics
Creating a new repository mkdir project cd project git init git remote add origin git@github.com:yourlogin/your-repo.git git add . git commit -am “new repository” git push -u origin master Cloning existing repository git clone https://github.com/username/your-...
Set TX-Power 30
Three easy steps: Here it goes root@kali:~# ifconfig wlan1 down root@kali:~# iw reg set BO root@kali:~# iwconfig wlan1 txpower 30 This is what it looks before wlan1 IEEE 802.11bg ESSID: off/any Mode:Managed Access Point: Not-Associated Tx-Power=20 dBm Retry l...
File Compression
Aircrack vs. WPA2
Install Aircrack sudo apt-get install aircrack-ng Search for Wlan Adapters sudo airmon-ng Enable Monitor Mode sudo airmon-ng start wlan0 Kill all previous airmon processes sudo airmon-ng check kill Look out for the wireless monitor device Exec airodump-n...