Advanced Search
Search Results
154 total results found
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...
Stable diffusion
Tar Backup via SSH
Create Backup tar -cf - sourcedir | ssh user@destinationserver 'cat > file.tar' Restore Backup ssh user@destinationserver 'cat file.tar' | tar -xf - -C root/dir
My Linux Mint Setup
Wargames
https://www.hackthebox.eu/ https://microcorruption.com/login http://smashthestack.org/ http://pwnable.kr/ http://3564020356.org/deserve.htm http://roothack.org/ https://holidayhackchallenge.com/2016/ http://www.hackertest.net/ https://canyouhack.us/ http://www...
dd
apt-search for compiling
Whenever a compile fails with a missing file simply leverage the infrastructure to search for the missing ubuntu package apt-file search some_missing_file_goes_here # cmd 1 apt-file search X11/extensions/Xcomposite.h # cmd 1 which returns with l...
Search files for username and group
find / -user username -group groupname -ls```
wireless
grep
grep string in txt / plaintext file grep searchstring data.txt grep files in folderstructure grep -r searchstring /home/user/data/*
How - To GPU - Passtrough
ROT13
ROT13 ("rotate by 13 places", sometimes hyphenated ROT-13) is a simple letter substitution cipher that replaces a letter with the 13th letter after it in the alphabet. ROT13 is a special case of the Caesar cipher which was developed in ancient Rome. https://ww...