Securing a remote ajax method call - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T14:38:28Zhttp://stackoverflow.com/feeds/question/503469http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/503469/securing-a-remote-ajax-method-call1Securing a remote ajax method call78lro2009-02-02T14:58:58Z2009-02-03T13:20:22Z
<p>Hi</p>
<p>I have coded some JavaScript to perform an ajax call in an asp.net application. This triggers a method that calls a URL, sending some parameters in the POST.</p>
<p>The receiving page processes the data and updates our database.</p>
<p>We will be providing this code to customers to allow them to send us the data we need in their checkout process for each transaction.</p>
<p>Can anyone tell me if there is a way to prevent unauthorized access to this URL? Otherwise an unscrupulous developer could use this URL to add data to our database when they shouldn't be.</p>
<p>Thanks for any pointers.</p>
http://stackoverflow.com/questions/503469/securing-a-remote-ajax-method-call/503494#5034941Answer by Vinze for Securing a remote ajax method callVinze2009-02-02T15:03:59Z2009-02-03T13:20:22Z<p>You should secure you're service using SSL</p>
<p>Edit : I forgot the most "basic" : HTTP authentication (using login/password)
I found a link but it's from 2003 : <a href="http://www-128.ibm.com/developerworks/webservices/library/ws-sec1.html" rel="nofollow">http://www-128.ibm.com/developerworks/webservices/library/ws-sec1.html</a></p>
<p>Edit 2 : As said in comments, I think the problem here fits in the purpose of REST web services... I don't know anything about asp.net but you should look forward to REST tutorials and see the security alternatives you have from HTTP authentication to full WS-Security implementation</p>
http://stackoverflow.com/questions/503469/securing-a-remote-ajax-method-call/503521#5035210Answer by Spikolynn for Securing a remote ajax method callSpikolynn2009-02-02T15:10:28Z2009-02-02T15:10:28Z<p>Could you check in your receiving page is user is logged in, ie </p>
<pre><code>if User.IsAuthenticated
</code></pre>
<p>?</p>
http://stackoverflow.com/questions/503469/securing-a-remote-ajax-method-call/503522#5035220Answer by meouw for Securing a remote ajax method callmeouw2009-02-02T15:10:42Z2009-02-02T15:10:42Z<p>Are all your customers on your domain?<br />
If not you won't be able to use the XMLHttpRequest object to send data from their site. The XHR is subject to the <a href="https://developer.mozilla.org/En/Same_origin_policy_for_JavaScript" rel="nofollow">Same Origin Policy</a>.<br />
You may be able to post to a page from your server in an iframe. You would need to prompt your users for their username and password so that these details aren't exposed your script and the target should be served over ssl.</p>
http://stackoverflow.com/questions/503469/securing-a-remote-ajax-method-call/503534#5035340Answer by 78lro for Securing a remote ajax method call78lro2009-02-02T15:13:24Z2009-02-02T15:13:24Z<p>Ahh will XMLHttpRequest not work from one domain to another?</p>
<p>That's a shame.</p>
<p>It sounds like username and password is the only real way to secure it but Ideally I wanted to just accept the data as part of a checkout process.</p>
http://stackoverflow.com/questions/503469/securing-a-remote-ajax-method-call/503539#5035390Answer by stusmith for Securing a remote ajax method callstusmith2009-02-02T15:14:21Z2009-02-02T15:14:21Z<p>Set up a user login system exactly as usual - i.e. when a user logs in, store a username and password hash in the session or cookie.</p>
<p>The POST page or handler can simply check for the required credentials - if missing or incorrect, you can then just return a permission error.</p>
http://stackoverflow.com/questions/503469/securing-a-remote-ajax-method-call/503568#5035682Answer by hacker for Securing a remote ajax method callhacker2009-02-02T15:21:19Z2009-02-02T15:21:19Z<p>You can use SOAP to pass a username/password with the request. SSL should be used to encrypt the data going over the wire. Here is some code that we use:</p>
<p>This is a class that will hold the Credentials that are sent with the request:</p>
<pre><code>Imports System.Web.Services.Protocols
Public Class ServiceCredentials
Inherits SoapHeader
Private _userName As String
Public Property UserName() As String
Get
Return _userName
End Get
Set(ByVal value As String)
_userName = value
End Set
End Property
Private _password As String
Public Property Password() As String
Get
Return _password
End Get
Set(ByVal value As String)
_password = value
End Set
End Property
Public Sub New()
End Sub
Public Sub NewUserInfo(ByVal ServiceUser As String, ByVal ServicePassword As String)
Me.UserName = ServiceUser
Me.Password = ServicePassword
End Sub
</code></pre>
<p>Add an attribute to the definition of your Web Service:</p>
<pre><code> <WebMethod()> _
<SoapHeader("CredentialsHeader")> _
Function MyWebMethod(ByVal paremetersPassed as String)
'check permissions here
If PermissionsValid(CredentialsHeader) then
'ok!
.......
else
'throw a permission error
end if
End Function
</code></pre>
<p>And then from there, just create a function (in my example, PermissionsValid) to check the permissions:</p>
<pre><code>Function PermissionsValid(byval Credentials as ServiceCredentials) as boolean
'check Credentials.Username and Credentials.Password here and return a boolean
End Function
</code></pre>
<p>This may seem like a bunch of work, but this way, when they send a request, you can check it against a database or whatever else you want. You can also turn off a username easily at your end.</p>
<p>A simpler way would be to restrict the IP addresses that are allowed to hit the service page. But, then you run into issues with IP addresses changing, etc.</p>
<p>BTW, much of this was typed as I did the post, so you may need to check over the code to make sure it compiles. :)</p>
http://stackoverflow.com/questions/503469/securing-a-remote-ajax-method-call/503631#5036310Answer by 78lro for Securing a remote ajax method call78lro2009-02-02T15:38:13Z2009-02-02T15:38:13Z<p>This is good stuff, thanks.</p>
<p>What if the developer adding it to their site, the person with the knowledge decides to fraudulently call the method for their own purposes?</p>
<p>Any idea's? </p>
http://stackoverflow.com/questions/503469/securing-a-remote-ajax-method-call/503690#5036900Answer by hacker for Securing a remote ajax method callhacker2009-02-02T15:54:37Z2009-02-02T15:54:37Z<p>Sorry, I can't add comments as I don't have enough reupation yet.</p>
<p>I don't fully understand your question. Are you asking if the developer you give the username/password to decides to abuse the webservice? </p>
<p>If that is the case, you will probably want to include some sort of logging into the system. (In fact, you should probably do that no matter what.) </p>
<p>You could write an entry in to some sort of log (file, event log, sql table, etc) during the PermissionsValid function. This could show the IP address and the username passed along with the time stamp of when it was done. This way you can see if someone is trying to 'hack' in. </p>
<p>You could also put something in the MyWebMethod function after the permissions have been validated logging the data that the user is sending. This way you know who was sending it, when, from where and what they sent. If you want to go the extra mile, you could even record the data before any updates have been made. That would give you the ability to roll back any malicious changes. </p>
http://stackoverflow.com/questions/503469/securing-a-remote-ajax-method-call/504557#5045570Answer by Nathan for Securing a remote ajax method callNathan2009-02-02T19:36:34Z2009-02-02T19:36:34Z<p>Assuming the follwing:</p>
<pre><code>Browser <-(1)-> ASP/.NET App (`https://123.com/app`) <-(2)-> Web Service (`https://456.com/ws`)
</code></pre>
<p>1) Protect the web service using ssl via certificate exchange + basic auth. This way you know the only allowed consumer is the .net app.</p>
<p>2) Create a proxy on the .net app, say at <code>https://123.com/webservicecall</code> that forwards your requests to the web service.</p>
<p>This way, you're not making a call outside the domain of the web app, you'll know the user that is logged in and you're securing the ws endpoint from both viewing and access.</p>
<p>But really it sounds like you shouldn't be using a proxy and instead call the .net app using ajax and the .net app then makes the web service call directly.</p>
http://stackoverflow.com/questions/503469/securing-a-remote-ajax-method-call/506683#5066830Answer by 78lro for Securing a remote ajax method call78lro2009-02-03T10:50:07Z2009-02-03T10:50:07Z<p>The issue here is that I will be providing the code to our customers and they will be adding it to their website. So I don't have the option of them performing anything much more complex than adding a few lines of code to their site.</p>
<p>The code though, needs to perform a sending of data to our server, somehow securely?</p>
<p>Is this an impossible scenario or would I need to perform some sort of auditing after the processing has occurred?</p>
<p>Thank you everyone for some good suggestions.</p>