Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Not very familiar with PHP, is it possible for the user to take advantage of variable interpolation to get the value of secret?

<?php 
    $secret = 'hidden data';
    echo $_GET['id'];
?> 

I tried passing in for the id: $secret, %24secret, ${secret}, {$secret}, %7D%24secret%7D, %24%7Dsecret%7D. So far it seems safe, but just want to make sure I am not missing anything. Thanks in advance.

share|improve this question
2  
If such a thing was possible, I don't think there would have been so many web applications written in php. Also $_GET is an array and eventually you'd have $_GET[$secret], so if the value of $secret isn't a valid array key of $_GET, there still would be no problem. – Havelock Sep 30 '12 at 15:34
1  
It's not possible, unless you accidentally write $$_GET['id']. – Kemal Fadillah Sep 30 '12 at 15:41

2 Answers

up vote 3 down vote accepted

No, it's impossible for a user to retrieve hard-coded strings in this way.

share|improve this answer

No.

But use htmlentities($_GET["id"]) anyway because otherwise we can use cross-site scripting attacks (steal login cookies, session data, etc).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.