Which is the Best Mail Server

May 29, 2009 at 12:51 pm (Polls)

Permalink Leave a Comment

Vote Best Programming Language

May 29, 2009 at 12:43 pm (Polls)

Permalink Leave a Comment

Google Query Hacks

May 29, 2009 at 12:03 pm (HAcks)

Try all these queries in google.com.

Shocking………………

Query 1
——–

Query 2
——–

Query 3
——–

Query 4
——–

Query 5
——–

The videos in youtube with title “Hack google”, those videos are blocked, but the videos says “Hack other websites” they are not blocked.

These details are provided from various website from internet.

And these details are for only educational prupose.

Permalink Leave a Comment

Want to see the values in the password field

May 29, 2009 at 11:18 am (HAcks)

It was impossible to view the hidden password under asterisks in Firefox? Well I was wrong. Turns out that there’s a way to do it. No software required, the result is immediate and it is shockingly easy to reveal the hidden password.

Continue reading to learn how to do it.

Here’s an example. As you can see, I have my GMail username and password saved in my Firefox browser.

If I’ve forgotten the master password, I can easily view the contents of password fields by simply entering a line of javascript below at the address bar and hit enter.

javascript:(function(){var s,F,j,f,i; s = “”; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == “password”) s += f[i].value + “\n”; } } if (s) alert(“Passwords in forms on this page:\n\n” + s); else alert(“There are no passwords in forms on this page.”);})();

A dialog box will prompt and your password is shown!

This method works on Internet Explorer, Firefox, Netscape and Opera. When I get to know about this method, I felt that even Firefox master password is rather useless. Turning off javascript will protect you from this hack but then you might face problems viewing websites that uses javascript.

Simple rule to protect your password. Do NOT save your password if you’re using a shared computer. If you’re using a public computer, make sure you clear the cache and private data just in case you accidentally saved your password.

Permalink Leave a Comment

FileZilla Password Decrypt

May 29, 2009 at 11:09 am (HAcks)

Every now and then I get someone asking me for an ftp password. Mine have always been storedEvery now and then I get someone asking me for an ftp password. Mine have always been stored in FileZilla. I don’t know them by heart. There is no problem with this except that FileZilla encrypts them. Thank God decrypting FileZilla 2 passwords is easy. Here is some as2 code to accomplish it: in FileZilla. I don’t know them by heart. There is no problem with this except that FileZilla encrypts them. Thank God decrypting FileZilla 2 passwords is easy. Here is some as2 code to accomplish it:

function decrypt(numeric:String):String {
  var decrypted:String = "";
  var encrypted:String = "";
  var secret:String = "FILEZILLA1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  if (numeric.length % 3 == 0) {
    for (var i:Number = 0; i < numeric.length; i += 3) {
      var charCode:Number = parseInt(numeric.substr(i, 3), 10);
      encrypted += String.fromCharCode(charCode);
    }
    for (var i:Number = 0; i < encrypted.length; i++) {
      var secretCharIndex:Number = (encrypted.length + i) % secret.length;
      var numA:Number = encrypted.charCodeAt(i);
      var numB:Number = secret.charCodeAt(secretCharIndex);
      decrypted += String.fromCharCode(numA ^ numB);
    }
  } else {
    decrypted = "ERROR: Length must be multiple of 3.";
  }
  return decrypted;
}

function encrypt(decrypted:String):String {
  var numeric:String = "";
  var encrypted:String = "";
  var secret:String = "FILEZILLA1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  for (var i:Number = 0; i < decrypted.length; i++) {
    var secretCharIndex:Number = (decrypted.length + i) % secret.length;
    var numA:Number = decrypted.charCodeAt(i);
    var numB:Number = secret.charCodeAt(secretCharIndex);
    var charCode:Number = numA ^ numB;
    encrypted += String.fromCharCode(charCode);
    var paddedcharCode:String = charCode.toString(10);
    while (paddedcharCode.length < 3) {
      paddedcharCode = "0" + paddedcharCode;
    }
    numeric += paddedcharCode;
  }
  return numeric;
}

For live example : http://www.crydust.be/blog/2007/11/04/filezilla-decrypt/

Permalink Leave a Comment

Hello world!

May 29, 2009 at 10:56 am (General)

Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!

Permalink Leave a Comment