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 $secret_key = ''; extract($_GET); $flag = ''; if (is..
Decoded Output download
<?php
$secret_key = '';
extract($_GET);
$flag = '';
if (isset($password)) {
if ($password === $secret_key) {
echo "<p>Correct!</p>";
echo "<p>Flag: "." $flag</p>";
} else {
echo "<p>Incorrect!</p>";
}
}
?>
Did this file decode correctly?
Original Code
<?php
$secret_key = '';
extract($_GET);
$flag = '';
if (isset($password)) {
if ($password === $secret_key) {
echo "<p>Correct!</p>";
echo "<p>Flag: "." $flag</p>";
} else {
echo "<p>Incorrect!</p>";
}
}
?>
Function Calls
extract | 1 |
Stats
MD5 | 442c3ec7d184e3f471a00dc616e868bd |
Eval Count | 0 |
Decode Time | 122 ms |