Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
10answers
2k views

Why move your Javascript files to a different main domain that you also own?

I've noticed that just in the last year or so, many major websites have made the same change to the way their pages are structured. Each has moved their Javascript files from being hosted on the same ...
18
votes
8answers
14k views

How do I add a type to GWT's Serialization Policy whitelist?

GWT's serializer has limited java.io.Serializable support, but for security reasons there is a whitelist of types it supports. The documentation I've found, for example this FAQ entry, says that any ...
10
votes
8answers
5k views

In Python, How Do You Filter a String Such That Only Characters in Your List Are Returned?

Imagine a string, like 'Agh#$%#%2341- -!zdrkfd' and I only wish to perform some operating on it such that only the lowercase letters are returned (as an example), which in this case would bring ...
6
votes
3answers
95 views

Risks in allowing users to upload HTML/JS files

We're designing an online aracade for HTML5 games. The users can upload a zip file which contains their game. On upload, the zip is unpacked by the server and each file is looped checking it's ...
4
votes
6answers
373 views

Should I allow underscores in first and last name?

We have a form that has fields for first and last name. I was asked to allow underscores. I don't know of any sql injection that uses underscores, but I also don't know of anyone with an underscore ...
3
votes
2answers
153 views

Html white list in c#

Spent about 30 minutes or so on SO looking for a definitive solution to this problem. This question seems to have been asked a lot of times but... Most solutions use regular expressions. There are ...
3
votes
2answers
588 views

IP Address Block of Appengine Servers?

I'm working with a third party webservice who requires that all calls to their service are made from whitelisted IP addresses. That is, I must give them IP addresses from which I will be making calls ...
3
votes
2answers
367 views

Turn an AppEngine Blacklist into a Whitelist

