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.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and 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..