I am asking this because most of the online banking software is built using Java. Is there any real reason for this?
|
|
|||
|
|
|
Actually, the security in Java and Python is the same. Digest-only password handling, cookies that timeout rapidly, careful deletion of sessions, multi-factor authentication. None of this is unique to a Java framework or a Python framework like Django. Django, indeed, has a security backend architecture that allows you to add your own LDAP (or AD) connection, possibly changing the digest technique used. Django has a Profile model where you can keep additional authentication factors. Django offers a few standard decorators for view function authorization checking. Since Python is so flexible, you can trivially write your own decorator functions to layer in different or additional authentication checking. Security is a number of first-class features in Django. |
||
|
|
|
|
I find your connection between Java and banking wrong ended. Most Banking Software has terrible security. And much banking software is written in Java. Does ths mean Java makes it more difficult to write secure software than other languages? Probably it's not Java's fault that there is so little quality security (and safety) wise in Banking software. Actually, like the other posters mention, the choice of your Language usually has very little consequences for your security - unless you select one of the few languages where only hotshot coders can write secure code in (C and PHP come to mind). Many huge E-Commerce sites are written in Python, Ruby and Perl using various frameworks. And I would argue that the security requirements or merchants are much higher than the requirements of the banking industry. That is because merchants have to provide security and good user experience, while banking customers are willing to put up with unusable interfaces SecureID tokens and whatever. So yes: Django is up to the task. |
||
|
|
|
|
The reasons for building banking apps in Java are not related to security, at least IMHO. They are related to:
|
|||
|
|
|
|
You should not rely the security of the application on the framework. even though Django does come in with a pretty good number of measures against classical security issues, it can not guarantee that your application will be secure, you need much more than a programming Framework to get a security critical application. I'd say yes, Django is a good choice as long as you know its powers and limitations and are aware of the security flaws of every application. |
||
|
|
|
|
Are you referring to the fact that the complete application is built in Java, or just the part you see in your browser? If the latter, the reason is probably because in the context of webpages, Java applets can be downloaded and run. |
||
|
|
|
|
Probably the reason behind Java is not in the in the security. I think Java is more used in large development companies and banks usually resort to them for their development needs (which probably are not only related to the web site but creep deeper in the backend). So, I see no security reasons, mostly cultural ones. |
|||
|
|
