
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
superagent-wsse
Advanced tools
A superagent plugin that generates headers for WSSE authentication.
##Install## Install with npm
npm install superagent-wsse
##Usage##
var request = require('superagent');
var wsse = require('superagent-wsse');
var config = {
username: '123',
password: 'abc'
};
request
.get('http://example.com')
.use(wsse(config));
.end(function(res) {
console.log(res.text);
});
##About WSSE## WSSE is a family of open security specifications for web services, specifically SOAP web services. However, the Username Token algorithm is not SOAP-specific; it can be easily adapted to work within the HTTP authentication framework.
An HTTP request to a backend that uses WSSE authentication.
GET /api/things HTTP/1.1
Authorization: WSSE profile="UsernameToken"
X-WSSE: UsernameToken Username="...", PasswordDigest="...", Nonce="...", Created="..."
FAQs
A superagent plugin that generates headers for WSSE authentication.
We found that superagent-wsse 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.