Tagged Questions
5
votes
3answers
122 views
How to prevent XSS in attributes
so I have a site where users can register using a username of their choosing and can submit large blocks of text and add comments. Currently, to avert XSS, I use strip_tags on the data on input to the ...
4
votes
2answers
448 views
Adding 'utf-8' parameter to occurances of htmlspecialchars() - can it break anything?
Assuming my project is utf-8 throughout and has always been used with utf-8 encoding, is there anything legit that could possibly break if I change all occurances of htmlspecialchars($var) to ...
4
votes
7answers
2k views
Is there a Python equivalent to the PHP function htmlspecialchars()?
Is there a similar or equivalent function in Python to the PHP function htmlspecialchars()? The closest thing I've found so far is htmlentitydefs.entitydefs().
3
votes
1answer
218 views
filter_var vs htmlentities vs htmlspecialchars
Disclaimer
This is not a question about whether we should be escaping for database input. This is strictly looking at the technical differences between the three functions in the title.
...
3
votes
1answer
76 views
Encoding Issue Title Tag
I've got a little problem with the tag in combination with PHP. My code is:
$title = '....';
echo '<title>'.htmlspecialchars($title).'</title>';
When i use "Niederländische Zitate" the ...
3
votes
4answers
569 views
How to Remove Html Tags in PHP?
I use htmlspecialchars function in my string. But, I don't want to clean them;
<b>, <br>, <p> <ul>,<li> bla bla...
Example: Mystring = ...
3
votes
4answers
1k views
Do you only run htmlspecialchars() on output or is there other functionality you also do?
When outputting user input, do you only use htmlspecialchars() or are there are functions/actions/methods you also run? I'm looking for something that will also deal with XSS.
I'm wondering if I ...
2
votes
3answers
107 views
Sanitizing PHP/SQL $_POST, $_GET, etc…?
Ok, this subject is a hotbed I understand that. I also understand that this situation is dependent on what you are using as code. I have three situations that need to be resolved.
I have a form in ...
2
votes
1answer
54 views
What is a function that will allow output with HTML and avoid XSS attacks
I am looking for a way or function that will allow me to display data from my mySQL database. The users are allowed to post articles, that I use mysql_real_escape_string to avoid SQL injections before ...
2
votes
4answers
71 views
Question on preventing SQL with magic_quotes off and XSS with htmlentities
On my server I have magic_quotes turned off.
When a user save content as article in my DB from a form, I use
$text = mysql_real_escape_string($_POST['text']); to prevent SQL Injecion.
This is my ...
2
votes
1answer
103 views
Flex & PHP: How to Use htmlspecialchars?
I'm using Flex 3 with remoting to return data from a MySQL database. Do I need to use htmlspecialchars in order to keep my site secure?
As I understand it, htmlspecialchars is used to "sanitize" ...
2
votes
3answers
228 views
Best Practices when outputting html data from database to browser
I store html data in a database.
The html data is very simple, and is generated by a wysiwyg editor.
Before I store the html data in the database and I run it through HTMLPurifier, to remove any ...
2
votes
3answers
318 views
when to use htmlspecialchars() function?
Hi
I was wondering when is the appropriate place to use htmlspecialchars(). Is it before inserting data to database or when retrieving them from the database?
2
votes
3answers
3k views
htmlspecialchars(): Invalid multibyte sequence in argument
I am getting this error in my local site.
Warning (2): htmlspecialchars(): Invalid multibyte sequence in argument in [/var/www/html/cake/basics.php, line 207]
Does anyone knows, what is the problem ...
2
votes
2answers
569 views
Why htmlspecialchars_decode in PHP does not have the charset parameter as in its counterpart?
There is a charset parameter in htmlspecialchars but the decode version does not have it. In comparison to the similar htmlentities, the encode and decode functions both have the charset parameter. So ...
2
votes
2answers
3k views
convert html characters back to text in Flash - AS3
I need to generate an editable xml file to supply content to a flash website.
I am generating my file with a html form, and htmlspecialchars e.g.:
$currentItem = ...
1
vote
1answer
62 views
htmlspecialchars ampersand
<h3><?php echo $this->__('Details & Documents') ?></h3>
The above prints out as: Details & Documents
What is the proper syntax so that it prints as: Details & ...
1
vote
2answers
55 views
Is there a way to send parameters into a callback function without creating my own function first?
I have an array of values that I would like to run through htmlspecialchars but with an argument such as this:
$param = htmlspecialchars($param, ENT_QUOTES);
The problem is, I have an array of ...
1
vote
2answers
105 views
Send special characters through AJAX ( “<” , “>” , “&” )
I send some test through jquery's ajax request.
This text contains some special characters like "<" , ">" , "&", which stand for <, >, and &.
$.ajax({
type: "POST",
url: ...
1
vote
4answers
83 views
Is a foreach loop on $_GET a good way to apply htmlspecialchars?
I'm wondering if there is a significant downside to using the following code:
if(isset($_GET)){
foreach($_GET as $v){
$v = htmlspecialchars($v);
}
}
I realize that it probably isn't necessary ...
1
vote
2answers
214 views
json with special characters like é
I'm developing a dependent select script using jQuery, PHP and JSON as the response.
Everything goes well except for using special characters like French ones (é , è , à...)
if I pre-encode them ...
1
vote
2answers
90 views
handling WYSIWYG data in PHP
I need to use a wysiwyg editor for handling user input.
How do you process this in php?
If i retrieve the data and use, htmlspecialchars then all the characters that were converted to special ...
1
vote
0answers
66 views
How to deal with oriental characters? [closed]
How do you deal with crazy characters, that does not have a special meaning for the browser and thus htmlspecialchars() won't catch them (I mean they are XSS safe), but they break your site appearance ...
1
vote
4answers
1k views
htmlspecialchars & ENT_QUOTES not working?
Not done hardly any PHP programming for several months so not sure if i am missing something.
Basically on displaying data from MySQL database i have a htmlspecialchars() function below that should ...
1
vote
2answers
216 views
php XML DOM translates special chars to &#xYY;
I send this with AJAX POST:
<li><ul class "zone zCentral ui-sortable"><li><ul class="region rCol3 ui-sortable"><li class="" style=""><div><span class="tc ...
1
vote
3answers
284 views
php form security
I was reading an article about form security becuase I have a form which a user can add messages.
I read that it was best to use strip_tags(), htmlspecialchars() and nl2br()
Somewhere else said to ...
1
vote
2answers
118 views
htmlspecialchars removes formatting
i'm calling the htmlspecialchars function inside another function in a class, but when i do this, even though the data displays, it removes all formatting showing the data in a single line.
this is ...
1
vote
7answers
1k views
PHP htmlspecialchars error
why would this
$trader_details = array_walk($trader_details, 'htmlspecialchars');
give this error?
Severity: Warning
Message: htmlspecialchars() expects parameter 2 to be long, string given
...
0
votes
1answer
41 views
Textarea file edit php
I have a PHP script for editing files, html, php, etc..
It is working in it's entirety except, when you enter into the textarea form field, for example:
<div>
& nbsp; or & amp;
...
0
votes
1answer
32 views
Invalid Characters not displaying
I have an xml feed which i cannot edit, its remote.
Now when i import it to db
it says this:
A taste of Turkey for £21 10 Meze dishes, bread and drinks for two at Cirrik Fulham
but is outputting ...
0
votes
1answer
32 views
Strange behavior of htmlspecialchars in my bbcode parser class
I wrote a class to parse bbcode but I have a problem when I use the "escape" (function chtml::encode is a wrapper for htmlspecialchars).
MyBBcodeParser: http://snipt.org/srlo0
Case ...
0
votes
1answer
57 views
PHP htmlentities() and htmlspecialchars() are broken / do not work
I have used these two functions in the past,and they worked fine. I'm developing a CakePHP application and for some reason use of either of these functions does NOTHING. I've setup a simple test, and ...
0
votes
1answer
37 views
Special characters parsing (ü,ä, etc). Works on localhost, not http
I'm running a string of text against a body of text to determine if the string of text exists within a specific context (in this case, inside h2 heading tags). I can take an example and it works ...
0
votes
1answer
59 views
Avoiding double encoding in <INPUT> while using htmlspecialchars
Say you have a text <INPUT> for a user's name and they decide to type in
Johnny's Pizza
This is saved in DB as
Johnny's Pizza
But if the user decides to edit, I repopulate the text ...
0
votes
1answer
35 views
Unicode Replacement Characters in the PHP htmlspecialchars function
In the htmlspecialchars function, if you set the ENT_SUBSTITUTE flag, it is supposed to replace some invalid characters.
What characters are replaced? And what is the mapping between the invalid ...
0
votes
4answers
58 views
Is using htmlspecialchars() sufficient in all situations?
My users are allowed to insert anything into my database.
So using a whitelist / blacklist of characters is not an option.
I'm not worried (covered it) about the database end (SQL injection), but ...
0
votes
1answer
37 views
PHP htmlspecialchars and character sets issue
I've got a page that loads content from a database. I have the page set to use utf-8 as such
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
I've set the collation on ...
0
votes
1answer
107 views
how to remove special characters (ex:Montréal-Rive-Sud) from mysql databse
how to remove special characters
Montréal-Rive-Sud
the above one is city name this i'm getting from xml feeds. It is directly inserting into my mysql database. now i want to remove this ...
0
votes
3answers
64 views
htmlspecialchars - there must be a better way
My understanding is that all variables should be output through htmlspecialchars() in a view.
Are there any approaches or methods to do this, without having to specify the function on each ...
0
votes
1answer
82 views
Codeigniter php tags stripping with xss_clean
Why if i pass a $_POST['string'] = "<?php echo 'hey' ?>" then i pass it to the xss_clean() with echo $this->input->post('string',true); it is outputted as &lt;?php echo 'hey' ...
0
votes
3answers
117 views
Ensure valid XHTML from a string in PHP
I'm using XHTML Transitional doctype for displaying content in a browser. But, the content is displayed it is passed through a XML Parser (DOMDocument) for giving final touches before outputting to ...
0
votes
1answer
74 views
How to convert special html characters in Perl?
In PHP it's as simple as htmlspecialchars, how to do it in Perl?
0
votes
3answers
103 views
PHP code stop normal loading of site
I have this code to get the HTML source of a website/file and replace some parts of its content. Later I print the modified result
<?php
// Get a file into an array. In this example we'll go ...
0
votes
2answers
93 views
How symfony auto clean the HTML output?
I know it must use htmlspecialchars() but it automatic clean the output when I use echo statement. Manually, without symfony, how can I do that? Override echo statement? I know theres ob_start(), ...
0
votes
1answer
75 views
Is php htmlspecialchars safety for JS?
Is php htmlspecialchars safety for JS?
var jsVar = "<?php echo(str_replace(array("\r\n", "\n","\r"), "\\n",htmlspecialchars($_GET['p'], ENT_QUOTES))); ?>";
How about for multi byte chars?
0
votes
2answers
46 views
In a post transform to entities the tags that are not allowed and keep the tags allowed
I have a form where an user can post a global notice into the system (for other users to see).
The system outputs HTML directly from the DB (when a user wanto to see a notice).
I'd like to allow some ...
0
votes
2answers
92 views
How to use htmlspecialchars in preg_match
This is my code, it will echo "Not working"
$f = file_get_contents("http://www.google.com");
$text = htmlspecialchars( $f );
$matches = array();
...
0
votes
1answer
94 views
php striping with exceptions or reorganizing htmlspecialchar
I'm trying to build a web site basicly for sharing sample codes and comments. My problem is avoiding any tags/scripts except a img and some very common ones like i b... I tried different solutions but ...
0
votes
3answers
75 views
How can I format CSV data to show specialchars but only have them seen as text within MS Excel or Calc?
I have a script to export data from MYSQL to a CSV file. the data is numbers, text and special chars. All fields are deliminated with double quotes and separated by commas.
I need to export data in ...
0
votes
2answers
385 views
XSS: REQUEST_URI run through htmlspecialchars() - then replacing & with & - enough to prevent XSS injection?
Scenario:
I would like to replace: " ' < > with " ' < > but keep the "&" character.
The string I'm dealing with is a URL and I want URL parameters to be ...