Basic authentication is a method for a web browser or other client program to provide a user name and password when making a request.

learn more… | top users | synonyms

0
votes
1answer
23 views

How to do a basic authentication in a functional view in Django?

I want to do a basic authentication on a functional view. The view is expecting a POST request from a client script. So as soon as the client is authenticated, it will POST some new data to the view. ...
0
votes
0answers
6 views

IIS 7.5 Basic authentication very slow

I have a c#/mvc4 app that I've deployed a few places now. At one location I'm experiencing extremely slow response times to log in. The site comes up initially really fast and once logged in ...
0
votes
2answers
17 views

Command-line RESTful service invoker for Linux?

Is there any sort of single-line command I could use on a Linux machine for invoking a web service over SSL using Basic Authentication? It seems to me there should be, but my Google-fu seems to be ...
0
votes
1answer
45 views

ASP.net Web API RESTful web service + Basic authentication

I'm implementing a RESTful web service using ASP.Net Web Api. I have concluded to use Basic authentication + SSL to do the authentication part. What is the best/correct way to implement that? My ...
2
votes
1answer
50 views

How to get ServiceStack authentication to work? (with iPhone clients)

We have hired a contractor who is writing an iPhone app for us, and I'm starting to write the backend service for it with ServiceStack. I'm struggling with authorization in general: what kind of ...
0
votes
1answer
30 views

Set headers using javascript

I need to download a file from a web service which uses basic authentication. This means I need to add an authorization header to the request. I know how to do this using jQuery Ajax, but I CANNOT use ...
0
votes
1answer
37 views

Web Api won't download file using jQuery Ajax and Basic Auth

I am using the ASP.NET Web API to build a prototype of a web service (and site) which has a method to download a file. When the user on the front-end presses the export button a jQuery ajax GET ...
0
votes
1answer
51 views

.Net web api, SSL + basic auth

