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 | : 3.144.28.90
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 /
ycm_stop /
libgd-gd-2.2.3 /
netware /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxr-xr-x
Makefile.netware
14.57
KB
-rwxr-xr-x
get_exp.awk
1.02
KB
-rwxr-xr-x
get_ver.awk
777
B
-rwxr-xr-x
keepscreen.c
552
B
-rwxr-xr-x
nwlibc.c
7.52
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : get_exp.awk
#!awk # awk hack to fetch libgd export functions from header # and write them to STDOUT. Here you can get an awk version for Win32: # http://www.gknw.net/development/prgtools/awk.zip # $Id$ # BEGIN { print "# Exports extracted from " ARGV[1] ""; print "# Do not edit this file - it is created by make!"; print "# All your changes will be lost!!"; if (EPREFIX) { print " (" EPREFIX ")"; } print " gdFontGetGiant,"; print " gdFontGetLarge,"; print " gdFontGetMediumBold,"; print " gdFontGetSmall,"; print " gdFontGetTiny,"; print " gdImageSquareToCircle,"; print " gdImageStringFTCircle,"; print " gdImageSharpen,"; } # try to catch the function names from lines like: # BGD_DECLARE(gdImagePtr) function ... # BGD_DECLARE(void *) function ... # /^[ \t]*BGD_DECLARE\([^\)]*\) +(gd[A-Za-z0-9_]+)/ { sub(/^[ \t]*BGD_DECLARE\([^\)]+\) +/, ""); sub(/[ \t]*\(.*$/, ""); # hack to filter gdImageEllipse() since we have no C implementation. if ($0 != "gdImageEllipse") { print " " $0 ","; } }
Close