1

In a tutorial the guy says it's important to put the PHP_SELF into htmlspecialchars() because of security reasons:

<form action="<?php echo htmlspecialchars($_SERVER['PHP_SELF']); ?>" method="post">

What's insecure if you don't use it?

Thanks!

xitas
  • 983
  • 1
  • 21
  • 44
WeekendCoder
  • 791
  • 3
  • 10
  • 15

1 Answers1

4

htmlspecialchars replaces characters with special meaning in HTML with &-escaped entities. So, for example, ' becomes &#039;. It doesn't turn %22 into &quot;, however, because %22 has no special meaning in HTML, so it's safe to display it without modification.

If you want a form to be handled by the same URL that is used to display it, always use action="" rather than action=<?=$_SERVER['PHP_SELF']?> or action=<?=$_SERVER['REQUEST_URI']?>.

As you've already figured out, there are serious risks of cross-site scripting (XSS) if you use either of the $_SERVER variables, because they contain user input and therefore cannot be trusted. So, unless you have a good reason that you need to tweak the URL somehow, just use action="".

Nisse Engström
  • 4,636
  • 22
  • 26
  • 40
Vivek Singh
  • 2,445
  • 1
  • 13
  • 26