qwasyx Posted August 13, 2010 Share Posted August 13, 2010 I need to know how to decode it <?php echo "\x61s\144as\x61s\x64"; ?> ---------------------------------- This is what was encoded: <?php echo "asdasasd"; ?> Quote Link to comment https://forums.phpfreaks.com/topic/210646-help-decode-x61s/ Share on other sites More sharing options...
AbraCadaver Posted August 13, 2010 Share Posted August 13, 2010 Quote I need to know how to decode it <?php echo "\x61s\144as\x61s\x64"; ?> ---------------------------------- This is what was encoded: <?php echo "asdasasd"; ?> printf("%s" ,"\x61s\144as\x61s\x64"); Quote Link to comment https://forums.phpfreaks.com/topic/210646-help-decode-x61s/#findComment-1098966 Share on other sites More sharing options...
qwasyx Posted August 14, 2010 Author Share Posted August 14, 2010 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 Quote Link to comment https://forums.phpfreaks.com/topic/210646-help-decode-x61s/#findComment-1099104 Share on other sites More sharing options...
AbraCadaver Posted August 14, 2010 Share Posted August 14, 2010 I have no earthly idea of what you're trying to do. Quote Link to comment https://forums.phpfreaks.com/topic/210646-help-decode-x61s/#findComment-1099206 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.