
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
connectbasicauth
Advanced tools
Users and passwords (preferably hashed with a salt) are stored in a MySQL database. This module expects a stored procedure with the following signature:
spAuthenticate(username, password) -> [success, username, userRole, systemUser, systemPassword]
The first part of the URL controls which database to use: <SERVER>/<DATABASE>/...
The procedure must be possible to use when connecting to the database as an
authuser. The system username and password is returned by the stored procedure.
There is no need for storing system usernames and password in config files
using this approach (which often is done). The credentials that are returned are
then set in the user and password http headers by this module.
The following environment variable needs to be configured:
process.env.DB_HOSTThis script shows an example of a table and stored procedure for authentication.
Setup your MySQL database according to the instructions above.
Start the test server with node server.js
Basic HTTP Authentication strategy with username and password in the URL (not recommended):
curl -X POST http://jack:secret@localhost:3000/CHANGE_TO_YOUR_DATABASE/first
Basic HTTP Authentication strategy with username and password in the HTTP Header:
curl -X POST http://localhost:3000/CHANGE_TO_YOUR_DATABASE/first -H "Authorization: Basic amFjazpzZWNyZXQ="
NOTE: The use of Buffer has been tested with v6.2.0. base64.js shows how
to base64 encode a string in NodeJS (needed when testing).
FAQs
Basic HTTP Authorization as a connectjs middleware
The npm package connectbasicauth receives a total of 10 weekly downloads. As such, connectbasicauth popularity was classified as not popular.
We found that connectbasicauth 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.