mirror of
https://codeberg.org/h3xx/you-dont-need-pihole.git
synced 2024-08-14 20:27:01 +00:00
Compare commits
4 commits
dc38b1a376
...
85d9a5feca
Author | SHA1 | Date | |
---|---|---|---|
|
85d9a5feca | ||
|
7d9188c6fa | ||
|
133b271208 | ||
|
41ba29d218 |
1 changed files with 25 additions and 17 deletions
|
@ -13,10 +13,10 @@
|
|||
# You may NOT use this software for commercial purposes.
|
||||
###############################################################################
|
||||
|
||||
use strict;
|
||||
use 5.012;
|
||||
use warnings;
|
||||
|
||||
use Getopt::Long qw/ GetOptions :config no_ignore_case /;
|
||||
use Getopt::Long qw/ GetOptions :config bundling no_getopt_compat no_ignore_case /;
|
||||
use FindBin qw//;
|
||||
|
||||
my %domains;
|
||||
|
@ -25,16 +25,18 @@ my $skip = 0;
|
|||
my $removed_allowed = 0;
|
||||
sub add_domain_list {
|
||||
my $file = shift;
|
||||
foreach my $line (&read_stripped($file)) {
|
||||
foreach my $line (read_stripped($file)) {
|
||||
my $domain = lc $line;
|
||||
++$dupes if defined $domains{$domain};
|
||||
if (defined $domains{$domain}) {
|
||||
++$dupes;
|
||||
}
|
||||
$domains{$domain} = 1;
|
||||
}
|
||||
}
|
||||
|
||||
sub add_host_file {
|
||||
my $file = shift;
|
||||
foreach my $line (&read_stripped($file)) {
|
||||
foreach my $line (read_stripped($file)) {
|
||||
my @parts = split /\s+/, $line;
|
||||
die "Malformed line in $file: $line; @parts"
|
||||
unless @parts > 1;
|
||||
|
@ -47,7 +49,9 @@ sub add_host_file {
|
|||
next;
|
||||
}
|
||||
my $domain = lc $parts[1];
|
||||
++$dupes if defined $domains{$domain};
|
||||
if (defined $domains{$domain}) {
|
||||
++$dupes;
|
||||
}
|
||||
$domains{$domain} = 1;
|
||||
}
|
||||
}
|
||||
|
@ -71,11 +75,9 @@ MAIN: {
|
|||
my $block_ip = '0.0.0.0 ::';
|
||||
my $workdir = $FindBin::RealBin;
|
||||
|
||||
unless (&GetOptions(
|
||||
'out=s' => \$out,
|
||||
'O=s' => \$out,
|
||||
'i=s' => \$block_ip,
|
||||
'block-ip=s' => \$block_ip,
|
||||
unless (GetOptions(
|
||||
'out|O=s' => \$out,
|
||||
'block-ip|i=s' => \$block_ip,
|
||||
)) {
|
||||
exit 2;
|
||||
}
|
||||
|
@ -85,16 +87,16 @@ MAIN: {
|
|||
my @allow_lists = glob "$workdir/allowlists/*.domains";
|
||||
|
||||
foreach my $listfile (@domain_lists) {
|
||||
&add_domain_list($listfile);
|
||||
add_domain_list($listfile);
|
||||
}
|
||||
foreach my $hostfile (@hosts_lists) {
|
||||
&add_host_file($hostfile);
|
||||
add_host_file($hostfile);
|
||||
}
|
||||
|
||||
# Apply allowlists
|
||||
my @allow_domains;
|
||||
foreach my $allowlist (@allow_lists) {
|
||||
push @allow_domains, &read_stripped($allowlist);
|
||||
push @allow_domains, read_stripped($allowlist);
|
||||
}
|
||||
my $before = %domains;
|
||||
delete %domains{@allow_domains};
|
||||
|
@ -119,7 +121,13 @@ MAIN: {
|
|||
printf STDERR "%d domains written to %s from\n", $written, $out // 'STDOUT';
|
||||
printf STDERR " - %d .domains files\n", (scalar @domain_lists);
|
||||
printf STDERR " - %d .hosts files\n", (scalar @hosts_lists);
|
||||
printf STDERR "(%d duplicates)\n", $dupes if $dupes;
|
||||
printf STDERR "(%d domains removed via allowlist)\n", $removed_allowed if $removed_allowed;
|
||||
printf STDERR "(%d skipped)\n", $skip if $skip;
|
||||
if ($dupes) {
|
||||
say STDERR "($dupes duplicates)";
|
||||
}
|
||||
if ($removed_allowed) {
|
||||
say STDERR "($removed_allowed domains removed via allowlist)";
|
||||
}
|
||||
if ($skip) {
|
||||
say STDERR "($skip skipped)";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue