Crack Password Hashed on MySQL

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
hello,
I made a Program for Crack Password hashed on MySQL with C#
but I have a Problem :|
this password Save on Mysql:
<span class="x_Apple-style-span" style="color:#000000; font-family:sans-serif; font-size:13px; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; line-height:normal; orphans:2; text-align:left; text-indent:0px; text-transform:none; white-space:normal; widows:2; word-spacing:0px; background-color:#e5e5e5 3a9fb1381f4a6c0ec1a1f97a74bccea69aac8900
and i made this program for crack it:
<pre class="prettyprint static string GetMd5Hash(MD5 md5Hash, string input)
{

// Convert the input string to a byte array and compute the hash.
byte[] data = md5Hash.ComputeHash(Encoding.UTF8.GetBytes(input));

// Create a new Stringbuilder to collect the bytes
// and create a string.
StringBuilder sBuilder = new StringBuilder();

// Loop through each byte of the hashed data
// and format each one as a hexadecimal string.
for (int i = 0; i < data.Length; i++)
{
sBuilder.Append(data.ToString("x2"));
}

// Return the hexadecimal string.
return sBuilder.ToString();
}[/code]
and for get pass:
<pre class="prettyprint private void btn_Click(object sender, EventArgs e)
{

string source = txbPass.Text;
using (MD5 md5Hash = MD5.Create())
{
string hash = GetMd5Hash(md5Hash, source);

textBox1.Text = (hash);

}


}[/code]
but dose not work :|
Note : 3a9fb1381f4a6c0ec1a1f97a74bccea69aac8900 = 123456
but my Program this hash can Crack:
e10adc3949ba59abbe56e057f20f883e
Note : e10adc3949ba59abbe56e057f20f883e = 123456
so, how can i this password hasesh (3a9fb1381f4a6c0ec1a1f97a74bccea69aac8900) cracked with my Program ?
pls help, its so nessery
sry for bad typ :(
<br/>

<span class="x_Apple-style-span" style="color:#000000; font-family:sans-serif; font-size:13px; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; line-height:normal; orphans:2; text-align:left; text-indent:0px; text-transform:none; white-space:normal; widows:2; word-spacing:0px; background-color:#e5e5e5 <br/>
<br/>
<br/>
<hr class="sig 001001110101110

View the full article
 
Back
Top