-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffliner.pl
374 lines (277 loc) · 9.46 KB
/
offliner.pl
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
#!/usr/bin/env perl
use strict;
use warnings;
use File::Path qw(make_path);
use File::Spec;
use HTTP::Tiny;
use HTML::LinkExtor;
use LWP::UserAgent;
use URI;
use File::Basename;
use Getopt::Long;
use Time::Piece;
use threads;
use Thread::Queue;
use IO::Socket::SSL; # Necessario per supporto HTTPS
use Mozilla::CA;
use Encode qw(decode encode);
use HTML::HeadParser;
$0 = "offliner";
# Lista dei moduli necessari
my @modules = qw(
HTTP::Tiny
HTML::LinkExtor
URI
File::Path
File::Basename
Getopt::Long
LWP::UserAgent
IO::Socket::SSL
Mozilla::CA
);
# Funzione per installare i moduli mancanti
sub install_module {
my ($module) = @_;
eval "use $module";
if ($@) {
print "[+] Modulo $module non trovato. Tentativo di installazione...\n";
system("cpan $module") == 0 or die "[-] Errore durante l'installazione di $module. Verifica i permessi o la connessione internet.\n";
eval "use $module";
if ($@) {
die "[-] Impossibile installare il modulo $module. Assicurati di avere accesso a internet e permessi di scrittura.\n";
}
}
}
# Installazione automatica dei moduli richiesti
foreach my $module (@modules) {
install_module($module);
}
# Variabili di configurazione
my $url;
my $output_dir = "";
my $user_agent = 'Mozilla/5.0 (compatible; OffLinerBot/1.0)';
my $max_depth = 50;
my $max_threads = 10; # Limita il numero di thread
my $max_retries = 3; # Numero massimo di tentativi per ogni richiesta HTTP
# File di log per registrare gli errori
my $log_file = 'download_log.txt';
# Parsing degli argomenti da riga di comando
GetOptions(
'url=s' => \$url,
'user-agent=s' => \$user_agent,
'max-depth=i' => \$max_depth,
'max-threads=i' => \$max_threads,
'output-dir=s' => \$output_dir,
) or die "Uso: $0 --url URL [--max-depth N] [--max-threads N]\n";
die "Devi specificare un URL con --url\n" unless $url;
# Ottieni il titolo del sito
my $title = get_site_title($url);
my $timestamp = localtime->strftime('%Y-%m-%d_%H-%M-%S');
$output_dir = File::Spec->catfile($output_dir,sanitize_filename("${title}_${timestamp}"));
print($output_dir);
eval {
# Crea la directory di output
make_path($output_dir) unless -d $output_dir;
};
if ($@) {
die "Errore nella creazione della directory: $@\n";
} else {
print "Directory creata con successo: $output_dir\n";
}
# Hash per tracciare i link visitati
my %visited;
# Coda per i link da scaricare
my $queue = Thread::Queue->new();
# Avvio dei thread
my @threads;
for (1..$max_threads) {
push @threads, threads->create(\&worker_thread);
}
# Aggiungi il primo URL alla coda
$queue->enqueue([$url, 0]);
# Funzione per il thread worker
sub worker_thread {
while (my $job = $queue->dequeue()) {
my ($url, $depth) = @$job;
download_page($url, $depth);
}
}
# Funzione per ottenere il titolo del sito
sub get_site_title {
my ($url) = @_;
my $uri = URI->new($url);
return $uri->host;
}
# Funzione per effettuare il download di un URL con retry in caso di errori
sub fetch_url {
my ($url) = @_;
my $response;
my $retries = 0;
# Inizializzazione corretta di $ua
my $ua = LWP::UserAgent->new;
$ua->ssl_opts(verify_hostname => 1); # Verifica del nome host (opzionale)
$ua->timeout(10);
$ua->agent($user_agent); # Impostazione dell'user-agent
while ($retries < $max_retries) {
binmode STDOUT, ':encoding(UTF-8)';
print "[DEBUG] Tentativo di scaricare $url\n"; # Debug per tracciare i tentativi
$response = $ua->get($url); # Tentativo di scaricare il contenuto
if ($response->is_success) {
binmode STDOUT, ':encoding(UTF-8)';
print "[DEBUG] Scaricato con successo: $url\n"; # Debug per tracciare i successi
return $response;
} else {
$retries++;
binmode STDOUT, ':encoding(UTF-8)';
print "[DEBUG] Errore scaricamento $url: " . $response->status_line . " - Tentativo $retries/$max_retries\n"; # Debug per tracciare gli errori
sleep 2; # Pausa tra i tentativi
}
}
log_error("Impossibile scaricare $url dopo $max_retries tentativi.");
return undef; # Ritorna undef se il download fallisce
}
# Funzione per determinare la codifica
sub get_encoding {
my ($response) = @_;
my $content_type = $response->header('Content-Type');
if ($content_type && $content_type =~ /charset=([^\s;]+)/) {
return $1;
}
my $parser = HTML::HeadParser->new;
$parser->parse($response->content);
return $parser->header('Content-Type') =~ /charset=([^\s;]+)/ ? $1 : 'ISO-8859-1';
}
# Funzione per scaricare e analizzare una pagina
sub download_page {
my ($url, $depth) = @_;
return if $depth > $max_depth;
return if $visited{$url};
print "[+] Scaricamento: $url\n";
$visited{$url} = 1;
# Recupera il contenuto della pagina
my $response = fetch_url($url);
unless (defined $response && $response->is_success && defined $response->decoded_content) {
print "[DEBUG] Contenuto non definito per l'URL: $url, skipping...\n";
return;
}
# Salvataggio della pagina
my $content = $response->decoded_content;
my $path = uri_to_path($url);
my $full_path = "$output_dir/$path";
# Verifica che la directory di destinazione esista
unless (-d dirname($full_path)) {
print "[DEBUG] Creazione della directory " . dirname($full_path) . "\n";
make_path(dirname($full_path));
}
# Scrivi il contenuto del file solo se è definito
eval {
#open my $fh, '>', $full_path or die "Impossibile scrivere $full_path: $!";
#print $fh $content;
#close $fh;
my $encoding = get_encoding($response);
my $content = decode($encoding, $response->content);
open my $fh, '>:encoding('.$encoding.')', $full_path or die "Impossibile aprire $full_path: $!";
print $fh $content;
close $fh;
};
if ($@) {
print "[DEBUG] Errore durante il salvataggio di $url: $@\n";
return;
}
my $parser = HTML::LinkExtor->new(sub {
my ($tag, %attr) = @_;
# Lista di tag da controllare
return unless $tag =~ /^(a|img|link|script|iframe|video|audio|source|object|embed|meta|track|form)$/;
# Estrazione link dai vari attributi
my $link = $attr{href} || $attr{src} || $attr{data} || $attr{action} || $attr{poster} || ($tag eq 'meta' ? $attr{content} : undef);
if ($link) {
# Gestione di meta-refresh
if ($tag eq 'meta' && $link =~ /URL=([^;]+)/i) {
$link = $1;
}
my $abs_link = URI->new_abs($link, $url)->as_string;
# Aggiungi alla coda solo link validi HTTP o HTTPS
if ($abs_link =~ /^https?:\/\//) {
$queue->enqueue([$abs_link, $depth + 1]);
}
}
});
$parser->parse($content);
}
# Funzione per registrare gli errori nel file di log
sub log_error {
my ($message) = @_;
open my $log_fh, '>>', $log_file or die "Impossibile aprire il file di log: $!";
print $log_fh "$message\n";
close $log_fh;
}
# Converte l'URL in un percorso di file
sub uri_to_path {
my ($uri) = @_;
$uri =~ s/^https?:\/\/|\/+$//g;
$uri =~ s/[\:\?\=\&]/_/g;
return "$uri.html";
}
# Funzione per sanificare il nome della directory (rimuove i caratteri speciali)
sub sanitize_filename {
my ($filename) = @_;
$filename =~ s/[^a-zA-Z0-9_-]/_/g; # Sostituisce caratteri non alfanumerici con _
return $filename;
}
# Attendi che tutti i thread completino
$_->join() for @threads;
print "[+] Download completato. I file sono in $output_dir\n";
__END__
=head1 NAME
OffLiner - Scaricatore di siti web offline
=head1 SYNOPSIS
perl offliner.pl --url https://example.com [--max-depth N] [--max-threads N]
=head1 DESCRIPTION
OffLiner e' un'utility per scaricare siti web e navigarli offline, mantenendo la struttura e i link.
=head1 OPTIONS
=over 8
=item B<--url>
URL del sito da scaricare. Questo parametro e' obbligatorio.
=item B<--user-agent>
User-Agent personalizzato da usare durante il download. Default: 'Mozilla/5.0 (compatible; OffLinerBot/1.0)'.
=item B<--max-depth>
Profondita' massima di link da seguire. Default: 50.
=item B<--max-threads>
Numero massimo di thread per il download parallelo. Default: 10.
=back
=head1 CONFIGURATION
=over 8
=item B<$user_agent>
Definisce l'user-agent per le richieste HTTP. Puo' essere sovrascritto tramite l'opzione --user-agent.
=item B<$max_retries>
Numero massimo di tentativi per ogni richiesta HTTP. Default: 3.
=item B<$log_file>
Nome del file di log per registrare gli errori. Default: 'download_log.txt'.
=back
=head1 FUNCTIONS
=head2 install_module
install_module($module)
Funzione per installare i moduli Perl mancanti.
=head2 get_site_title
get_site_title($url)
Ottiene il titolo della pagina web data l'URL.
=head2 fetch_url
fetch_url($url)
Effettua il download di un URL con retry in caso di errori.
=head2 download_page
download_page($url, $depth)
Scarica e analizza una pagina web, seguendo i link trovati fino a una certa profondita'.
=head2 log_error
log_error($message)
Registra un messaggio di errore nel file di log.
=head2 uri_to_path
uri_to_path($uri)
Converte un URI in un percorso di file valido.
=head2 sanitize_filename
sanitize_filename($filename)
Sanifica il nome della directory rimuovendo i caratteri speciali.
=head1 AUTHOR
OffLiner Team
=head1 LICENSE
Licenza BSD.
=cut