GoHacking.com: Ethical Hacking and Cyber Security
EMAIL SECURITY

Tips to Secure and Safeguard Your Email Account

HOW STUFFS WORK

Articles Explaining How Everything Works!

HOW-TO GUIDES

How-To Articles on Various Subjects

INTERNET SECURITY

Tips for a Safe and Secure Internet Usage

NETWORK HACKS

Network Hacking Techniques Exposed!

C Program To Accept Password
Tue, 11/12/07 – 12:46 | 12 Comments
C Program To Accept Password

This is a simple login program in C. While accepting password it masks each character using ‘*’ symbol and display the password in the next line after the user hits Enter key. It also accepts …

How to Create a Computer Virus?
Fri, 7/12/07 – 9:17 | 81 Comments
How to Create a Computer Virus?

This program is an example of how to create a virus in C. This program demonstrates a simple virus program which upon execution (Running) creates a copy of itself in the other file. Thus it …

C Program to Generate Numbers in Pyramid Pattern
Fri, 7/12/07 – 8:47 | 10 Comments
C Program to Generate Numbers in Pyramid Pattern

This C program generates the numbers in pyramid pattern. It takes the input from two through nine and generates the numbers in the pyramid pattern. For example if the input is 4 then the program …

C Program to Print the Entered Number in Words
Tue, 4/12/07 – 16:32 | 4 Comments
C Program to Print the Entered Number in Words

The following C program print’s the entered number in words. For example if the number entered is 12345 then the program prints the entered number in words as One Two Three Four Five
 
 
#include<stdio.h>
void main()
{
int i=0;
unsigned …

Changing Windows XP Product Key without Re-Installation
Mon, 3/12/07 – 12:38 | 9 Comments
Changing Windows XP Product Key without Re-Installation

This trick will show you how to change Windows XP product key without re-installing the operating system. This makes it possible to install a new genuine key without the need to format and re-install your …

Get Rid of the Recycle Bin on your Desktop
Mon, 3/12/07 – 12:32 | 11 Comments
Get Rid of the Recycle Bin on your Desktop

Here is a way to remove the recycle bin from your desktop. This trick help’s people who want to get rid of the recycle bin on the desktop.
 
 
 
 
1. Goto start, Run, Type “gpedit.msc” (Type without …

C Program to display the No. of Digits in an Entered Number
Mon, 3/12/07 – 12:13 | 3 Comments
C Program to display the No. of Digits in an Entered Number

This program displays the number of digits present in the number that is entered through the input.
#include<stdio.h>
#include<conio.h>
void main()
{
unsigned long int num;
int i=0;
clrscr();
printf(“Enter the digit\n”);
scanf(“%lu”,&num);
while(num!=0)
{
num=num/10;
++i;
}
printf(“Length=%d”,i);
getch();
}

Modifying the Vista Operating System Boot
Fri, 30/11/07 – 18:04 | One 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 …