http://jentyxddh2rf47gd3e43kuebyn2xsv6h72gzh46oe4rxyovvm7xe5ead.onion/src/sysadm/file/genblock.html
It also reduces domains to avoid unnecessary duplication. 48 49 $program_name can read from STDIN, or one or more files. 50 EOT 51 } 52 53 # For more details, see: 54 # RFC1123 section 2-1 55 # RFC1034 section 3-1 56 # RFC2181 section 11 57 sub is_domain { 58 my $potential_domain = shift or return; 59 60 if ( 61 $potential_domain =~ / 62 \b 63 64 # BEGIN LEAF GROUP 65 ( 66 67 # Lookahead ensures that the next domain leaf includes 1-63 allowed 68 # characters 69 (?= [a-z 0-9 -_]{1,63} \.) 70 71 # Matches...