
Research
Namastex.ai npm Packages Hit with TeamPCP-Style CanisterWorm Malware
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.
JSON Web Tokens (JWT) utils.
This module is able to parse and generate both encrypted and unencrypted JWT tokens.
hashKey) is needed to generate a JWT signature.encryptKey) is needed only if you need to deal with encrypted JWT tokens.This module only allows hexadecimal strings as hash and encryption keys. The encryption key must be
a 32-length hexadecimal value (16 bytes) if the encryption algorithm is A128CBC.
The kid (key identifier) goes in the JWT header, and serves as a client identifier, in case you need
to use different keys for different clients.
npm install jwt-utils
var config = { expiration: 600};
var jwt = require('jwt-utils')(config);
// Encode JWT token
jwt.buildJWT(payload, header, hashKey, function(err, token) {
if (!err) {
console.log(token); // something in the format "aaa.bbb.ccc"
}
});
// Decode JWT token
jwt.readJWT(token, hashKey, function(err, token) {
if (!err) {
console.log(token.payload);
console.log(token.header);
}
});
// Encrypt JWT token
jwt.buildJWTEncrypted(payload, header, encryptKey, hashKey, function(err, token) {
if (!err) {
console.log(token); // something in the format "aaa.bbb.ccc.ddd.eee"
}
});
// Decrypt JWT token
jwt.readJWTEncrypted(token, encryptKey, hashKey, function(err, token) {
if (!err) {
console.log(token.payload);
console.log(token.header);
}
});
// Read JWT header
jwt.readJWTHeader(token, function(err, header) {
if (!err) {
console.log(header);
}
});
npm test
The following file has registered the error of this library: errors.json
Copyright 2015 Telefónica Investigación y Desarrollo, S.A.U
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
FAQs
JSON Web Tokens (JWT) utils
The npm package jwt-utils receives a total of 162 weekly downloads. As such, jwt-utils popularity was classified as not popular.
We found that jwt-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.

Research
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.