Google Search Easter Eggs!

We use Google search to find things we need all the time. But this search bar is a lot of fun with specific keywords. Some of them are listed below.

Update 18 May, 2012: Google revealed its newest easter egg or Google’s new game “Zerg Rush”

HACKERTEST.NET | Level 2: Prompt!

Level 2 is still as simple as level1. You just need to understand it how it works and where to look. When the page loads a prompt box opens up and asks for a password. So you can simply open up the source code using ctrl+U and find where this source code is.

You will see something like this. This pass variable takes the value that is entered by the user and compares it with the string l3l.

<script language="JavaScript" type="text/javascript">
  var pass, i;
  pass=prompt("Please enter password!","");
  if (pass=="l3l") {
    window.location.href="http://www.hackertest.net/"+pass+".htm";
    i=4;
  }
</script>

For those of you who are still wondering the answer is l3l.

Good luck!!!

Arithmetic Search Easter egg | Google

Arithmetic Search Easter Egg are search easter eggs that just appear when you try some mathematical calculations. Its more of like a humorous calculator which accepts units of measurement like beard-second (5 nm), Potrzebie (2.2633mm), donkey-power (250.033167 watts), speed of light (299 792 458 m/s) etc… The amazing thing about these units is that these all can also be used in real calculations and form part of equations. Continue reading “Arithmetic Search Easter egg | Google”

HACKERTEST.NET | Level 1: Log In

Level 1 of hackertest.net is really simple if you have a little knowledge of HTML and javascript. With that you can always try googling the answers. But the key to hacking is learning.

The mission does not gives any kind of intro or hint, no worries. We do always have the usual steps to start from. First thing to hacking is understanding HTML (source code), the language of the web page, it gives a lot vital information that will make an hack easy.

Continue reading “HACKERTEST.NET | Level 1: Log In”