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 ...
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
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
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 ...
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
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 &amp;lt;?php echo 'hey' ...
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
385 views

XSS: REQUEST_URI run through htmlspecialchars() - then replacing &amp; with & - enough to prevent XSS injection?

Scenario: I would like to replace: " ' < > with &quot; &#039; &lt; &gt; but keep the "&" character. The string I'm dealing with is a URL and I want URL parameters to be ...
0
votes
1answer
95 views

Is htmlspecialchars sufficient against low level XSS in my case?

I have added functionality to my admin so it preserves the URL which you tried to access before it asked you to login. So, if you go to: /admin/foo/bar?baz It'll redirect you to: /admin/auth/login ...
-1
votes
1answer
127 views

XSS in EUC-jp over htmlspecialchars

does a japanese charset euc-jp make a xss? <html> <body> <script type="text/javascript"> var a ="<?php echo htmlspecialchars($_GET['a']) ?>"; var b ="<?php echo ...