EMAIL SECURITY

Email Hacking and Password Retrievals

NETWORK HACKS

Network Hacking Techniques Exposed!

PC SECURITY

Tips to Protect your PC from being Hacked

VIRUS CREATION

Learn How to Create Viruses on your Own

XP HACKS

Various Tricks and Hacks to Modify XP

What’s Next after Windows Vista?
Sun, 2/12/07 – 4:37 | One Comment
What’s Next after Windows Vista?

It’s Windows Vienna
Windows 7 (formerly codenamed Blackcomb, then Vienna) is a future version of Microsoft Windows. It is expected to be the successor to Windows Vista. Microsoft has confirmed that the planned development time frame …

Modifying the Vista Operating System Boot
Fri, 30/11/07 – 18:04 | No Comment
Modifying the Vista Operating System Boot

You can use several different tricks to shave a few more seconds off the boot time. For example, you can reduce Timeout values and slim down the system to get rid of all the extra …

C Program To Print A String Without Using Any Output Statements
Fri, 30/11/07 – 13:39 | 4 Comments
C Program To Print A String Without Using Any Output Statements

This program can be used to print a string without using any output statements such as printf,puts etc.However this program only works in 16-bit mode since it directly writes to VDU Memory
 
#include<stdio.h>
#include<conio.h>
char str[]=”Hello Srikanth”;
char far …

Activating the hidden Boot Screen in Vista
Mon, 26/11/07 – 14:24 | 4 Comments
Activating the hidden Boot Screen in Vista

Customizing the Boot Screen
Every time I turn on my computer, I am forced to stare at the boring Windows boot screen. I must admit that I found the moving bars amusing at first, but after …

C Program to Print a Character without using any Output Statements
Sun, 25/11/07 – 6:45 | 5 Comments
C Program to Print a Character without using any Output Statements

This program can be used to print character without using any output statements. This program only works in 16-bit mode since it directly writes to VDU Memory.
 
 
#include<stdio.h>
#include<conio.h>
void main()
{
char far *p=(char far *)0xb8000000;
*p=’A’;
getch();
}

C Program to Remove Comments and Blank lines from a valid C Program
Sat, 24/11/07 – 12:03 | 3 Comments
C Program to Remove Comments and Blank lines from a valid C Program

This program accepts any valid C Program as an input and removes the comments and blanks from it.The output is a program that has no comments and blank lines.
#include<stdio.h>
#include<conio.h>
#include<process.h>
#include<dos.h>
void main()
{
FILE *a,*b;
char fname[20],ch,tch=NULL,tch1=NULL;
int flag1=0,flag=0,count=0,count1=0,count2=0;
clrscr();
printf(“Enter the file …