AppEngine allows the definition of blacklists, to disallow access from certain IP Ranges (http://code.google.com/appengine/docs/python/config/dos.html). What I would like to do is the inverse: A ...
3
votes
3answers
1k views

html5 cache -> “network: *” doesn't work

I am trying a simple test with the html 5 cache. Here is a simple web page : <!DOCTYPE html> <html manifest="test.manifest"> <head> </head> <body> <img ...
3
votes
5answers
532 views

Why use a whitelist for HTML sanitizing?

I've often wondered -- why use a whitelist as opposed to a blacklist when sanitizing HTML input? How many sneaky HTML tricks are there to open XSS vulnerabilities? Obviously script tags and frames ...
3
votes
2answers
140 views

Does anyone know how a white-list class access approach similar to Google App Engine can be implemented?

I am writing a container framework that can dynamically deploy a Jar file containing user developed classes in the container, and then using a web interface execute certain classes from the Jar file. ...
2
votes
1answer
68 views

PHPUnit whitelist code coverage

The whitelist isn't working how I would expect when get code coverage reports. I am using Zend Framework and my Zend files are also in the library directory just like the project quickstart. I'm ...
2
votes
1answer
528 views

(#3) App must be on whitelist facebook

I'm trying to post a messsage to a wall using FB.api My perms are: 'email, read_stream, publish_stream' and my code is: FB.getLoginStatus(function(response){ if(response.session) { var ...
2
votes
1answer
109 views

whitelisting to stop undesireable bots using IIS

Basically I want to do this in IIS: In Apache you can block many bots by simply changing your .htaccess files to OPT-IN instead of OPT-OUT, basically whitelisting instead of blacklisting. You let in ...
2
votes
1answer
151 views

Script function to check if IP is whitelisted

I have a Python script which blocks some IPs if they perform some actions. This script contains a function to check if the IP is already blocked. In addition to this, I'd like the function to also ...
2
votes
1answer
188 views

Is it wise to use jQuery for whitelisting tags? Are there existing solutions in JavaScript?

My problem I want to clean HTML pasted in a rich text editor (FCK 1.6 at the moment). The cleaning should be based on a whitelist of tags (and perhaps another with attributes). This is not primarily ...
2
votes
3answers
70 views

Good whitelist for search terms

I'm implementing a simple search on a website, and right now I'm working on sanitizing the input. My plan is to make a whitelist of allowed characters. I'm using PHP, and so far I've got the current ...
2
votes
3answers
217 views

Whitelisting website email so it is not rejected as spam

What are the processes I need to go through to make sure emails sent from my web server are not rejected as spam? This question is for legitimate site emails that members have requested like a daily ...
2
votes
2answers
282 views

Google app engine to run executable files

Is it possible to run executable files in google app engine? Like by using Runtime.exec? There is whitelist on google app engine documentation which list classes that can be used but functions/ ...
2
votes
3answers
352 views

What is whitelist and blacklist data?

I was reading about development of XPCOM component. I came across these terms called whitelist data and blacklist data, I tried to find out on google but couldn't .. I do not know how its related to ...
2
votes
3answers
2k views

.NET HTML whitelisting (anti-xss/Cross Site Scripting)

I've got the common situation where I've got user input that uses a subset of HTML (input with tinyMCE). I need to have some server-side protection against XSS attacks and am looking for a ...
2
votes
2answers
656 views

Can I whitelist IP's using IIS running a PHP site?

As outlined by this guys post, blocking IP's via PHP is pretty easy. However, how can I do this, site wide, using IIS? Here are my (big) caveats: I do not have access to change the php.ini. So I ...
2
votes
3answers
2k views

Best whitelist capable http proxy for Windows?

I would like to setup a http proxy on my work machine (no admin rights, WinXP) to only allow access to a whitelist of URLs. What would be the easiest solution? I prefer open-source software if ...
2
votes
1answer
371 views

Whitelist Model Binding doesn't seem to work with complex properties

I have a POST action that looks like this: public ActionResult Create([Bind(Include="userrole,credentials.emailAddress,credentials.password")]User u, string confirmPassword, bool agreeToTerms) I'm ...
2
votes
0answers
182 views

Blacklists, Whitelists, Spam Folders and Email [closed]

I want to get on the whitelists for my email system, any recommendations whom to should contact about doing this, do I contact the big email providers directly (Yahoo, gmail, Microsoft hotmail/msn, ...
1
vote
1answer
141 views

What is the state of whitelisting in phonegap 1.3.0?

Does phonegap/callback/cordova have a whitelist on all platforms? Is it implemented the same way on each?
1
vote
1answer
118 views

Setting up whitelists in PHPUnit

I'm running into the following problem when setting up a whitelist for php: I've set the following filter in the phpunit xml: <filter> <whitelist> <directory ...
1
vote
7answers
207 views

A list of professionally-useful and safe file types?

I have a system where users can upload, well, anything really - and these files are available to other users. I need to come up with a list of file types that are genuinely needed by professionals in ...
1
vote
3answers
415 views

Whitelisting with devise

I am using devise to manage user authentication in my rails app. Devise is really great for that. However I have a special requirement for my application: A user must be whitelisted before he can ...
1
vote
1answer
213 views

How do I create a class whitelist for user code in Java?

I am creating an application that runs downloaded Java code, and I would like to be able to specify exactly which built-in Java classes the code can access. I imagine this involves using a ClassLoader ...
1
vote
2answers
391 views

SQL Server: Replacing all special chars in SQL string

I am working with SQL Server 2005. I need to select all rows from a table that have the same string as a given parameter. SELECT * FROM mytable WHERE title LIKE @param; The only problem is that the ...
1
vote
1answer
253 views

HTML sanitizer using regex & security issues

I know that parsing HTML with regexp is bad, and it can not work for all cases (there are plenty topics about that on Stack Overflow). But I still wanted to try to sanitize HTML with regex based on a ...
1
vote
4answers
422 views

blacklisting vs whitelisting in form's input filtering and validation

which is the preferred approach in sanitizing inputs coming from the user? thank you!
1
vote
3answers
397 views

How to IP whitelist for a single URL in IIS

I have an ASP.NET application that's made up of several .aspx pages. I want one of those .aspx pages to be accessible by only a certain set of IPs. Is this possible? I know you can IP whitelist at ...
1
vote
1answer
364 views

Flash: Grant access to webcam programmatically / behind the scenes?

We're building a kiosk app that will have a fairly wide deployment. The app is in Flash running in a browser and requires the use of the webcam. As it stands, each kiosk will show the usual Flash "do ...
1
vote
1answer
782 views

Generate PDF with picture on Google App Engine on JAVA

I'm trying to generate PDF files in a project hosted on GAE. For now, I use iText and it work fine to create text only PDF. I really need to add pictures on my pdf. And when I try with iText I catch ...
1
vote
3answers
338 views

How do DotNetOpenAuth whitelist and blacklists work?

Does anyone have any documentation on DotNetOpenAuth and the way it handles while lists and black lists? My config <untrustedWebRequest> <blacklistHosts> <add ...
1
vote
1answer
436 views

Whitelisting, preventing XSS with WMD control in C#

Are there any problems with what I am doing here? This is my first time to deal with something like this, and I just want to make sure I understand all the risks, etc. to different methods. I am ...
1
vote
7answers
666 views

Allow user submitted HTML in PHP

I want to allow a lot of user submitted html for user profiles, I currently try to filter out what I don't want but I am now wanting to change and use a whitelist approach. Here is my current ...
1
vote
2answers
1k views

How to Site-Lock a Flash Application?

I have a flash application that I am going to put up on my website shortly. I want to be able to "lock it" to the site to prevent: Hosting the .SWF on another site (after an illicit download), and ...
1
vote
2answers
417 views

email whitelist/blacklist in python/django

I am writing a django app that keeps track of which email addresses are allowed to post content to a user's account. The user can whitelist and blacklist addresses as they like. Any addresses that ...
1
vote
2answers
485 views

Are there white lists for Yahoo, Gmail, Hotmail and AOL?

In my website (under development), the members can send messages to each other which are sent directly to their email, now I'm worried that some members can send spam to other members (I have a spam ...
1
vote
1answer
1k views

Apache Whitelist reverse proxy

We have a reverse proxy here, running Apache in version 2.2.x Essentially I want to create a whitelist so that only valid URLs will go through the proxy and be processed by the web server. How do you ...
0
votes
1answer
24 views

Do I use a properties file or just flat file to store a list of strings in JSP?

I have a config.properties file which my JSP page uses to get configurations from. I need to create a whitelist, which just contains strings. Since property files are like key value pairs do I need to ...
0
votes
1answer
39 views

Can Perforce do a sort of changelist white list?

Is it possible to restrict write access to a Perforce depot, but still allowing particular changelists? Basically, instead of spending lots of time managing users in a write-enabled group during a ...
0
votes
0answers
57 views

Ads API - Whitelist

To gain access to the Ads API, I must submit an online application and, if I understood well, this application must be into a facebook whitelist. I read docs and tried power editor. I created ads, ...
0
votes
0answers
9 views

access control for secure stream service

We need to create a secure stream delivery system, to serve only specific clients with a swf stream. What's the best approach to create access control - authentication so that only these specific ...
0
votes
0answers
40 views

Web server added to Facebook's whitelist for Flash content?

I want to develop app for facebook that can post a link that contain flash audio to my wall/friend wall. Is this possible? I already put the content to my web server, but facebook didn't recognize it ...
0
votes
3answers
170 views

What is the IP address of the Facebook server that sends me app deauthorization callbacks?

I would like to whitelist the IP addresses of the Facebook servers that sends me a callback whenever a user deauthorizes my App. Which IP addresses should I whitelist?
0
votes
2answers
221 views

Is “credit_balance” whitelisted feature on Facebook?

I've been storming the internet for information on how to obtain "credit_balance" from Facebook user. To get user credit_balance, I'm using: Facebook Credits - Getting error code 13 when trying to ...

1 2