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
{ | |
"Version": "2008-10-17", | |
"Statement": [ | |
{ | |
"Sid": "AllowPublicRead", | |
"Effect": "Allow", | |
"Principal": { | |
"AWS": "*" | |
}, | |
"Action": "s3:GetObject", |
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
00 | |
01 | |
02 | |
03 | |
04 | |
05 | |
06 | |
07 | |
08 | |
09 |
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://start.me/p/vjEPvb/thug-bounty # Pentest / Bug bounty bookmarks | |
https://start.me/p/QRQb0O/trouble-fake # OSINT bookmarks | |
######################################################### | |
https://github.com/Hack-with-Github/Awesome-Hacking | |
https://github.com/sehno/Bug-bounty/blob/master/bugbounty_checklist.md | |
https://github.com/shieldfy/API-Security-Checklist/blob/master/README.md | |
https://www.jhaddix.com/post/my-xmind-hunt-template-for-hakluke | |
https://github.com/Ignitetechnologies/Mindmap | |
######################################################### |
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 NGINX, PHP, Tor and Vim: | |
sudo dnf install nginx php tor vim | |
Set Tor: | |
sudo vim /etc/tor/torrc | |
Uncomment this 2 lines: | |
HiddenServiceDir /var/lib/tor/hidden_service/ | |
HiddenServicePort 80 127.0.0.1:80 | |
sudo systemctl enable tor |
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
python3 -c "import pty; pty.spawn('/bin/bash')" |
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 Kali Linux: | |
https://www.microsoft.com/en-us/p/kali-linux/9pkr34tncv07?activetab=pivot:overviewtab | |
Open Powershell as admin and go to the second hard drive (Let's say D for the example, change it if needed according to yours): | |
cd D:\ | |
Create a wsl folder: | |
mkdir wsl | |
Enter the new folder: |
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
Download the Fedora rpm file: | |
https://www.tenable.com/downloads/nessus?loginAttempted=true | |
Go to the Downloads folder: | |
cd ~/Downloads | |
Install Nessus using "dnf" (Replace <version> with the real version number): | |
sudo dnf install ./Nessus-<version>.x86_64.rpm | |
Start Nessus: |
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
Upgrade all packages: | |
sudo dnf upgrade --refresh | |
Install the DNF system upgrade plugin, if not already installed: | |
sudo dnf install dnf-plugin-system-upgrade | |
Download the files (Replace XX by the version number): | |
sudo dnf system-upgrade download --releasever=XX | |
Upgrade the system and 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
SELinux will be configured in permissive mode, don't follow this steps if you're not on a secure network: | |
1) Switch to root user, set SELinux on permissive and reboot: | |
sudo -i | |
sed -i 's/^SELINUX=enforcing/SELINUX=permissive/g' /etc/selinux/config | |
reboot | |
2) Switch to root user and install Pi-Hole: | |
sudo -i | |
curl -sSL https://install.pi-hole.net | bash |
NewerOlder