1
vote
3answers
62 views

AJAX security and user managment

I am working on a web application that will be hosted on a server that is "on the internet", not a LAN. The app uses quite a bit of AJAX calls and has about 12 ajax handler files for the functions. ...
4
votes
1answer
132 views

Best way to secure an AJAX app+request

I'm trying to impliment Ajax for my app , before i go with this , i want to know about few effective ways to protect the ajax requesting frm thefts , which fulfill below conditions ; say there are ...
1
vote
1answer
633 views

Ajax/jQuery: Same Origin Policy

I want to know the below pairs consider http://en.wikipedia.org/wiki/Same_origin_policy? https://myserver.com/ <--> https://myserver.com:443/ Is it considered a cross domain? My problem occurrs ...
0
votes
1answer
14 views

Security concerns for Ajax using chrome inspect

I am making one website in which the form is submitted using jQuery ajax. I have taken care of most of the security majors like HTTPS, session cookie, encryption etc. Hence I have minimised the ...
0
votes
1answer
16 views

Ajax security: how to be sure that data sent back to the server is generated by my code?

I apologize in advance if this question sounds naive to you. The problem is this: I have this function and I want the callback function to send the "response" back to my server via Ajax. function ...
0
votes
1answer
58 views

AJAX POST from Firebug posts null values?

I am trying to test the security of an application which uses AJAX requests. I have tried using the Firebug terminal but the data does not make it through to the server. Is this type of testing even ...
1
vote
0answers
80 views

common login component

I have a server side component which performs user authentication with the LDAP server. My organization has got a set of different web applications and all of them depend on this component for user ...
0
votes
0answers
70 views

Security for jsp includes

I have a page where I list comments and attachments that are made to that comment. To make my attachment module scalable(I want to use it in different places in application), I have created a ...