1
vote
2answers
33 views
Cleaning a Production Database for use in Testing
I'm building a local vm for doing web dev rather than using our on site development. I need a database locally, but I don't want to just pull down a production db and use that as i …
1
vote
4answers
60 views
PHP - Sanitise a comma seperated string
What would be the most efficient way to clean a user input that is a comma seperated string made entirely on numbers - e.g
2,40,23,11,55
I use this function on a lot of my in …
1
vote
2answers
23 views
Sanitize Input for Unidata
Can anyone provide a function to sanitize input for a UniData query? Or provide a list of things to remove?
0
votes
2answers
26 views
Markdown and XSS
Ok, so I have been reading about markdown here on SO and elsewhere and the steps between user-input and the db are usually given as
convert markdown to html
sanitize html (w/whi …
0
votes
5answers
65 views
What’s the best way to remove (or ignore) script and form tags in HTML?
I have text stored in SQL as HTML. I'm not guaranteed that this data is well-formed, as users can copy/paste from anywhere into the editor control I'm using, or manually edit the H …
0
votes
3answers
68 views
Sanitize $_GET parameters to avoid XSS and other attacks
I have a website in php that does include() to embed the content into a template. The page to load is given in a get parameter, I add ".php" to the end of the parameter and include …
1
vote
3answers
155 views
Sanitize Markdown in Rails?
Users can edit "articles" in my application. Each article is mastered in the DB and sent to the client as Markdown -- I convert it to HTML client side with Javascript.
I'm doing t …
1
vote
3answers
77 views
If I only sanitize GET and POST data, will I be safe from injection?
I'm just thinking about the best way to go about sanitizing my data to prevent injection attacks. Some people like to sanitize immediately before output, or immediately before inse …
1
vote
2answers
121 views
Cleaning all inline events from HTML tags
For HTML input, I want to neutralize all HTML elements that have inline js (onclick="..", onmouseout=".." etc).
I am thinking, isn't it enough to encode the following chars? =,(,) …
1
vote
2answers
57 views
Sanitize input for code blog
I have a code blog in which I have a user input form for submissions. Whatever goes in that form will appear on one of the pages. Now this is a coding blog, so I don't want to stri …
2
votes
2answers
94 views
Should I sanitize file upload input field in my Perl CGI HTML form?
I understand the need to sanitize inputs from a HTML form, but when I sanitized the file upload field in a recent module of mine, the file upload started failing. It's important t …
0
votes
2answers
59 views
Cleanup user input library .NET
Is there a .Net library which everyone uses to validate/cleanup user input from website. It seems like there are a lot of posts explaining which regex people use and when. While I …
1
vote
4answers
100 views
How do I sanitize title URIs?
Hello,
I am programming a blog and I want the URIs to be the title like the question title here in stackoverflow or like wordpress.
What are the rules for sanitizing a URI?
Is ther …
3
votes
1answer
82 views
Why call mb_convert_encoding to sanitize text?
This is in reference to this (excellent) answer. He states that the best solution for escaping input in PHP is to call mb_convert_encoding followed by html_entities. But why exactl …
1
vote
1answer
75 views
Texts/codes to test for XSS attacks in my software/website
Hello,
Firstly, I do not have any malicious intent out of this question. I would like to know what text to copy paste and test in my text areas and text boxes to see if they are s …
