Jump to content

How to get value of all $_Request variable so that we can validate


websoftexpert

Recommended Posts

Hi

 

How to get value of all $_Request variable so that we can validate for cross scripting. see below

 

http://srijanlinux.com/consentRequestNew.php?requestId=24753

 

print count($_GET); 

 

// return ----------  1

 

 

print_r($_GET);

 

// return -----------  Array ( [requestId] => 24753 )

 

 

Now I want to validate value of requestId. I know I can validate by getting using $_GET['requestId'].

 

But there are changes that I don't know variable name then How validate unknown variable which might be put by hacker.

 

Thanks

 

akash

 

 

 

 

 

 

How? I used following code but I didn't work

 

 

 

for($ii=0;$ii<count($_GET); $ii++)

{

print "<P> ----------------------- $ii -------------------------</P>";

print "<P> +++++++++++++++++++++++++ "; print($_GET['$ii']); print " +++++++++++++++++++++++++</P>";

}

 

Keep in mind I don't know all variables name coming from $_GET request

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.