-
Notifications
You must be signed in to change notification settings - Fork 826
/
person.sh
executable file
·50 lines (42 loc) · 1.08 KB
/
person.sh
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
46
47
48
49
50
#!/usr/bin/env bash
# by Lee Baird (@discoverscripts)
f_runlocally
clear
f_banner
# Check if Firefox is running
if pgrep firefox > /dev/null; then
echo
echo "[!] Close Firefox before running script."
echo
exit 1
fi
echo -e "${BLUE}RECON${NC}"
echo
echo -n "First name: "
read -r FIRST
# Check for no answer
if [ -z "$FIRST" ]; then
f_error
fi
echo -n "Last name: "
read -r LAST
# Check for no answer
if [ -z "$LAST" ]; then
f_error
fi
xdg-open https://www.411.com/name/"$FIRST"-"$LAST"/ &
sleep 2
URIPATH="https://www.advancedbackgroundchecks.com/search/results.aspx?type=&fn=${FIRST}&mi=&ln=${LAST}&age=&city=&state="
xdg-open "$URIPATH" &
sleep 2
xdg-open https://www.familytreenow.com/search/genealogy/results?first="$FIRST"&last="$LAST" &
sleep 2
xdg-open https://www.peekyou.com/"$FIRST"%5f"$LAST" &
sleep 2
xdg-open https://www.addresses.com/people/"$FIRST"+"$LAST" &
sleep 2
xdg-open https://www.spokeo.com/"$FIRST"-"$LAST" &
sleep 2
xdg-open https://www.usphonebook.com/"$FIRST"-"$LAST"
sleep 2
xdg-open https://www.youtube.com/results?search_query="$FIRST"+"$LAST" &