How does this php script work? - KingPin's Forum
KPsDenKPsDen ArmoryImage HostingLegendz text RPGIp DisplayIRCFlash Arcade
Forum
      |        
Register
         Nice models and free models, new site! (Posted By:3d4ya - Replies:0 - Views:2)      « »     Giving away my account (Posted By:Headshot - Replies:0 - Views:3)      « »     we have cheap shoes,example :gucci sneaker,air force... (Posted By:jimei - Replies:0 - Views:9)      « »     we have cheap shoes,example :gucci sneaker,air force... (Posted By:jimei - Replies:0 - Views:10)      « »     we have cheap shoes,example :gucci sneaker,air force... (Posted By:jimei - Replies:0 - Views:9)      « »     we have cheap shoes,example :gucci sneaker,air force... (Posted By:jimei - Replies:0 - Views:11)      « »     Lol thx (Posted By:vohrtechs - Replies:16 - Views:165)      « »     Networking not working (Posted By:vohrtechs - Replies:2 - Views:28)      « »     [epic] post you pic thread [/epic] (Posted By:Bionuclear - Replies:263 - Views:6055)      « »     Problem/Network (Posted By:Jewells02 - Replies:0 - Views:17)      « »     
KingPin's Forum
 
K.P.s.N. Register vbBux / KPs Mall Bugs Blogs FAQ Search Today's Posts Mark Forums Read Donate
Go Back   KingPin's Forum > KP's Network Forum > RSS News
Reload this Page How does this php script work?
 


RSS News This is a discussion on How does this php script work? in the RSS News;
Description: I was just wondering how this php script works. Whats going on?? Thanks. Code: <?php $user =$_GET['user']; $pass = $_GET['pass']; ...

Reply
 
LinkBack Thread Tools
How does this php script work?
(#1 (permalink))
Old
Vivid Lust is Offline
Private
Points: 150, Level: 1 Points: 150, Level: 1 Points: 150, Level: 1
Activity: 0% Activity: 0% Activity: 0%
Vivid Lust is an unknown quantity at this point
 
Vivid Lust
Rupees: 168.00
Bank: 500.00
Total Rupees: 668.00
 
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Jan 2008
How does this php script work? - January 2nd, 2008

I was just wondering how this php script works. Whats going on??

Thanks.

Code:

<?php
$user =$_GET['user'];
$pass = $_GET['pass'];
if (isAuthed($user,$pass))
{
$passed=TRUE; }
if ($passed==TRUE)
{
echo 'you win'; } ?>
<form action="me.php" method="get">
<input type="text" name="user" />
<input type="password" name="pass" />
</form> <?php
function isAuthed($a,$b)
{
return FALSE;
}
?>
how can you make this scipt think you have been authed by injecting the URI?

 
Reply With Quote
Reply

Bookmarks

Tags
php, script, work

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Rupees Per Thread View: 1.00
Rupees Per Thread: 15.00
Rupees Per Post: 5.00
Forum Jump



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
Copyright 2004-2009 KPsN


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81