当前位置:WooYun(白帽子技术社区) >> php >> php图片马绕过图片缩放
-
-
-
-
-
-
-
-
-
-
-
@l4mbda 你保存一个他缩放过的,然后插马。然后再传看他还处理不
-
@pangshenjie 试过了 又重新缩放一次
-
-
-
-
-
-
-
-
-
-
@剁刀
<?php
// The file
$filename = 'shell.png';
// Get new dimensions
list($width, $height) = getimagesize($filename);
$new_width = 32;
$new_height = 32;
// Resample
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefrompng($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
// Output
imagepng($image_p);
?>
自己試一下 記得修改$filename -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
添加新回复
登录 后才能参与评论.