Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

when I write this in a textarea:

<script>
alert(555);
</script>

then the php removes the tags, but if I write following in a textarea:

&lt;script&gt;    
alert(555);       
&lt;/script&gt;

then the php accepts it and save in the database , but when it shows it, it is displayed like a text.

My question: Is this a safe way of passing it this way or some other better alternative exists?

share|improve this question
any ideas?..... – Mister PHP Aug 1 '12 at 4:35
1  
sorry, it's impossible to tell what you are asking. – Dagon Aug 1 '12 at 4:35
why? i need to know if there is a way to make work the script by passing the symbols like: <, > - as mnemonics &lt; &gt; when it is retrieved from the database, then is displayed normal like: <script></script> - but it doesn't work because is like a text, is there a way to broke this security? to make it work when it is outputed? – Mister PHP Aug 1 '12 at 4:38
in your own system, or trying to hack someone elses? – John3136 Aug 1 '12 at 4:39
1  
If you're asking if you should accept user text verbatim, plop it into your database without any filtering or checking, then read the field and display it back as HTML ... and if you might be susceptible to vulnerabilities ... Yeah. Sure ;) – paulsm4 Aug 1 '12 at 4:41
show 15 more comments

closed as not a real question by Dagon, Michael Petrotta, PhpMyCoder, j0k, Graviton Aug 2 '12 at 3:44

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

What I get from your problem is that you want to store the script as it is in the textarea into the database and while fetching, you want it to execute.

When fetching the data from the textarea, do:

$var=htmlentities($_POST['dangerous_script']);

and store it in the database.

While displaying it, use

echo html_entity_decode($var);

As far as safety is concerned, running user scripts in any form is unsafe.

share|improve this answer

Your question is unclear, but I will try...

When you write &lt;script&gt; it will appear on the page as <script>. &lt etc. were designed with the purpose of letting people use < and > without the browser interpreting it as a tag.

If you look at the actual source of the page (right-click -> View Page Source, View Source, etc.) you will see &lt; and &gt;.

The only question of security is how good your tag-removing script is.

If you want &lt;script&gt; to change into <script> (which is a security vulnerability), you could use something like this:

<?php
$encoded = '&lt;script&gt';
$decoded = html_entity_decode($encoded);
echo $decoded;
?>

See html_entity_decode - PHP Manual.

share|improve this answer

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