- Recon
- Find vuln
- Exploit
- Document it
Unicornscans in cli, nmap in msfconsole to help store loot in database.
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
For more about AWS and AWS Certifications and updates to this Gist you should follow me @leonardofed
# Installs the current nvidia drivers and correct libraries for hashcat | |
# Repo list - https://docs.kali.org/general-use/kali-linux-sources-list-repositories | |
apt-get update && apt-get upgrade -y && apt-get dist-upgrade -y | |
apt install linux-headers-$(uname -r) -y | |
apt install nvidia-driver -y | |
apt install nvidia-opencl-icd libxnvctrl-dev nvidia-opencl-dev libgmp3-dev libgmp10-doc opencl-headers -y | |
# Run hashcat -I to verify hardware | |
# |
#!/bin/bash | |
# store the current dir | |
CUR_DIR=$(pwd) | |
# Let the person running the script know what's going on. | |
echo "Pulling in latest changes for all repositories.." | |
# Find all git repositories and update it to the master latest revision | |
for i in $(find . -name ".git" | cut -c 3-); do |
#!/bin/bash | |
HOST=$1 | |
shift | |
for ARG in "$@" | |
do | |
nmap -Pn --host-timeout 100 --max-retries 0 -p $ARG $HOST | |
done |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>AnalogSea</title> | |
<meta name="description" content="Sign up for AnalogSea."> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.2.0/normalize.min.css"> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<img class="logo" src="https://tf-assets-prod.s3.amazonaws.com/tf-curric/WEB-DEV-001/2.5.2_challenge_signup_form/logo.png" alt="AnalogSea" /> |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>AnalogSea</title> | |
<meta name="description" content="Sign up for AnalogSea."> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.2.0/normalize.min.css"> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<img class="logo" src="https://tf-assets-prod.s3.amazonaws.com/tf-curric/WEB-DEV-001/2.5.2_challenge_signup_form/logo.png" alt="AnalogSea" /> |