
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.
Setup HTTPS details related to TLS according to the User Agent provided. Source code from got-scraping.
$ npm install https-tls --save
'use strict'
const uniqueRandomArray = require('unique-random-array')
const userAgents = require('top-user-agents')
const tls = require('https-tls')
const randomUserAgent = uniqueRandomArray(userAgents)
const userAgent = randomUserAgent()
const https = tls(userAgent)
console.log(https)
// {
// ciphers: 'TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:…',
// signatureAlgorithms: 'ecdsa_secp256r1_sha256:rsa_pss_rsae_sha256:rsa_pkcs1_sha256…',
// ecdhCurve: 'X25519:prime256v1:secp384r1',
// minVersion: 'TLSv1',
// maxVersion: 'TLSv1.3'
// }
You can also setup it as got hook:
'use strict'
const got = require('got')
const tlsHook = require('https-tls/hook')
const instance = got.extend({
hooks: {
beforeRequest: [
tlsHook
]
}
})
https-tls © Kiko Beats, released under the MIT License.
Authored and maintained by Kiko Beats with help from contributors.
kikobeats.com · GitHub Kiko Beats · X @Kikobeats
FAQs
Setup HTTPS details related to TLS according to the User Agent provided.
We found that https-tls demonstrated a healthy version release cadence and project activity because the last version was released less than 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.