Jump to content

Recommended Posts

Posted

i have created a script used to break base64 pass into into SHA1::

 

hope it helps

 

<style type="text/css">
<!--
.style3 {font-size: 24px}
.style1 {color: #CC0000}
-->
</style>
<?
echo("<title>L2J Pass Break</title>");
$pass = $_POST['decode']; 
$unpass3 = base64_decode($pass);


$array = unpack("H*", $unpass3);
foreach ($array as $key => $value)
$unpass2 = $array[1];


echo("<span class=style1><b><u>Decoding Password</u></b></span>");

echo("<br><b>Base 64:</b> $pass<br>");
echo("<b>Unpacked:</b> $unpass3<br>");
echo("<br><b>SHA1:</b> $unpass2<br>");
?>
<form name="form1" method="post" action="">
  <div align="center">
    <input type="text" name="decode">
    <input type="submit" value="Decode">
  </div>
</form>
<br><br><br><center><i>Created by Tasha</center></i>


Posted

Just a question, what encryption does l2j use?

If you say about the password of users then it is encored on MD5

Posted

The encryption is one-way, it's irreversible... and that's because there is no SHA1 decode algorithm...

Thought so.Just like md5 ^^

Posted

Thought so.Just like md5 ^^

 

Ehm....MD5 CAN be reversed...done it a million times...that's why forum accounts are getting hacked all the time.And by forum,I speak in general,not this specific one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...