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
Install: curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh | |
Update: rustup update | |
Uninstall: rustup self uninstall | |
(https://doc.rust-lang.org/book/ch01-01-installation.html) | |
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
Install (https://doc.rust-lang.org/book/ch01-01-installation.html): $ curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh | |
Update: rustup update | |
Uninstall: rustup self uninstall | |
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
RTL 102.5: | |
https://streamingv2.shoutcast.com/rtl-1025 | |
RTL Best: | |
http://shoutcast.rtl.it:3020/ | |
RTL ItalianStyle: | |
http://shoutcast.rtl.it:3030/ | |
RTL Groove: |
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/bash | |
# Set quality of JPEG files: value 0 (min) to 100 (max) | |
QUALITY=100 | |
for file in *.heic; do | |
if [ -f "$file" ]; then | |
fname=$(basename "$file" .heic) | |
heif-convert -q$QUALITY $file $fname.jpg | |
fi |
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/bash | |
echo "==========================" | |
echo "RT4 password change script" | |
echo "==========================" | |
read -p "Username: " username | |
if [ ${#username} -lt 2 ]; then | |
echo "No valid username entered." | |
exit | |
fi | |
read -p "New password for $username: " -s password |
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/bash | |
# Make sure to be in the right directory (fit to your RT4 installation) | |
cd /opt/rt4 | |
# Get the current year | |
current_year=$(date +'%Y') | |
# Subtract two years from the current year | |
two_years_before=$((current_year - 2)) |
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
https://www.dehashed.com/ View leaked credentials | |
https://www.exploit-db.com/ Archive of various exploits | |
https://pulsedive.com/ Search for threat intelligence | |
https://otx.alienvault.com/ Extensive threat intelligence feed | |
https://securitytrails.com/ Extensive DNS data | |
https://www.zoomeye.org/ Gather information about targets | |
https://buckets.grayhatwarfare.com/ Search public S3 buckets | |
https://grep.app/ Search across a half million git repos | |
https://crt.sh/ Search for certs that have been logged by CT | |
https://dorksearch.com/ Really fast Google dorking |
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
-shrink root | |
$ sudo cryptsetup luksOpen /dev/sda1/ mint-vg | |
$ sudo lvs | |
$ sudo lvresize -L -1.2G --resizefs mint-vg/root | |
-expand swap | |
$ sudo lvresize -l +100%FREE /dev/mint-vg/swap_1 | |
$ sudo mkswap /dev/mint-vg/swap_1 | |
$ sudo lvs | |
$ reboot |
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
BlackBasta - http://stniiomyjliimcgkvdszvgen3eaaoz55hreqqx6o77yvmpwt7gklffqd.onion/ | |
Hunters International - https://hunters55rdxciehoqzwv7vgyv6nt37tbwax2reroyzxhou7my5ejyid.onion/ | |
Play - http://k7kg3jqxang3wh7hnmaiokchk7qoebupfgoik6rha6mjpzwupwtj25yd.onion | |
Monti - http://mblogci3rudehaagbryjznltdp33ojwzkq6hn2pckvjq33rycmzczpid.onion/ | |
BianLian - http://bianlianlbc5an4kgnay3opdemgcryg2kpfcbgczopmm3dnbz3uaunad.onion/ | |
Rhysida - http://rhysidafohrhyy2aszi7bm32tnjat5xri65fopcxkdfxhi4tidsg7cad.onion/ | |
LockBit 3.0 - http://lockbitapt6vx57t3eeqjofwgcglmutr3a35nygvokja5uuccip4ykyd.onion/ | |
LockBit 3.0 2 - http://lockbit7z2jwcskxpbokpemdxmltipntwlkmidcll2qirbu7ykg46eyd.onion/ | |
Lockbit 3.0 BLOG - http://lockbit7ouvrsdgtojeoj5hvu6bljqtghitekwpdy3b6y62ixtsu5jqd.onion/ | |
Alphv - http://alphvmmm27o3abo3r2mlmjrpdmzle3rykajqc5xsj7j7ejksbpsa36ad.onion/?page=1 |
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/sh | |
LOCAL=`dirname $0` | |
ME=`basename "$0"` | |
read -r LINE | |
cd $LOCAL | |
cd ../ | |
PWD=`pwd` |
NewerOlder