Monthly Archive: December 2011

Dec 26

Access Registered-user only content without registering

Going through the searches and links on the email, I came across this fantastic way of viewing content that requires registration, without actually registering for these sites. Trick I use is to visit BugMeNot.com and in the search box, enter the website you want to view content from, for example NyTimes. This will then give you …

Continue reading »

Dec 26

How to make a keylogger with Visual C++

Intercepting keystrokes Hooking Key Events There are different ways to catch the keys as they are being typed, but one of the most efficient is to monitor system events for key events. This is done with a hook, which forces Windows to call your own functions when a certain type of event happens. First, let’s …

Continue reading »

Dec 26

How to hack a computer with IP address

There are plenty of papers out there that go into how to obtain an IP Address from the preferred mark of your choice. So I’m not going to go into that subject. Alright so say we got the targets IP Address finally. What do we do with this IP Address. Well first ping the IP …

Continue reading »

Dec 26

How to create A Huge File

You can create a file of any size using nothing more than what’s supplied with Windows. Start by converting the desired file size into hexadecimal notation. You can use the Windows Calculator in Scientific mode do to this. Suppose you want a file of 1 million bytes. Enter 1000000 in the calculator and click on …

Continue reading »

Dec 25

Learn Batch file programming completely

Batch file programming is nothing but the Windows version of Unix ShellProgramming. Let’s start by understanding what happens when we give aDOS command. DOS is basically a file called command.comIt is this file (command.com) which handles all DOS commands that yougive at the DOS prompt—such as COPY, DIR, DEL etc. Thesecommands are built in with …

Continue reading »

Dec 20

Mouse Programming in Turbo C++

Mouse can be used in text mode as well as in graphics mode. Usually it is used in graphics mode. Hence we must first change over to graphics mode. In our program the function initgraph() is responsible for switching the mode from text to graphics. DETECT is a macro defined in ‘graphics.h’. It requests initgraph() …

Continue reading »