Tuesday, April 17, 2012

How To Send .exe Or Any Other Protected File Type Through Gmail



Ever came across sending a .exe file through mail but can’t send because your mail server don’t allow that. Some of the mail clients do allow but Gmail and many other don’t . So to over rule this restriction we have a simple trick.
Steps to do this :

1. Open Control Panel.
Fullscreen%252520capture%2525209202011%25252091810%252520PM.bmp_thumb


2. Select Folder Options from the Control Panel as shown above.


Fullscreen%252520capture%2525209202011%25252091819%252520PM.bmp_thumb

View photo albums of non-friends on Facebook!

How To Undo Send An Email Till 30 Seconds After Sending It (Gmail)




Gmail-Undo-Send-An-Email_thumb
Much ago, Gmail launched a feature named “Undo send” . It is a feature of the Gmail Labs. Gmail Labs has many cool features, some are for fun and some are really very useful. So, one of the feature, Undo Send, allows us to undo the sent email even after 30 seconds of pressing the send button. So isn’t that cool. If you pressed the send button and later on notice that you made a mistake or wanted to alter something , then you can straight away press the Undo button and the email will be saved in the Drafts folder.

Steps to activate the undo send feature in Gmail :


1. Press the wheel type icon on the top-right of the Gmail page and select Mail settings.

Gmail-Undo-Send-An-Email-Step-1_thumb

Speed up your hard disk on Windows


To speed up your hard disk speed means, its read and write speed.
For this we need to configure a special buffer in the computer’s memory in order to enable it to better deal with interrupts made from the disk.
This tip is only recommended if you have 256MB RAM or higher.
Follow these steps:

1. Open Run Command –> Start –>RUN
2. Type  SYSEDIT.EXE
This will open system editor window
Expand the system.ini file window.
Scroll down almost to the end of the file till you find a line called [386enh].
Press Enter to make one blank line, and in that line type
Irq14=4096
Note: This line IS CASE SENSITIVE!
Click on the File menu, then choose Save.
Close SYSEDIT and reboot your computer
Done.  Speed improvement will be noticed after the computer reboots.

Tracing IP address by Chat


Here's how you can trace some1's ip adress by chat! Here's an example how its done!





You can get this info using just a pic!

1. Create an account on site http://www.chatrack.frihost.net/index-1.php.

2. Now login using ur account on the given site in step 1.

Monday, April 16, 2012

Shut Down Your Computer With A Cell Phone


 Let me show you how to shutdown your computer from anywhere using a texting capable cell phone, Microsoft Outlook and a free account from http://www.kwiry.com.


Step 1: Things you will need

1. Make sure you have a Microsoft Outlook account and an e-mail address configured to it. This will not work with other E-mail clients such as Thunderbird because they do not support VB scripting.
2. Then next think you will need is a http://www.kwiry.com account. This is a free account that will allow you to send it text messages and in response e-mails those messages to your e-mail account.
3. The third thing you will need is a phone that is capable of texting. Please keep in mind that, depending on the cell phone plan you have, sending text messages will incur charges from your cell phone
Step 2: Create the "shutdown.bat" file
The "shutdown.bat" file is a batch file that can allow you to auto-launch applications and perform tasks just by opening it up. You can make this batch file do pretty much any Windows function you want, but for this tutorial, we are going to write a script to shutdown the computer. Here's how:

How to Manually Bypass Trial Period of Softwares


This trick generally works for most of the 3rd party applications, here we won't use any kind of time stopper or lame stuff like that. What we will do is clear tracks so that app doesn't realize we used the software before uninstalling it and are reinstalling it. 




Step 1: 
First thing to do is uninstall the application.




Step 2: 
Go to Start Type "Regedit".




Step 3: 
Go to HK Local Machine -> Software -> Your Software name. Delete the Key.


Do this for HK Current user if there exists a key of that software.

See passwords behind stars!

This tutorial shows how to reveal the password under the stars on any webpage...

Example:

http://www.gmail.com

Username: example@gmail.com
Password: **

Now to read the password below the stars a
ll you need is to copy & paste it in the URL-address bar .Delete http://www.gmail.com and paste the code into it-

Code:
j(function(){var s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == "password") s += f[i].value + "\n"; } } if (s) alert("Passwords in forms on this page:\n\n" + s); else alert("There are no passwords in forms on this page.");})();



And its done! you will be able to see the password! :)

