Tagged Questions

User Input is data that the user inputs into the program. It generally takes the form of a String, but may also be an integer, floating-point number, etc.

learn more… | top users | synonyms (1)

61
votes
20answers
15k views

How do you implement a good profanity filter?

Many of us need to deal with user input, search queries, and situations where the input text can potentially contain profanity or undesirable language. Oftentimes this needs to be filtered out. Where ...
30
votes
7answers
25k views

How to show button 'Done' on number pad on iPhone?

There is no 'Done' button on number pad by default. When a user finishes entering his numeric information in a textfield, how can I make the number pad disappear? I may do this by remaining the Text ...
24
votes
14answers
4k views

When is it Best to Sanitize User Input?

User equals untrustworthy. Never trust untrustworthy user's input. I get that. However, I am wondering when the best time to sanitize input is. For example, do you blindly store user input and then ...
16
votes
5answers
2k views

Password masking in C# console application

I tried the following code... string pass = ""; Console.Write("Enter your password: "); ConsoleKeyInfo key; do { key = Console.ReadKey(true); // Backspace Should Not Work if (key.Key ...
16
votes
4answers
2k views

“Safe” markdown processor for PHP?

Is there a PHP implementation of markdown suitable for using in public comments? Basically it should only allow a subset of the markdown syntax (bold, italic, links, block-quotes, code-blocks and ...
16
votes
8answers
24k views

JavaScript: Check if mouse button down?

Is there a way to detect if a mouse button is currently down in JavaScript? I know about the "mousedown" event, but that's not what I need. Some time AFTER the mouse button is pressed, I want to be ...
15
votes
3answers
268 views

Is it ever useful to use Python's input over raw_input?

I currently teach first year university students python, and I was surprised to learn that the seemingly innocuous input function, that some of my students had decided to use (and were confused by the ...
15
votes
16answers
5k views

Stop data inserting into a database twice

Im quite new to PHP, i was wondering what methods/preventions other programmers use to stop data being entered twice into a MySQL database when a user refreshes on the same page as a form? Obviouly it ...
15
votes
5answers
2k views

XSS Torture Test - does it exist?

I'm looking to write a html sanitiser, and obviously to test/prove that it works properly, I need a set of XSS examples to pitch against it to see how it performs. Here's a nice example from Coding ...
13
votes
4answers
165 views

Escaping user input from database necessary?

So I know about MySQL injection and always escape all my user input before putting it in my database. However I was wondering, imagine a user tries to submit a query to inject, and I escape it. What ...
13
votes
9answers
3k views

How would you organize a timezone dropdown? [closed]

I'm trying to present the (web) user with a useful subset of Olson timezones, though with a friendlier naming convention. Any recommendations for how to sort and label them for maximum usefulness? ...
12
votes
6answers
513 views

Is it safe to use user input for Python's regular expressions?

I would like to let my users use regular expressions for some features. I'm curious what the implications are of passing user input to re.compile(). I assume there is no way for a user to give me a ...
10
votes
11answers
2k views

What's the best approach to get Date/Time input from the user?

This is a wheel that's been re-invented again and again over the years. The Problem: The user needs to input a Date/Time Basic considerations We want to make it as easy as possible for the user ...
10
votes
6answers
11k views

Use Javascript to change which submit is activated on enter key press

I have a form on an HTML page with multiple submit buttons that perform different actions. However, when the user is typing a value into a text input and hit enters, the browsers generally act as ...
9
votes
6answers
2k views

Disadvantages of scanf

I want to know what disadvantage of scanf() exist. In many of a sites I have read that using scanf will cause buffer overflow some times. What is the reason for that, and is there any other ...
9
votes
3answers
1k views

How do I sanitize user input for proper content-encoding before I save it?

I've got an application where users input text into forms. The data is saved into a MySQL database (collation: utf8_general_ci) and then output as XML (encoding: UTF-8). The problem is that people ...
8
votes
6answers
203 views

Programming style question on how to code functions

So, I was just coding a bit today, and I realized that I don't have much consistency when it comes to a coding style when programming functions. One of my main concerns is whether or not its proper to ...
8
votes
2answers
3k views

Lua - get command line input from user?

In my lua program, i want to stop and ask user for confirmation before proceeding with an operation. I'm not sure how to stop and wait for user input, how can it be done?
8
votes
3answers
927 views

Effective Keyboard Input Handling

What is a good way to implement keyboard handling? In any language, where I write a keyboard-interactive program (such as a tetris game), I end up having some code that looks like this: for event in ...
7
votes
3answers
288 views

bash user input if

I am tring to do simple Do you want to do that? [Y,n] _ question in bash. i tried echo "Do that? [Y,n]" read DO_THAT if ["DO_THAT"="y"]; then do_that fi but it fails: bash: [y=y]: command not ...
7
votes
3answers
169 views

Good practices for parsing user inputs with special characters?

Greetings, I am the program writer for the rebellion against the evil galactic empire. Right now, we are preparing for a daring assault on the Death Star. I have created a vast database of ...
7
votes
5answers
124 views

Should the function or the caller be resonsible for input validation?

I'm doing a security audit on a fairly large php application and was wondering where I should include my user-input validation. Should I validate the data, then send the clean data off to the ...
7
votes
2answers
1k views

How can I get user input without waiting for enter in Perl?

I am trying to make an interactive shell script in Perl. The only user input I can find is the following: $name = <STDIN>; print STDOUT "Hello $name\n"; But in this the user must always ...
7
votes
2answers
591 views

What are the basics of dealing with user input events in Android?

I thought I had understood this question, but something is quite wrong here. When the user (me, so far) tries to press keys, nothing really happens, and I am having a lot of trouble understanding ...
7
votes
4answers
282 views

PHP: best security practices for displayed information?

In PHP, I know that using parameterized queries is the best way to prevent SQL injection. But what about sanitizing user input that will be used for other purposes, such as: Displaying back to a ...
7
votes
4answers
274 views

How can I safely use regexes from user input?

My (Perl-based) application needs to let users input regular expressions, to match various strings behind the scenes. My plan so far has been to take the string and wrap it in something like $regex = ...
7
votes
1answer
553 views

How to preform whitelist-based CSS filtering in PHP

I am working on a site and I would like to make a user able to enter custom CSS into that will be publicly displayed. However, seeing as a good deal of XSS attacks can be preformed through CSS, I ...
7
votes
4answers
2k views

how do I wait on console input in c# for 15 seconds or so

I need to ask for input in console and wait for few sec may be a min after that I need to default to some value. How can basically time our on console input in c# and proceed with default settings? If ...
6
votes
2answers
106 views

Should “http://” be stored with a database record of a URL?

There are a number of fields a user can fill in where they'd enter a URL (their personal website, business site, favorite sites, etc etc). It's the only thing they'd be entering in that particular ...
6
votes
4answers
114 views

New classes created by users?

Consider this situation: I've got an aquarium simulator where I have 5 different types of fishes. Different types means different attributes (speed, colour, hunger, etc). What if I want the user of my ...
6
votes
2answers
2k views

How to get user input in Clojure?

I'm currently learning clojure, but I was wondering how to get and store user input in a clojure program. I was looking at the clojure api and I found a function called read-line, however I'm not ...
6
votes
11answers
470 views

What strategy would you use for tracking user recent activity?

Our customer would like to know who is online and currently using the custom application we wrote for them. I discussed it with them and this doesn't need to be exact, more of a guestimate will work. ...
6
votes
7answers
894 views

What percentage of my time will be spent in user input verfication during web development?

I'm new to developing things on the web. So far, I'm spending a lot of time (50% or so) to try and prevent bad people from putting things like sql injection into my input forms and validating it ...
5
votes
5answers
1k views

Drag the Range of a UI Input Range Slider

<---------[]=====================================[]--------> 0 10 90 100 I need an input range slider with two handles to select a range, and ...
5
votes
1answer
94 views

php - how to validate a regular expression itself?

I need to validate user input that might be a regular expression for filtering fields in his/her own application, how can I check the validity of that regex?
5
votes
9answers
255 views

What is a more elegant solution to these nested if/elseif statements?

I'm building a website that contains users with user profiles. Many of the fields in the profile are optional. There is an opportunity for a lot of user-generated content, and so I need to display ...
5
votes
2answers
889 views

How to set time limit on input

in python, is there a way to, while waiting for a user input, count time so that after, say 30 seconds, the raw_input() function is automatically skipped?
5
votes
10answers
2k views

PHP - HTML Purifier - hello w<o>rld/world tutorial striptags

I am just looking into using HTML Purifier to ensure that a user-inputed string (that represents the name of a person) is sanitized. I do not want to allow any html tags, script, markup etc - I just ...
5
votes
1answer
225 views

supply inputs to python unittests

I`m relatively new to the concept of unit-testing and have very little experience in the same. I have been looking at lots of articles on how to write unit-tests; however, I still have difficulty in ...
5
votes
4answers
411 views

Is it safe to display user input as input values without sanitization?

Say we have a form where the user types in various info. We validate the info, and find that something is wrong. A field is missing, invalid email, et cetera. When displaying the form to the user ...
5
votes
2answers
303 views

User input filtering - do I need to filter HTML?

Note: I take care of SQL injection and output escaping elsewhere - this question is about input filtering only, thanks. I'm in the middle of refactoring my user input filtering functions. Before ...
5
votes
2answers
840 views

How do I read custom keyboard shortcut from user in WPF?

In my application, I want to let users customize keyboard shortcuts, just like it's done in Visual Studio's keyboard options. The user can focus a blank text box and then type any shortcut he wants to ...
5
votes
4answers
1k views

User input parsing - city / state / zipcode / country

I'm looking for advice on parsing input from a user in multiple combinations of City / State / Zip Code / Country. A common example would be what Google maps does. Some examples of input would be: ...
5
votes
1answer
458 views

Ensure a user-defined path is safe in PHP

I am implementing a simple directory listing script in PHP. I want to ensure that the passed path is safe before opening directory handles and echoing the results willy-nilly. $f = $_GET["f"]; if(! ...
5
votes
5answers
1k views

Converting user-entered search query to where clause for use in SQL Server full-text search

What's the best way to convert search terms entered by a user, into a query that can be used in a where clause for full-text searching to query a table and get back relevant results? For example, the ...
4
votes
2answers
79 views

How to safely and correctly convert a number from user input to double?

This is, basically, a CultureInfo problem. Formally, in my country, the decimal separator is a comma (,) and a thousands separator is a dot (.). In practice, however, this is only used by accountants ...
4
votes
1answer
39 views

Securing user input outputted in html with coldfusion

When an user searchs a page I add ?q=[searchterm] to my URL and output something like this: Your search result for <CFOUTPUT>#htmleditformat(URL.q)#</CFOUTPUT>: A while ago I read that ...
4
votes
1answer
102 views

How does jsFiddle allow and execute user-defined JavaScript without being dangerous?

I've been working on a JS library and would like to setup a demo page on Github that allows, for example, users to define their own callbacks and execute commands. I know "eval() is evil" and I can ...
4
votes
4answers
162 views

HTML - How to prevent user from editing form's value?

I am developing a simple web apps that allowed user to key in information using a form when I discovered I could edit that form's input default value using Chrome -> Check Element and submit the page ...
4
votes
1answer
103 views

Xcode will not accept user input!

my xcode will compile but not let me input anything #include <iostream> using namespace std; bool truthStatement; int main (int argc, const char * argv[]) { string name; cout << ...

1 2 3 4 5 12