
Security News
Nx npm Packages Compromised in Supply Chain Attack Weaponizing AI CLI Tools
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.
Basic authentication library.
Include the Basica module in your application, then call it
by passing the env
hash (should be available in every Rack
based application) and a block. If the env
hash contains the
HTTP_AUTHORIZATION
header, then the username and password will
be passed to the block.
The result of the method call to basic_auth
will be that of
the block. If the HTTP_AUTHORIZATION
header is not found, a
RuntimeError
is raised.
First, an example of Basica in the wild:
require "basica"
include Basica
header = "Basic %s" % Base64.encode64("foo:bar")
env = { "HTTP_AUTHORIZATION" => header }
result = basic_auth(env) do |user, pass|
user == "foo" && pass == "bar"
end
if result
# The right credentials were provided.
end
Now an example of how to use it with Cuba and Shield:
Cuba.plugin Basica
Cuba.define do
basic_auth(env) do |user, pass|
login(User, user, pass)
end
on authenticated(User) do
run Users
end
on default do
res.status = 401
res.headers["WWW-Authenticate"] = 'Basic realm="MyApp"'
res.write "Unauthorized"
end
end
Note that the previous example assumes you have already required Cuba, Shield, Basica, and that you have a User model defined.
Install it using rubygems.
$ gem install basica
FAQs
Unknown package
We found that basica 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
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.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.