-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopener.sh
More file actions
45 lines (32 loc) · 1.22 KB
/
opener.sh
File metadata and controls
45 lines (32 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
apt install -y figlet >/dev/null 2>&1
figlet opener V.0.1
echo ""
RED="\e[31m"
GREEN="\e[32m"
BLUE="\e[34m"
YELLOW="\e[33m"
CYAN="\e[36m"
RESET="\e[0m"
if [ -z "$1" ]; then
echo -e "${RED}Usage:${RESET} $0 target.com"
exit 1
fi
TARGET=$1
echo -e "${GREEN}[+] Target:${RESET} ${CYAN}$TARGET${RESET}"
echo -e "${GREEN}[+] Opening recon searches...${RESET}\n"
echo -e "${BLUE}[*] Opening Shodan (SSL search)${RESET}"
xdg-open "https://www.shodan.io/search?query=ssl%3A${TARGET}%20200"
echo -e "${BLUE}[*] Opening Censys${RESET}"
xdg-open "https://search.censys.io/search?resource=hosts&q=${TARGET}"
echo -e "${BLUE}[*] Opening crt.sh${RESET}"
xdg-open "https://crt.sh/?q=%25.${TARGET}"
echo -e "${BLUE}[*] Opening Wayback Machine${RESET}"
xdg-open "https://web.archive.org/cdx/search/cdx?url=*.${TARGET}/*&output=text&fl=original&collapse=urlkey"
echo -e "${BLUE}[*] Opening c99 Subdomain Finder${RESET}"
xdg-open "https://subdomainfinder.c99.nl/"
echo -e "${BLUE}[*] Opening RapidDNS${RESET}"
xdg-open "https://rapiddns.io/subdomain/${TARGET}"
echo -e "${BLUE}[*] Opening SecurityTrails${RESET}"
xdg-open "https://securitytrails.com/domain/${TARGET}"
echo -e "\n${GREEN}[+] All recon tabs opened successfully.${RESET}"