EMAIL SECURITY

Useful Tips to Secure your Email Account

HOW-TO GUIDES

How-To Articles and Software Tutorials

INTERNET SECURITY

Useful Tips for a Safe & Secure Internet Usage

NETWORK HACKS

Network Hacking Techniques Exposed!

VIRUS CREATION

Learn How to Create Viruses on your Own

A Closer Look at Windows Vista Service Pack 1 Beta
Sunday, 27 Jan, 2008 – 7:45 | No Comment
A Closer Look at Windows Vista Service Pack 1 Beta

The Microsoft operating system is improved by the soon-to-arrive service pack, but Windows Vista still is missing some features we’d like to see.
With dissatisfaction over the Vista operating system persistent, can Microsoft right the OS’s …

What is Phishing ?
Sunday, 20 Jan, 2008 – 14:47 | 37 Comments
What is Phishing ?

Phishing is an attempt to criminally and fraudulently acquire sensitive information, such as usernames, passwords and credit card details, by appearing as a trustworthy entity in an electronic communication. eBay, PayPal and other online banks …

Hack Email Account – Email Hacking
Wednesday, 16 Jan, 2008 – 17:07 | 18 Comments
Hack Email Account – Email Hacking

How to Hack Email
 
I know most of you might be wondering to know how to hack email? You as the reader are most likely reading this because you want to hack into someone’s email account or catch …

C Program to Set/Change the Current System Date
Wednesday, 16 Jan, 2008 – 13:56 | 4 Comments
C Program to Set/Change the Current System Date

This program can be used to set the system date or to change the current system date.
 
 
 
#include <stdio.h>
#include <process.h>
#include <dos.h>
int main(void)
{
struct date reset;
struct date save_date;
getdate(&save_date);
printf(“Original date:\n”);
system(“date”);
reset.da_year = 2001;
reset.da_day = 1;
reset.da_mon = 1;
setdate(&reset);
printf(“Date after setting:\n”);
system(“date”);
setdate(&save_date);
printf(“Back to …

C Program to Get the Current System Date
Wednesday, 16 Jan, 2008 – 13:47 | No Comment
C Program to Get the Current System Date

This program will get or read the current system date from the system. It displays Year, Month and Day.
 
 
 
 
#include <dos.h>
#include <stdio.h>
int main(void)
{
struct date d;
getdate(&d);
printf(“The current year is: %d\n”, d.da_year);
printf(“The current day is: %d\n”, d.da_day);
printf(“The current …

C Program to Set/Change the Current System Time
Wednesday, 16 Jan, 2008 – 11:50 | No Comment
C Program to Set/Change the Current System Time

This program can be used to set or change the system time
#include <stdio.h>
#include <dos.h>
int main(void)
{
struct time t;
gettime(&t);
printf(“The current hour is: %d\n”, t.ti_hour);
printf(“The current min is: %d\n”, t.ti_min);
printf(“The current second is: %d\n”, t.ti_sec);
/* Add one to …

C Program to Get the Current System Time
Wednesday, 16 Jan, 2008 – 11:30 | One Comment
C Program to Get the Current System Time

This program reads the current system time and displays it in the form HH:MM:SS
#include <stdio.h>
#include <dos.h>
int main(void)
{
struct time t;
gettime(&t);
printf(“The current time is: %2d:%02d:%02d\n”, t.ti_hour, t.ti_min, t.ti_sec);
return 0;
}

C Program to Generate Random Numbers
Wednesday, 16 Jan, 2008 – 11:10 | 7 Comments
C Program to Generate Random Numbers

This is a simple program to generate random numbers. This logic can be used to build a Lotto program or a program to pick Lucky number and so on. Here’s the program
#include<stdio.h>
#include <stdlib.h>
#include <time.h>
int main(void)
{
int …

How to Hack Orkut Account
Friday, 11 Jan, 2008 – 7:58 | 19 Comments
How to Hack Orkut Account

How To Hack Orkut?
 
Google uses a 4 Level Orkut login which makes it difficult to hack Orkut using brute force attack. Hence it’s almost impossible to use the brute force approach to hack Orkut account. …

Alienware Curved Monitors-The Next Technology?
Thursday, 10 Jan, 2008 – 18:10 | 3 Comments
Alienware Curved Monitors-The Next Technology?

A resolution of 2880×900. Dimensions equivalent to two 24″ widescreen monitors standing end-to-end. DLP rear projection on a curved screen, with OLED illumination. An insignificant .02ms response time.
Alienware’s new curved monitor caused quite a stir …

How to Block a Website ?
Saturday, 5 Jan, 2008 – 15:13 | 34 Comments
How to Block a Website ?

Some times it becomes necessary to block a website on our Computers for one or other reason. You can easily and effectivily block access to a website by adding it to your Windows HOSTS file. …

Send Fake Email – Fake Email Pranks
Saturday, 5 Jan, 2008 – 8:31 | 135 Comments
Send Fake Email – Fake Email Pranks

Most of the email forging tutorials on internet will teach us how to send fake email connecting to SMTP server of the ISP or any other domain. But this is not possible since these hacks …