Thursday, 25 September 2014

Generate all combinations for Brute Force Attack


The below snippet lets you generate different combinations of your input.


public class className {
    private StringBuilder output = new StringBuilder();
    private final String inputstring;
    public Combine( final String str ){
        inputstring = str;
        System.out.println("The input string  is  : " + inputstring);
    }
    
    
    public static void main (String args[])
    {
      Combine combo= new Combine("123#!@");
        System.out.println("");
        System.out.println("");
        System.out.println("All possible combinations are :  ");
        System.out.println("");
        System.out.println("");
        combo.combine();
    }
    
    public void combine()
    {
      combine(0);
    }
    
    private void combine(int start)
    {
      for( int i = start; i < inputstring.length(); ++i )
      {
            output.append( inputstring.charAt(i) );
            System.out.println( output );
            if ( i < inputstring.length() )
            combine( i + 1);
            output.setLength( output.length() - 1 );
        }
    }
}

Saturday, 3 May 2014

Make keyboard lights into disco lights


Note|  Text in GREEN can be modified or mentioned important.





The snippet below lets your keyboard to glow like disco lights.

1| Open Notepad++
2| Paste the below snippet in it.
3| Save the file "anyname.vbs"
4| Run it [Open the saved .vbs file]


Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop

5| To stop the script execution, open Task Manager.
6| Terminate/shutdown wscript.exe under Process


Note| Adjust wait [wscript.sleep 100] for delay

Saturday, 26 April 2014

No Hacking | HackerTyper


HackerTyper

HackerTyper lets you disguise as a hacker; but, obviously you are not. You can find the code in GitHub


1| Open http://hackertyper.net/ in your web browser
2| Press Alt key 3 times
3| The text, ACCESS GRANTED will be displayed on middle of the page


http://www.hackertyper.com/
http://hackertyper.net/