Questions tagged [http-digest]

42 questions
2
votes
1 answer

HTTP Digest + Rspec

I have a pretty basic HTTP Digest Authentication setup on my Rails 3 app. It mostly follows examples found in the Rails Controller Guide: My ApplicationController has a before_filter: def digest_authenticate success =…
djibouti33
  • 12,102
  • 9
  • 83
  • 116
2
votes
1 answer

What is the Symfony http_digest key?

The use of http digest authentication in Symfony requires a 'key' property to be specified: firewalls: main: pattern: ^/ anonymous: ~ form_login: false provider: fos_user_bundle …
Jon Cram
  • 16,609
  • 24
  • 76
  • 107
1
vote
1 answer

Digest Auth with Zombie.js

I would like to use Zombie.js to connect to a site that uses Digest Auth. Can I get to the http request headers from the runtime? Or will I need to patch Zombie to add digest auth support?
1
vote
2 answers

Basic and Digest Access Authentication with Java

I am developing a web application with Spring. I have read about basic and digest authentication fundamentals. However how can I implement it with Java, is there any code example or is there any framework does it form me?
kamaci
  • 72,915
  • 69
  • 228
  • 366
1
vote
2 answers

Restlet 2.0.8: Multiple authentication methods (BASIC, DIGEST) for single restlet Application instance?

We're using Restlet 2.0.8 and have an Application instance overwriting org.restlet.Application#createInboundRoot(). In there, we create the Router instance and return (at the moment) a DigestAuthenticator, like in the code snipped…
Christof
  • 779
  • 8
  • 21
1
vote
1 answer

Get password inside authenticate_or_request_with_http_digest

I have an app which connects to an iphone app, which in turn authenticates it's users via http_digest. I'm using authlogic, and in my schema users of the website are "users" and users of the phone app are "people". So, i have user_sessions and…
Max Williams
  • 32,435
  • 31
  • 130
  • 197
1
vote
1 answer

How to integrate HTTP Digest Auth into Strongloop's Loopback?

I'm relatively new to Strongloop's Loopback. A project I'm working on requires HTTP-Digest to use as authentication. I have setup the ACL on the models (and endpoints). SPA client uses REST to consume services. I'm stuck on how to use http digest…
1
vote
1 answer

Groovy Digest authentication

I am trying to write a groovy script (java code is welcome as well ;)) which should allow me to perform the Digest authentication. The need being it is to be able to use Digest auth in SOAPUI becauer SOAP doesn't support native this kind of…
Marcin Sanecki
  • 1,324
  • 3
  • 19
  • 35
1
vote
0 answers

Symfony doesn't dispatch security.authentication.failure event for HTTP Digest

I'm trying to implement login failure listener for HTTP Digest authentication with Symfony 2.6.6 and it's standard Security component. I've created a service with following configuration: sp_security.auth_listener: class:…
1
vote
0 answers

Http digest authentication on Android fails with 401

I am trying to do http digest authentication from an android client. Here is a curl line that connects and does the digest successfully. curl -i --digest --user 'c@c.com:500a436e-2d5d-4a2e-be82-19651f7ea904' -v…
Cameron McBride
  • 6,779
  • 11
  • 40
  • 52
1
vote
1 answer

DigestAuthenticationFilter with database users, possible?

My Spring-Security implementation for http-digest: Code:
user1358518
  • 93
  • 2
  • 13
1
vote
1 answer

Restlet HTTP_DIGEST authorization in android

Got following problem with HTTP_DIGEST authorization via Restlet framework on Android. 05-20 18:39:14.623: W/System.err(4584): Challenge scheme HTTP_DIGEST not supported by the Restlet engine. 05-20 18:39:17.498: W/System.err(4584): Couldn't find…
mrtworo
  • 13
  • 3
1
vote
1 answer

Use HTTP Digest Authentication for a Single Route

I'd like to use HTTP Digest authentication for a specific route in my modular Sinatra App. The examples listed within the sinatra recipes website simply describe how to enable digest auth for an entire app. The solution presented for getting this to…
Tyler Brock
  • 29,626
  • 15
  • 79
  • 79
0
votes
1 answer

Using plain text passwords with authenticate_or_request_with_http_digest

I've got myself a little stuck trying to get a quick bit of HTTP Digest authentication up and running, pretty much like suggested within the guide: Ruby on Rails Guides: Action Controller Overview > HTTP Digest Authentication class…
0
votes
0 answers

Python Requests.get not returning data between HTML Tags

I'm putting together a web scraper to bring in data from the web interfaces of multiple networked devices in a local network. I'm using the following code: import requests from bs4 import BeautifulSoup from requests.auth import HTTPDigestAuth url…