I have multiple sets of sensor networks that are sending data to a .net web api. Somehow, I need to secure some of the endpoints of the API (so that I can be certain that the information sent to the ...
0
votes
1answer
29 views

Two Factor Authentication with Basic Auth for REST API?

I am implementing a REST API that has both mobile application and browser based clients and users. Based on questions I've asked and previous questions here and at security.stackexchange, I have come ...
0
votes
0answers
30 views

Web Api Cross Domain Basic Authentication

I have setup a web api to allow cross domain access with Basic Authentication. When I make a cross domain GET request to the API, it works fine and I am getting token in "Authorization" header in my ...
0
votes
0answers
29 views

ios HTTP basic authentication with wrong user/password (401 unauthorized extra data)

I have one small problem with HTTP basic authentication. I have some web sevice (REST) which provides some JSON for me. I have neither service sources nor access to this server. I can authenticate on ...
0
votes
1answer
30 views

Creating a native browser login using meteor/jQuery

I would like to prompt a native login for my admin page (something like this http://demo2.opencrypt.com/oc/members/). I'm aware that most like I have to use $.ajax and force it to response ...
0
votes
0answers
11 views

How to re-authenticate on a WCF Service hosted in IIS7.5?

I currently have a WCF Service hosted in IIS7.5 and have setup the Basic Authentication which is linked directly to the company Active Directory so anyone who accesses the WCF Service will be prompted ...
0
votes
0answers
17 views

Supress/unset WWW-Authenticate header in Apache 401 response

I have a API that I need to password protect. To do this I want to use HTTP basic for authentication of the users since that is already in use elsewhere on the server. Since the requests for the API ...
0
votes
2answers
100 views

Cannot authenticate against Windows domain using ColdFusion 10, IIS 7.5, LDAP

We have been struggling on an upgrade from Windows 2003 Server (ColdFusion 8) to Windows 2008 with ColdFusion 10. We finally have the settings correct to handle and process all of our ColdFusion ...
0
votes
0answers
36 views

ASP.NET MVC Basic Authentication with Android 4.0 Chrome

I have setup a basic authentication ActionFilterAttribute in my MVC web site to lock it down while in development, which works 100% across all the browsers that I am testing for (IE9+, Chrome, FF, iOS ...
1
vote
1answer
81 views

How to pass through window asking for basic auth credentials that appears when click link redirecting from HTTP to HTTPS?

I have a website where most of pages are normally used via HTTP but some other pages are available only via HTTPS. Site is protected by basic auth (credentials are the same for HTTP and HTTPS pages). ...
0
votes
1answer
83 views

web api windows authentication unauthorized on foxxl

I hope somebody can help me with the following issue, I have been working on a mvc4 web api running on .net 4.0 and ef code first. I am trying to use basic authentication in combination with the ...
0
votes
0answers
42 views

How get user name in MVC WebAPI Controller

I have a Logon Controller Get method where I want to return the user id. I am using basic authorization and all work fine but in the Get method I am not able to get the correct user id. This is the ...
0
votes
0answers
51 views

WCF Self-Hosted Data Services with CORS and Basic Auth support

I'm building a WCF Self-Hosted Data Service (OData, by the way) and I'm using Basic Authentication to authenticate users. It wasn't very hard, I just needed some configuration steps, build a ...
-2
votes
0answers
6 views

Authentication for Cell phone, message never recieved [closed]

Is the authentication for phone number having problem? I keep asking it to sent me message yet. no message recieved.
1
vote
0answers
22 views

Combining mod_rewrite and basic auth via .htaccess

I have a WordPress site which is using the seo friendly urls. For this, some mod_rewrite rules where defined. Now I need to add extra security to a single file via the .htaccess file (only ...
4
votes
1answer
159 views

Jenkins and Tomcat using Reverse-Proxy Auth plugin

I cannot seem to find a good explanation on how to get Jenkins running on a Tomcat server using basic HTTP authentication. Some basic information: OS: Windows 7 64 bit Tomcat version: 7.0.40 ...
1
vote
0answers
27 views

Pre-emptive auth with JMeter and HTTPClient 4

Using JMeter 2.9 Following this: JMeter Basic Authentication For HTTP Client 3 it works. But for HTTP Client 4 it doesn't seem to send the header.
0
votes
0answers
62 views

C# Windows Store App HTTPClient with Basic Authentication leads to 401 “Unauthorized”

I am trying to send a HTTP GET request to a service secured with BASIC authentication and https. If I use the RESTClient Firefox plugin to do so there is no problem. I am defining the basic-header and ...
1
vote
1answer
73 views

BasicAuth with Express and Mongoose

I'm trying to add a basic authentication to my Express paths. To check if the combination user/pass is correct, I read the collections usermodels in my MongoDB database. Here is my code : server.js ...
0
votes
1answer
33 views

Nginx Basic Auth and subfolders

I have a problem with subfolders in a basic auth procted folder. In the protected folder i have a folder named phpmyadmin, which contains phpmyadmin. Im not able to run phpmyadmin, when basic is ...
0
votes
0answers
14 views

500 error after updating htaccess

I've been working through "PHP, MySQL, JavaScript, & CSS" by Robin Nixon, and have hit a brick wall with the Basic Authentication in PHP section: the login pop-up won't accept a correct username ...
0
votes
0answers
48 views

Web API: User.Identity.Name empty for just one action in a controller using BASIC authentication

I have had BASIC authentication set up on my Web API project for a while, using a custom written AuthorizeAttribute. The AuthorizeAttribute sets the Thread.CurrentPrincipal, upon authorization of ...
1
vote
2answers
104 views

Spring security 3 http-basic authentication-success-handler

H i'm using spring security for form-login i have <http auto-config="true"> <intercept-url pattern="/pages/**" access="ROLE_USER" /> <form-login ...
0
votes
0answers
83 views

c# webbrowser winforms http basic authentication - prompt user to input password

I'm working on a c# webclient using winforms. I need the webbrowser control to prompt the origin windows authentication popup, when navigating to the page like in IE. I've already read the ...
0
votes
1answer
93 views

Unable to add Authorization header while calling WCF service with basic authentication

I am trying to call a WCF service deployed on IIS with basic authentication enabled, from j query as below. $(document).ready(function () { $.ajax({ type: ...
1
vote
0answers
39 views

ServiceStack BasicAuthentication and IIS7.5

I'm using basic authentication with my service stack API. I use the following code. Plugins.Add(new AuthFeature(() => new AuthUserSession(), new IAuthProvider[] { new BasicAuthProvider() })); ...
0
votes
1answer
44 views

Sencha Touch 2 Images on server with Basic Authentication

I've a problem on Sencha with images which come from server with Basic Authentication, indeed images don't want to show on Android device (Galaxy S2) in tpl, I've tried to put an URL like this ...
0
votes
1answer
58 views

How to avoid pop up login when calling WCF service from jquery ajax

Friends, I know you have been facing these kind of question a lot.I was unable to find an answer even after a lot of google search.Well, lets come to the issue. Requirement: Call a WCF Service GET ...
0
votes
1answer
35 views

Rails 3.2 Nginx Unicorn Basic Authentification

I am trying to get Basic Authentification to work with Rails 3.2 nginx and Unicorn The configuration works for hosting my site. I used the Rails Basic Authentification in the Controller but i have to ...
1
vote
1answer
76 views

How to do token based auth using ServiceStack

How would I implement the following scenario using ServiceStack? Initial request goes to http://localhost/auth having an Authorization header defined like this: Authorization: Basic skdjflsdkfj= ...
0
votes
1answer
57 views

Basic HTTP Auth in Go

I'm trying to do basic HTTP auth with the code below, but it is throwing out the following error: 2013/05/21 10:22:58 Get mydomain.com: unsupported protocol scheme "" exit status 1 func basicAuth() ...
0
votes
1answer
48 views

Chrome basic auth and digest auth issue

I'm having some issues with Chrome canceling some HTTP requests and I'm suspecting cached authentication data to be the cause. Let me first write down some important factors about the application I'm ...
0
votes
0answers
56 views

Apache HttpClient 4.2.5: Target server digest authentication fails with Proxy Basic auth

We are trying to do HTTPGet on a target server enabled with Digest authentication. It works perfectly fine, however when proxy with basic authentication is introduced target authentication is failing. ...
1
vote
1answer
77 views

Protect my Django REST API (basic Authentication or anything else)

I'm trying to protect my Django restful api. I got two clients : my Django Front end application (Ajax requests on my server) a python application using httplib to make its own requests For now ...
-1
votes
0answers
27 views

Authentication with DefaultAsyncHttpClient

I am having the next exception, while trying to use DefaultAsyncHttpClient and BasicAuthCache. java.lang.ClassCastException: org.apache.http.nio.conn.scheme.AsyncSchemeRegistry cannot be cast to ...
6
votes
0answers
241 views

DotNetOpenAuth - Can't get the network credentials to work

So I've been working with DotNetOpenAuth for a while, Today I needed to add support for provider that forces me to send the secret key with Basic authentication (I've been using an old version and ...
0
votes
0answers
24 views

WCF Basic Authentication failed

I have created a WCF service having the following config <system.serviceModel> <bindings> <wsHttpBinding> <binding name="wsHttpLargeMessage" ...
0
votes
2answers
18 views

Python urllib2 accesses page without sending authentication details

I was reading urllib2 tutorial wherein it mentions that in order to access a page that requires authentication (e.g. valid username and password), the server first sends an HTTP header with error code ...
0
votes
0answers
117 views

c# - http web request with https and basic authentication

I'm trying to do a webrequest over a https url with basic authentication. And its not working! below is my code, it actually works if i use a non secure url vs the secure one, and i can't figure out ...
0
votes
0answers
110 views

Programmatically configure WCF client binding to access SSL + Soap 1.1 + Basic Auth

I'm trying to write a C# WCF client (generated by svcutil from wsdl) to access a CXF (java) service implementing the same wsdl. The service is working fine but I'm having trouble connecting to it on ...
1
vote
2answers
50 views

Adding basic http authorization in a ajax json script

Not really sure how to add authentication in an ajax call for JSON information. I am trying to follow the examples given ...
0
votes
0answers
23 views

Specific logins for each solr core using basic authentication

I downloaded Solr, and I've got multiple cores working in my instance. I'm trying to get different authentication for the cores working. I've tried the following in webdefault.xml: ...
0
votes
1answer
76 views

NSURLRequest with UTF8 password

Here is a method I've written to connect to a server and get a user auth token: + (void)getAuthTokenForUsername:(NSString *)username password:(NSString *)password ...

1 2 3 4 5 15