Advanced Search
Search Results
91 total results found
stat
Get Date of OS Installation stat / | grep "Birth" | sed 's/Birth: //g' | cut -b 2-11
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...
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...
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
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...
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```
grep
grep string in txt / plaintext file grep searchstring data.txt grep files in folderstructure grep -r searchstring /home/user/data/*
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...
Revert commits
revert to last commit: git reset --soft HEAD~1 revert to commit X and don’t forget the final ‘ .’ git checkout <commit-id> . Add this version to the staging area and push to remote git add . git commit -m "Reverting to <commit-id>" git push
Simple Overview of all Settings
Create new folder name it: GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} Rename it to something meaningful Enjoy all Windows Settings
Simple Overview of all Settings
Create new folder name it: GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} Rename it to something meaningful Enjoy all Windows Settings
Compression and Decompressing
Get file extension file unknownfiletype.bin unknownfiletype.bin: gzip compressed data, was “data2.bin”, last modified: Thu May 7 18:14:30 2020, max compression, from Unix Decompress Decompress Tarball tar xf file3.tar Extract .tar.gz file to current working...
Stable Diffusion AMD Linux ROCm
This repository contains instructions on how to host your own AI for image generation using stable diffusion with an 8GB VRAM AMD GPU on Linux. This is an affordable and efficient alternative to using Google Colab, which can be quite expensive. Watch this YouT...
My Setup
Install Packages apt install vim curl wget tor torsocks torbrowser-launcher vokoscreen-ng wireshark filezilla thunderbird keepassxy ssh openvpn network-manager-openvpn-gnome kolourpaint zsh tmux screen rsync rclone bridge-utils virt-manager qbittorrent aria2 k...
GPU Passtrough on Linuxmint 21
0: Pretext This Setup requires 2 Graphic Cards (1ntegrated and one internal PCI Graphicscard - or - two internal PCI Graphic Cards) Also I am using and AMD CPU, remember to use the equivalents if you have an intel CPU. Also the Sound setup is for Pulseaudio. I...
New Page
Fill disks with zeroes dd if=/dev/zero bs=1M of=/dev/sda status=progress Fill disks with random numbers dd if=/dev/urandom bs=1M of=/dev/sda status=progress