Tagged Questions
16
votes
7answers
4k views
Is Django a good choice for a security critical application?
Is Django a good choice for a security critical application?
I am asking this because most of the online banking software is built using Java. Is there any real reason for this?
11
votes
6answers
1k views
Validating Uploaded Files in Django
A Django app that I am working has an Event model. An Event may have associated photos, static html files and pdf files.
I would like to allow trusted users to upload these files, but I am wary about ...
8
votes
2answers
1k views
Django upload_to outside of MEDIA_ROOT
My deployment script overwrites the media and source directories which means I have to move the uploads directory out of the media directory, and replace it after the upload has been extracted.
How ...
6
votes
2answers
164 views
Securing communication [Authenticity, Privacy & Integrity] with mobile app?
An Android/Iphone app will be accessing application data from the server.
[Django-Python]
How can I secure the communication with the mobile app ?
Expectation : Secure enough for sensitive ...
5
votes
2answers
303 views
Best practices for preventing Denial of Service Attack in Django
What are the best practices in Django to detect and prevent DoS attacks... Are there any ready to use apps or middleware available which prevents website access and scan through bots?
5
votes
1answer
65 views
Can a python view template be made to be 'safe/secure' if I make it user editable?
Say I need to have a templating system where a user can edit it online using an online editor.
So they can put if tags, looping tags etc., but ONLY for specific objects that I want to inject into the ...
5
votes
5answers
510 views
How do I prevent execution of arbitrary commands from a Django app making system calls?
I have a Django application I'm developing that must make a system call to an external program on the server. In creating the command for the system call, the application takes values from a form and ...
3
votes
2answers
322 views
Django SECRET_KEY
What exactly is the point of the SECRET_KEY in django? I did a few google searches and checked out the docs ( https://docs.djangoproject.com/en/dev/ref/settings/#secret-key ), but I was looking for a ...
2
votes
2answers
97 views
Python/Django: How to render user-submitted videos code fragments as embedded videos?
I want to enable users to submit video links in a post/comment and render it as embedded videos.
For example, youtube supplies code for embedding videos, something like:
<iframe width="420" ...
2
votes
1answer
703 views
Django view security and best-practices
I've recently begun working on Django and now my app is nearing completion and i've begun to wonder about security and best-practices.
I have view that generates a page and different functions in the ...
2
votes
2answers
118 views
How can I limit an SQL query to be nondestructive?
I'm planning on building a Django log-viewing app with powerful filters. I'd like to enable the user to finely filter the results with some custom (possibly DB-specific) SELECT queries.
However, I ...
2
votes
5answers
1k views
Separately validating username and password during Django authentication
When using the standard authentication module in django, a failed user authentication is ambiguous. Namely, there seems to be no way of distinguishing between the following 2 scenarios:
Username was ...
1
vote
1answer
88 views
Django Permissions and Security for Basic Chat App
If I wanted to implement some sort of chat tool in my django webapp, implemented with basic ajax polling as opposed to comet, what should I do to secure it, besides running over SSL. Should I just use ...
1
vote
2answers
2k views
Django file upload input validation and security
I'm creating a very simple django upload application but I want to make it as secure as possible. This is app is going to be completely one way, IE. anybody who uploads a file will never have to ...
0
votes
1answer
120 views
Django 1.3 post login/logout signals in relation with authentication
First of all both methods below return True. I'd expect the second one to return False using the django standard admin authentication procedure or am I wrong?
def post_login(sender, **kwargs):
...
0
votes
1answer
320 views
Django: allow safe html tags
Im looking into XSS with various frameworks and CMS and whether they provide methods in protecting against it (not just programmaticly avoiding the situation).
I know that in Djangos templating ...
0
votes
1answer
170 views
Django: name 'csrf_token' is not defined
I've a little problem with adding a csrf_token on my form in Django (1.2.5), though I've added all the necessary middleware classes
{% csrf_token %}
gives the ...name 'csrf_token' is not defined ...
0
votes
1answer
85 views
Security considerations - office website/portal on GAE
If one needs to create an office website (that serves as a platform for clients/customers/employees) to login and access shared data, what are the security considerations.
to give you some more ...
0
votes
2answers
421 views
How to chroot Django
Can one run Django in a chroot? Notably, what's necessary in order to set up (for example) /var/www as a chroot'd directory and then have Django run in that chroot'd directory?
Thank you - I'm ...