Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php error_reporting(0); echo '<b>F-Automatical v7 [Sending test].<b><br><br><form meth..

Decoded Output download

<b>F-Automatical v7 [Sending test].<b><br><br><form method="post">
<input type="text" placeholder="email" name="email" value="None">
<input type="text" placeholder="ID" name="orderid" value="None">
<input type="submit" value="Send">
</form>
<br>

Did this file decode correctly?

Original Code

<?php

error_reporting(0);

echo '<b>F-Automatical v7 [Sending test].<b><br><br><form method="post">
<input type="text" placeholder="email" name="email" value="'.$_POST['email'].'">
<input type="text" placeholder="ID" name="orderid" value="'.$_POST['orderid'].'">
<input type="submit" value="Send">
</form>
<br>';

if (!empty($_POST['email'])) {
	if (!empty($_POST['email']) && trim($_POST['orderid']) != '') {
		$rand = trim($_POST['orderid']);
	} else {
		$rand = rand();
	}
	mail(trim($_POST['email']),$_SERVER['HTTP_HOST']." - Sending is Working Fine. [Result] ID: (".$rand.")","F-Automatical v7 [Sending test].");
	echo '<b>Send an report to ['.$_POST['email'].'] - ID: '.$rand.'</b>';
	echo '<!-- <id>'.$rand.'</id> -->';
}

?>

Function Calls

error_reporting 1

Variables

None

Stats

MD5 8bbf442eef915a1f95652d2638687b1f
Eval Count 0
Decode Time 99 ms