-
Notifications
You must be signed in to change notification settings - Fork 825
/
person.sh
executable file
·46 lines (38 loc) · 1.12 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
#!/usr/bin/env bash
# by Lee Baird (@discoverscripts)
set -euo pipefail
f_runlocally
clear
f_banner
echo -e "${BLUE}RECON${NC}"
echo
echo -n "First name: "
read -r firstName
# Check for no answer
if [ -z $firstName ]; then
f_error
fi
echo -n "Last name: "
read -r lastName
# Check for no answer
if [ -z $lastName ]; then
f_error
fi
xdg-open https://www.411.com/name/$firstName-$lastName/ &
sleep 2
uripath="https://www.advancedbackgroundchecks.com/search/results.aspx?type=&fn=${firstName}&mi=&ln=${lastName}&age=&city=&state="
xdg-open $uripath &
sleep 2
xdg-open https://www.familytreenow.com/search/genealogy/results?first=$firstName&last=$lastName &
sleep 2
xdg-open https://www.linkedin.com/pub/dir/?first=$firstName\&last=$lastName\&search=Search &
sleep 2
xdg-open https://www.peekyou.com/$firstName%5f$lastName &
sleep 2
xdg-open https://www.addresses.com/people/$firstName+$lastName &
sleep 2
xdg-open https://www.spokeo.com/$firstName-$lastName &
sleep 2
xdg-open https://twitter.com/search?q=%22$firstName%20$lastName%22&src=typd &
sleep 2
xdg-open https://www.youtube.com/results?search_query=$firstName+$lastName &