Gathering detailed insights and metrics for wsse
Gathering detailed insights and metrics for wsse
Gathering detailed insights and metrics for wsse
Gathering detailed insights and metrics for wsse
hana-saml-wsse
SAML ECP client with assertion delegation support.
insomnia-plugin-emarsys-wsse
This plugin adds the WSSE headers with Emarsys format.
wsse-sdk
专门用于 AI 流式输出和站内消息广播的 SSE(Server-Sent Events)长连接管理 SDK。提供了完整的事件监听、自动重连和消息处理机制,特别适合 AI 对话、实时通知等场景。
superagent-wsse
A superagent plugin that generates headers for WSSE authentication.
npm install wsse
Typescript
Module System
Node Version
NPM Version
TypeScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
17 Stars
185 Commits
3 Forks
2 Watchers
1 Branches
4 Contributors
Updated on Dec 26, 2024
Latest Version
6.0.0
Package Id
wsse@6.0.0
Unpacked Size
8.90 kB
Size
3.34 kB
File Count
5
NPM Version
9.3.1
Node Version
18.14.0
Published on
Feb 18, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
WSSE Username Token generator for Node.js
See: http://www.xml.com/pub/a/2003/12/17/dive.html
1npm install wsse
1import wsse from 'wsse'; 2 3const token = wsse({ username: 'bob', password: 'taadtaadpstcsm' }); 4 5// 'bob' 6console.log(token.getUsername()); 7 8// 'taadtaadpstcsm' 9console.log(token.getPassword()); 10 11// e.g. '2003-12-15T14:43:07Z' 12console.log(token.getCreated()); 13 14// e.g. 'd36e316282959a9ed4c89851497a717f' 15console.log(token.getNonce()); 16 17// e.g. 'quR/EWLAV4xLf9Zqyw4pDmfV9OY=' 18console.log(token.getPasswordDigest()); 19 20// e.g. 'UsernameToken Username="bob", PasswordDigest="quR/EWLAV4xLf9Zqyw4pDmfV9OY=", Nonce="d36e316282959a9ed4c89851497a717f", Created="2003-12-15T14:43:07Z"' 21console.log(token.getWSSEHeader()); 22console.log(token.toString()); 23console.log(token + ''); 24 25// ----- advanced ----- 26 27// you can use `UsernameToken` class. 28const token2 = new wsse.UsernameToken({ 29 username: 'bob', // (required) 30 password: 'taadtaadpstcsm', // (required) 31 created: '2003-12-15T14:43:07Z', // (optional) you can specify `craeted`. 32 nonce: 'd36e316282959a9ed4c89851497a717f', // (optional) you can specify `nonce`. 33 sha1encoding: 'hex' // (optional) you can specify `sha1encoding` for wrong WSSE Username Token implementation. 34}); 35 36// you can use `nonceBase64` option. it encodes the nonce to base64 in header. 37// 'UsernameToken Username="bob", PasswordDigest="quR/EWLAV4xLf9Zqyw4pDmfV9OY=", Nonce="ZDM2ZTMxNjI4Mjk1OWE5ZWQ0Yzg5ODUxNDk3YTcxN2Y=", Created="2003-12-15T14:43:07Z"' 38// e.g. Hatena API http://developer.hatena.ne.jp/ja/documents/auth/apis/wsse 39console.log(token2.getWSSEHeader({ nonceBase64: true })); 40console.log(token2.toString({ nonceBase64: true }));
ISC
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
project is archived
Details
Reason
Found 0/27 approved changesets -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
10 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More