Tagged Questions
A challenge-response authentication mechanism for HTTP
5
votes
2answers
923 views
does red5 read tomcat-users.xml
I have been busy creating an app for Red5. Imagine what was my surprise when I tried to configure basic/digest authentication and I couldn't.
What struck me as strange is that I have a running tomcat ...
4
votes
2answers
72 views
How to use Selenium with Digest Authentication?
I am looking for a good way to use Selenium with Digest Authentication (for a flex UI though I don't think that makes a difference if I can't do authentication). I'd like to avoid ...
4
votes
1answer
182 views
Digest authentication on http requests from clojure (?)
I would like to consume a REST API using clojure, but I need to use digest authentication. I've been googling, but I can find no direct support for it in any of the client libs, and the documentation ...
4
votes
2answers
419 views
What is digest authentication?
i searched on google for a simple explanation of digest authentication but didn't find any good ones. How does it differ from Basic Authentication other than sending credentials as plain text?
Please ...
3
votes
2answers
1k views
Digest Authentication w/ Jquery, is it possible?
Hey Guys, I'm trying to send a request that requires HTTP Digest authentication. Is Digest possible in jQuery? and if so is close to the correct way to do it (not currently working):
<script ...
3
votes
1answer
432 views
HTTP digest authentication for AJAX requests
Hey SO, so I've got an API I'm making calls to in a browser application. Said API lives on a server that requires whitelisting and HTTP Digest Authentication.
To meet the whitelisting requirement, ...
3
votes
1answer
326 views
cxf client authorization issue
I use JAXRSClientFactory.create method to create proxy like this:
IMyService myService
= JAXRSClientFactory.create("http://myserviceurl/", IMyService.class, "login1", "pwd", null);
and this code ...
3
votes
2answers
1k views
PHP Digest auth, logout
Is there a way to logout of a digest authentication done in php.
I have tried unset($_SERVER["PHP_AUTH_DIGEST"]);
But it wont ask to relogin.
I know if i close the browser then it will work and here ...
3
votes
2answers
2k views
Apache HttpClient Digest authentication
Basically what I need to do is to perform digest authentication. First thing I tried is the official example available here.
But when I try to execute it(with some small changes, Post instead of the ...
3
votes
1answer
3k views
Rails 3 HTTP digest authentication
Is HTTP digest authentication still supported in Rails 3?
I tried the following code in Rails 2.3.5, it works.
class Admin::BaseController < ApplicationController
before_filter :authenticate
...
2
votes
2answers
84 views
PHP: Authenticating my REST application
I've been looking into ways of making my REST application a tad more secure. HTTP Basic authentication seems like a way, but with the need of shipping username+password between the client and the ...
2
votes
0answers
252 views
Mocking digest authentication in RestEasy
I am using RestEasy to develop a REST server and using the mock dispatcher (org.jboss.resteasy.mockMockDispatcherFactory) for testing the service in my unit tests. My service requires digest ...
2
votes
2answers
984 views
PHP Digest HTTP Authentication example not working, why?
So I decided to use digest HTTP authentication for my REST API. I googled it and found an entry in the PHP manual with an example of how to do it. So I copy the script, put it in index.php on my ...
2
votes
1answer
744 views
Firefox asks for username/password on every HTTP request with Digest Authentication enabled on IIS6
I've recently enabled Digest Authentication on an intranet website/application I am creating for my company in ASP.NET.
The reason I have done so is because Windows Authentication seemed to only work ...
2
votes
1answer
191 views
How does digest authentication prevents replay attacks?
I found many questions on stackoverflow which has a mention about digest authentication. I could not find on how does the digest authentication prevent replay attacks? I use the fiddler tool to ...
2
votes
1answer
340 views
Looking for a way to get HTTP Digest Authentication headers from incoming http requests
I've been working on a REST implementation with my existing Cake install, and it's looking great except that I want to use HTTP Digest Authentication for all requests (Basic Auth won't cut it). So ...
2
votes
3answers
6k views
Password Protect a directory using IIS 7 Digest Authentication
This may just be my misunderstanding of the subject, but I would hope to find a simple answer.
I run a web server for my own use, among many reasons just so I have a domain name to reference my ...
1
vote
0answers
51 views
Configuring Tomcat 6.0 for LDAP authentication using authentication=“DIGEST-MD5”
Simple authentication:
When using LDAP browser, I can log into company's LDAP server using plain text password by providing: CN=username,OU=users,DC=my,DC=company,DC=com. If I copy-paste this string ...
1
vote
2answers
64 views
jdbcDigestAuthentication only works when providing the hash
I started a project setting up basic authentication. I now want to switch to Digest Authentication. The problem is that the authentication is validated only if I provide the hash of the actual ...
1
vote
2answers
80 views
Is digest authentication in Apache Sling possible?
Is digest auth possible in Apache Sling? If so any pointers appreciated!
1
vote
0answers
298 views
Zend Digest/Basic authentication keep failing
I'm trying to setup very basic digest authentication under /admin on my domain (actually, it's a subdomain). I register the authentication procedure in my bootstrap.php:
protected function ...
1
vote
1answer
226 views
Implementing Digest-MD5 in J2ME: How to compute the 16 octet MD5 hash of a String?
I am implementing digest-md5 in J2ME.In the computation of the client response, the following steps are given:
Create a string of the form "username:realm:password". Call this string X.
Compute the ...
1
vote
1answer
354 views
Java Digest Authentication POST XML
I am in need of some help getting DIGEST Authentication to work. I am using the apache 4.1 library. When i try to login i get.
Exception in thread "main" javax.net.ssl.SSLPeerUnverifiedException: ...
1
vote
1answer
366 views
HttpListener Digest Auth schema
i have to implement a small REST server to manage a remote DB, nothing special.
The security is NOT a critical issue, since this server has to run in an intranet environment; we only want to filter ...
1
vote
1answer
314 views
zootool api authorization
I'm trying to add a page to my zootool page via the api ( http://zootool.com/api/docs/add ) with java. For this i need to use digest authentication.
A php example is given for the authorization of ...
1
vote
2answers
317 views
How to decrypt the value
Actually I want to get the password back from the encrypted password.
The password is encrypted as follows:
MessageDigest md = MessageDigest.getInstance("SHA");
md.reset();
byte[] ...
1
vote
2answers
374 views
Digest authentication using HttpURLConnection
I am hosting my java application on GAE. I have to download some external RSS page and parse it. The problem is external site requires digest authentication. Is there any way to do digest ...
1
vote
2answers
103 views
why does a collision detection in a cryptographic hash function make finding other collisions easier?
For wikipedia I read:
Joux[3] noted that 2-collisions lead to n-collisions: if it is feasible to find two messages with the same MD5 hash, it is effectively no more difficult to find as many ...
1
vote
2answers
894 views
Trying to connect to a “digest authentication” webservice using HTTParty or Net:HTTP (or etc)
I have been trying to connect to a web service that is using digest authentication.
I am able to connect in Safari using user:password@service.site.com/endpoint
I have tried in Ruby and Rails to ...
1
vote
4answers
453 views
Can I use an already MD5 encoded password in Digest Authentication
I have MD5 hashes of passwords in a database that I want to use against HTTP AUTH DIGEST. But in reading the docs, it looks like the digest hash contains a hash of the username,realm and plaintext ...
0
votes
0answers
19 views
HTTP headers for Digest Authentication not working with Flask website (although the same method works perfectly with the example in RFC 2617)
I'm trying to use HTTP Digest Authentication with a Flask application, but the response hash I generate seems to be wrong (so I get back another 401). I say it seems to be wrong because although it's ...
0
votes
0answers
57 views
RESTFul authentication after obtaining challenge from server
I'm getting some confusion in supplying the challenge to the server for authentication is a RESTFul architecture,
From my server, I am returning this,
function authenticate()
{
$realm = ...
0
votes
0answers
33 views
WWW-Authorization Header showing popup for login
I'm trying to design a restful authentication system using Digest authentication system. However, when i'm setting the header WWW-Authenticate, on the client, I'm getting a really ugly user interface ...
0
votes
0answers
27 views
logging in to a xmlapi via c# (xmlrpc)
I am trying to log in to a xmlapi like https://xxx.xxx.xxx.xxx/xmlapi/xmlapi with c#. I have an username and a password but whatever I tried I got the message "unauthorized". It is using a digest ...
0
votes
1answer
53 views
Support both Basic and Digest authentication on the same URI mapping with Spring Security
I have a use case for securing a RESTful service and I'm not exactly sure it can be implemented or not - essentially I would like to have both Basic and Digest authentication set up. Setting up both ...
0
votes
0answers
110 views
How to implement digest authentication in Java?
I know this is a very broad question but I don't intend to ask you a full implementation (I know there are libraries that will do that for me) I just have some small questions about it.
Is the ...
0
votes
0answers
26 views
How do I override Apache's Digest Authentication
I have passenger fronted by Apache. Am trying to have digest authentication for my URLs selectively.
I have the following scenario.
Location / needs to be digest authenticated under realm Foo
...
0
votes
0answers
99 views
Best way to implement WS PasswordDigest, CXF, Spring Security and LDAP
I'm trying to authenticate a user via WS PasswordDigest using Spring Security to an LDAP server. I was searching in several posts that it possible to do it, but I cannot do it. Is it?
I made it work ...
0
votes
1answer
136 views
Problems with digest authentication with http.client in Node.js
I try to implement digest request when using http.get and get "Digest authentication failed" message every time :(
var hashlib = require('hashlib'),
http = require('http'),
url = ...
0
votes
0answers
110 views
AJAX - Intercept 401 Repsonses for Custom Authentication
I'm in need of a cross-platform solution for doing Digest Access Authentication correctly, and preferably using "qop=auth-int" for POST requests. It appears that only Opera will respond with ...
0
votes
0answers
60 views
HTTP Digest Authentication - Opaque Parameter
The authentication challenge for digest authentication contains a parameter named 'opaque' which should be returned in the authentication response by the client.
I've searched RFC 2716 for an use ...
0
votes
3answers
116 views
Strange HTTP authentication issue
I'm experiencing issues when trying to communicate with a web server (Apache 2.2.17) using Digest authentication, and sending data with the POST method: it always returns a 401 error. However, it ...
0
votes
0answers
176 views
Testing Rails3 HTTP Digest Authentication
Does anyone have an idea how we'd test the HTTP Digest Authentication in Rails?
In the example given at http://lightyearsoftware.com/2009/04/testing-http-digest-authentication-in-rails/ i am getting ...
0
votes
1answer
199 views
How do you use JMeter with Digest Authentication?
I'm trying to use JMeter to test a web application, but there is no documentation on how to set it up to use digest authentication. I've tried using the proxy server to record the authentication, but ...
0
votes
0answers
39 views
how to implement Digest authenticatin in android?
I want to know how can I implement Digest Connection in Android?
This is third time I am asking this question but till now no one has answered .
Please Please Help me
0
votes
0answers
48 views
The returned realm is garbled from my created server when visited in the browser
I use socket to build my own web server by C#,In the config,my realm is Japanese。
I try to response the client like this(Actually i followed this post) :
HTTP/1.0 401 Unauthorized
Server:{0}
Date: ...
0
votes
0answers
87 views
Secure login with jQuery and gsasl
Can it really be true that there's no code out there for jQuery that enables secure login through the methods implemented in gsasl?
I am thinking mainly about DIGEST-MD5 and SCRAM-SHA1.
0
votes
0answers
215 views
Digest authentication with reliable messaging
I get the following error when trying to call the endpoint
The HTTP request is unauthorized with client authentication scheme 'Digest'. The authentication header received from the server was ...
0
votes
0answers
95 views
Implementing digest authentication for non-servlet containers
I am prototyping a component using a non-servlet container(Netty). I have built a simple HTTP stack on top of this lets me get the request headers etc. However, I need to implement digest ...
0
votes
0answers
90 views
How to use javax digital signature library to verify reference elements
I want to use the Java digital signature library to verify the reference elements. I can't figure out how it can actually verify reference elements without having the entire document (or at least the ...