-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdescargarweb.sh
30 lines (27 loc) · 1.07 KB
/
descargarweb.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
#!/bin/bash
# Simple script para descargar paginas web completas
Normal=$(echo 'printf' '\033[39m')
Verde=$(echo 'printf' '\033[32m')
Blanco=$(echo 'printf' '\033[0m')
$Verde
cat << "INFO"
_ __ __ _
| | \ \ / / | |
__| | ___ ___ ___ __ _ _ __ __ _ __ _ _ _\ \ /\ / /__| |__
/ _` |/ _ \/ __|/ __/ _` | '__/ _` |/ _` | '__\ \/ \/ / _ \ '_ \
| (_| | __/\__ \ (_| (_| | | | (_| | (_| | | \ /\ / __/ |_) |
\__,_|\___||___/\___\__,_|_| \__, |\__,_|_| \/ \/ \___|_.__/ v 1.0
__/ |
|___/
INFO
$Blanco
echo " www.hackingyseguridad.com"
echo
$Blanco
if [ -z "$1" ]; then
echo "Descarga pagina web completa: "
echo "Uso: sh $0 <URL>"
exit 0
fi
echo
wget --limit-rate=100k --no-clobber --convert-links --random-wait -r -p -E -e robots=off -U mozilla $1 --no-check-certificate