
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
backbone.basicauth
Advanced tools
This plugin enables access to remote resources which are protected by HTTP Basic Authentication through your Backbone Models and Collections.
You can set Basic Authentication credentials in two ways:
credentials
.url
property.If you are unsure which mode to pick, use the credentials
property on the model.
model.credentials
Usage:
var Model = Backbone.Model.extend({
url: 'http://path/to/basic/auth/protected/resource'
});
var model = new Model();
model.credentials = {
username: 'user',
password: 'pass'
};
// or ...
model.credentials = function() {
return {
username: 'user',
password: 'pass'
};
};
model.fetch();
This mode is good for authentication that may change when the app is used, e.g. if different users are able to authenticate with the app. The credentials can be hard coded or set dynamically.
This mode is the most flexible. If you are unsure which mode to use, try this one first.
model.url
Usage:
var Model = Backbone.Model.extend({
url: 'http://username:password@path/to/basic/auth/protected/resource'
});
var model = new Model();
model.fetch();
This mode is good for models where the username/password is unlikely to change, e.g. a fixed API key for your app. The plugin takes care of parsing the URL to create the necessary Basic Authentication header, and jQuery removes the credentials from the URL so your username and password isn't sent to the server directly on the URL.
Thanks goes to Luis Abreu for his work implementing this.
A resource protected with HTTP Basic Authentication requires the following HTTP header to be set on every request:
Authorization: Basic <accesstoken>
The access token is formed by taking the username and password, concatenating together with a :
separator and encoding into Base64.
This plugin handles the Base64 encoding and automatically sets the Authorization
header on every request which uses Backbone.sync
.
On occasion, it can be useful to bypass Backbone.sync
and use raw $.ajax
(for example, when hitting server API resources which do not conform to RESTful principles). More information on this subject can be found in this excellent blog post by Derick Bailey.
If you need/want to do this, there is a convenience function which will help you build the BasicAuth header: Backbone.BasicAuth.getHeader()
, which can be used to create the header to be set directly on the AJAX request.
Example:
// Pass the credentials to the plugin to build the header
$.ajax({
method: 'GET',
dataType: "json",
url: 'http://path/to/basic/auth/protected/resource',
headers: Backbone.BasicAuth.getHeader({
username: 'user',
password: 'pass'
})
});
btoa()
function (a polyfill is available if btoa()
is not supported in your target browser)The idea of this plugin is to adhere to the standard HTTP Basic Authentication scheme. There is bound to be a 'basic' way to read the username / password combination in your chosen server-side language.
package.json
for use with npm.username:password
to the URL string. The old method of setting the Basic Auth token (Backbone.BasicAuth.set
/ Backbone.BasicAuth.remove
) has now been removed from the codebase. Thanks to Luis Abreu for the PR.Copyright 2013, Tom Spencer (@fiznool), Luis Abreu (@lmjabreu).
backbone.basicauth.js may be freely distributed under the MIT license.
FAQs
HTTP Basic Authentication for Backbone
The npm package backbone.basicauth receives a total of 9 weekly downloads. As such, backbone.basicauth popularity was classified as not popular.
We found that backbone.basicauth demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.