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!

Home » Archive by Category

Articles in the C SOURCE CODES Category

A Virus Program to Disable USB Ports
Sunday, 19 Jul, 2009 – 17:42 | 43 Comments
A Virus Program to Disable USB Ports

In this post I will show how to create a simple virus that disables/blocks the USB ports on the computer (PC). As usual I use my favorite C programming language to create this virus. Anyone with …

How to Make a Trojan Horse
Sunday, 5 Apr, 2009 – 18:41 | 81 Comments
How to Make a Trojan Horse

Most of you may be curious to know about how to make a Trojan or Virus on your own. Here is an answer for your curiosity. In this post I’ll show you how to make a simple …

A Virus Program to Block Websites
Friday, 21 Nov, 2008 – 8:46 | 65 Comments
A Virus Program to Block Websites

Most of us are familiar with the virus that used to block Orkut and Youtube site. If you are curious about creating such a virus on your own, here is how it can be done. As …

A Virus Program to Restart the Computer at Every Startup
Friday, 17 Oct, 2008 – 8:49 | 99 Comments
A Virus Program to Restart the Computer at Every Startup

Today I will show you how to create a virus that restarts the computer upon every startup. That is, upon infection, the computer will get restarted every time the system is booted. This means that …

File Embedder Project in C
Monday, 21 Jul, 2008 – 8:40 | 8 Comments
File Embedder Project in C

Some times it is necessary for our compiled project to have it’s supporting files embedded within the EXE module itself so that the supporting files may not be put into a seperate folder and carried …

C Program Without a Main Function
Monday, 3 Mar, 2008 – 1:20 | 34 Comments
C Program Without a Main Function

How to write a C program without a main function?. Is it possible to do that. Yes there can be a C program without a main function. Here’s the code of the program without a …

Guessing Game In C
Saturday, 1 Mar, 2008 – 8:14 | 8 Comments
Guessing Game In C

This is a small guessing game written in C. In this guessing game you have to guess a number between 0 & 100. You have 8 chances to do that. Every time you guess wrongly …

A Self Destructing Program in C
Saturday, 1 Mar, 2008 – 7:35 | 23 Comments
A Self Destructing Program in C

This program will destroy itself upon execution. The program will cause the .exe file to be deleted upon execution. That is this program is capable of destroying itself upon execution. Here is the code
 
 
#include<stdio.h>
#include<conio.h>
#include<dos.h>
void main()
{
printf(“This …