Jump to content

[HELP] Decode \x61s\ ...


qwasyx

Recommended Posts

The php form not works :(

 

<html>
<body>

<form action="index.php" method="post">
Code: <input type="text" name="code" />
<input type="submit" />
</form>

</body>
</html>
<?php
echo	printf("%s" ,$_POST["code"]);
?>

 

and

 

<form method="post" enctype="multipart/form-data">
<textarea style="width:640;height:200" name="tobase"><?= stripslashes($_POST['tobase']) ?></textarea>
  <br><br>  <input name="base64" type="submit" id="button" value="Decode" />
</div>
</form>
</div>
<?php

if(isset($_POST['base64']))
{
$result=$_POST['tobase'];

$content = highlight_string(stripcslashes(($result)));
echo $content 
}
?>

 

not works :(

Link to comment
https://forums.phpfreaks.com/topic/210646-help-decode-x61s/#findComment-1099104
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.