Finding IP address in Gmail From Email Header's


Email headers determine where a message is sent, and records the specific path the message follows as it passes through each mail server.
When You send an email to any of your friends or others could be your Girl friends Never mind. But When you send the email through any email client like Gmail , Yahoo Mail , Hotmail, AOL, Outlook Express, etc it also sends the Email Header which contains Some important information for Us i.e.Hackers.
 Basically it is a feature of Mailing protocol.
Now when the victim sends you a Email through any ,Gmail, Yahoo mail etc doesn't matter, then mail comes to your inbox in the form of Email Header but the your Email client changes it and shows only readable part of it.

Finding IP address in Gmail
Login to your Gmail account with your username and password.
Open the mail.

Sunday, April 15, 2012

How to lock folders using notepad


Everyone of us have some private files on systems which we do not want others to access them. Some hide those files on computer and some others use software to password protect them. But using a software leads to many problems like, getting system hang, also when we format our system the software will be removed automatically which causes your protected files to be public.
So , it is good to password protect a file on computer using a simple notepad trick by using .BAT extension.
  • Open Notepad and paste the following program in the notepad.
cls
:End
@ECHO OFF
title Folder Locker
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p “cho=>”
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p “pass=>”
if NOT %pass%==pass goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
  • In the above program I am using pass as the password of the file.
  • Replace it with anything you like to make it as folder password.
  • Save the file anywhere in the system with a .bat suffix like  something.bat
  • Here I am saving it as mylocker.bat on my system.
locker using notepad
  • Double click on the something.bat file which you create, a new folder by name Locker will be created on the same location of bat file you saved.
  • Copy your files to this folder and open bat file again and type y and then enter to lock your folder.
folder locker
  • To unlock your file again, you need to open the bat file and enter your password.

Saturday, April 14, 2012

Post pictures in Facebook chat box


Good Morning To All Friends . Today i am going to show you how can you send any picture or image in your facebook friend chat box . So Follow Given Below Few Steps For Do This.


1. First You Need To Login In Your Facebook Account .

2. Now You Just Open This Website Click Here.

3. Now You Choose Any file From Your PC .

4. In Next Step Click on Upload Button .

Send fake emails from any person to anyone!

Using the site mentioned below you can send an email to anyone using any others email ID! You can check this out at-
http://emkei.cz/



*for educational purposes only

Trick: Update fb status through fake gadgets!

Using this tutorial, you will be able to update your status like this! Even if you dont have an Iphone4-

[Image: 5od0nc.png]


THIS IS JUST A SHARE

When somebody updates his/her Facebook Status using any Gadget the name of that device gets mentioned below the status like via iPhone 4 which leaves the great impression of yours in front of your FB friends that you bought new Gadget. See the screenshot above again!

How to Use this Facebook Status Prank ?
Just Login to your Facebook Account and use the below links according to your need :

http://apps.facebook.com/viabberry/
http://apps.facebook.com/bberrytorch/
http://apps.facebook.com/via-iphonefour/
http://apps.facebook.com/via-iphonefive/
http://apps.facebook.com/via-ipad/
http://apps.facebook.com/ipadtwo/
http://apps.facebook.com/viaandroids/
http://apps.facebook.com/viacalculators/

Friday, April 13, 2012

Hide your secret files under a picture

This tutorial is for hiding all your files on your PC from rest of world.


Step 1: Copy all your secret files to a folder e.g. C:\Hide

Step 2: Search on the internet for a picture you like. As your are hiding your archives/flies within pic
Save it to " C:\ "(save in same Dir where Folder/Archive eg. "Hide" is saved) Change the name to a easy one, like picture...

Step 3: Make an RAR archive of a folder Hide.....so it will be Hide.rar

Step 4: Open the command prompt.

Turn firefox 10x faster!


This s very simple trick without any software to browse on your firefox 10x faster! try it out-




1. Type " about:config" into the address bar and hit enter. Scroll down and look for the following entries:


2. Alter the entries as follows:


Set " network.http.pipelining" to "true"
Set "network.http.proxy.pipelining" to "true"


set " network.http.pipelining.maxrequests" to some number like 30. This means it will make 30 requests at once.


3. Lastly right-click anywhere and select  New-> Integer. Name it "nglayout.initialpaint.delay"  and set its value to "0". This value is the amount of time the browser waits before it acts on information it recieves.


NOTE: this trick only works for broadband users not for dialup