-
Notifications
You must be signed in to change notification settings - Fork 0
/
skid.sh
executable file
·62 lines (41 loc) · 1.4 KB
/
skid.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
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/bash
# For the skids by a skid(?) lol
echo "
@@@@@@ @@@ @@@ @@@ @@@@@@@ @@@@@@ @@@ @@@
@@@@@@@ @@@ @@@ @@@ @@@@@@@@ @@@@@@@ @@@ @@@
!@@ @@! !@@ @@! @@! @@@ !@@ @@! @@@
!@! !@! @!! !@! !@! @!@ !@! !@! @!@
!!@@!! @!@@!@! !!@ @!@ !@! !!@@!! @!@!@!@!
!!@!!! !!@!!! !!! !@! !!! !!@!!! !!!@!!!!
!:! !!: :!! !!: !!: !!! !:! !!: !!!
!:! :!: !:! :!: :!: !:! :!: !:! :!: !:!
:::: :: :: ::: :: :::: :: ::: :::: :: :: :::
:: : : : ::: : :: : : ::: :: : : : : :
-- @debxrshi
"
# usage
if [ "$#" -eq 0 ] || [ -z "$1" ]
then
echo "usage: skid.sh target.com"
exit 1
else
target=$1
fi
if [ -n "$target" ]
then
echo -e "...Executing tools...\n"
# initial probing
echo "[+] Probing target with httpx"
httpx -u "$target" -fr -sc -title -td -server -retries 3 -fc 404 -lc -t 500
# subfinder
echo -e "\n[+] Hunting subdomains with subfinder \n\n"
subfinder -d "$target" -o "${target}_subs"
# probing subs
echo -e "\n Probing subdomains with httpx\n\n"
httpx -l "${target}_subs" -fr -sc -title -td -server -retries 3 -fc 404 -lc -t 500 -o "${target}_subs_httpx"
# dnsx
# katana
# uro
# xsstrike
# dalfox
fi