2
votes
1answer
43 views
Anonymize pom.xml on release
I've got artefacts which are built and released using Maven.
The artefact's original pom.xml contains the usual project information (artifactId, name, etc.) and the dependencies. T …
-2
votes
4answers
442 views
Rails ActiveRecord: Inserting text containing unprintable/weird characters
I am inserting some text from scraped web into my database. some of the fields in the string have unprintable/weird characters. For example,
if text is "C__O__?__P__L__E__T__E", …
0
votes
1answer
37 views
Problem with Ruby Gem and Sanitize
Hi,
I'm trying to install the Ruby gem sanitize. I've already installed nokogiri:
>gem list nokogiri
*** LOCAL GEMS ***
nokogiri (1.4.0)
but when I try and install sanitize …
2
votes
4answers
78 views
Ruby Sanitize Code … why is & sanitized …
I currently use the following code to sanitize a string before storing them:
ERB::Util::h(string)
My problem occurs when the string has been sanitized already like this:
string …
2
votes
3answers
98 views
Sanitize input XSS and HTML input in rails
I know I can use the ActionView helper strip_tags method in my views to sanitize output, but what is the best way to sanitize user input before I persist it to my db? Should I fin …
1
vote
3answers
192 views
Is my anti XSS method OK for allowing user HTML in PHP?
I am working on finding a good way to make user submitted data, in this case allow HTML and have it be as safe and fast as I can.
I know EVERY SINGLE PERSON on this site seems t …
2
votes
6answers
2k views
jQuery catch paste input
I'm looking for a way to sanitize input that I paste into the browser, is this possible to do with jQuery?
I've managed to come up with this so far:
$(this).live(pasteEventName, …
0
votes
1answer
88 views
Php safe output
Hola
When outputting user input I use this function:
function bbkoda($text) {
$text = htmlspecialchars($text);
$text = nl2br($text);
$hitta = array(
"'\[b](.*?)\[/b]' …
1
vote
5answers
113 views
Best way to Sanitize / Filter Comments from users?
I am currently using this process to Sanitize/Filter comment entered by users ->
This one is used to strip slashes... and
if (get_magic_quotes_gpc()) {
function stripsla …
1
vote
3answers
112 views
Function to Sanitize HTML Id attribute in Java
I have coded the next function. But surely someone has a more elegant way to perform this task.
/**
*
* HTML 4 Specification
* ID and NAME tokens must begin with a letter ([A …
0
votes
2answers
410 views
Replacing Microsoft Word Newline Character in Python
This feels like it should be an easy one, but I'm having trouble cleaning out the newline character in content pasted from Microsoft Word. Not a full line-break, but the CTRL-ENTER …
3
votes
5answers
209 views
How to sanitze user input in PHP before mailing?
I have a simple PHP mailer script that takes values from a form submitted via POST and mails them to me:
<?php
$to = "me@example.com";
$name = $_POST['name'];
$message = $_POS …
4
votes
6answers
241 views
When to filter/sanitize data: before database insertion or before display?
As I prepare to tackle the issue of input data filtering and sanitization, I'm curious whether there's a best (or most used) practice? Is it better to filter/sanitize the data (of …
1
vote
1answer
90 views
To sanitize all user’s input in PostgreSQL by PHP
This question is based on this thread.
Do you need the explicit sanitizing when you use pg_prepare?
I feel that pg_prepare sanitizes the user's input automatically such that we …
1
vote
2answers
171 views
Strip Inline CSS and JavaScript in Rails
I'm working on a Rails application and I would like to know what's the best way to strip blocks of CSS or JavaScript.
<style>
...
</style>
-or-
<script>
...
&l …
