
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
node-mbed-dtls-modified
Advanced tools
================
node DTLS (server and client) wrapping mbedtls.
This package was forked from Spark's original server implementation and merged with their client implementation.
*** Some of the lineage of this code, particularly the extended certificate support, is a little murky. If you are aware of the fork that added it please let me know so that I may add the proper acknowledgements.
The wrapped library is now pulled directly from ARMmbed's repo, rather than Spark's. The ciphersuites and API have been extended to allow PSK and CA certificates to be loaded at runtime, and on a per-instance basis.
Here is the scope of possible options, along with their default values.
const options = {
host: 'localhost', // The target address or hostname.
port: 5684, // The target UDP port.
socket: undefined, // An already established socket, if you'd rather spin your own.
key: undefined, // DER format in a buffer. Our private key.
peerPublicKey: undefined, // DER format in a buffer. The server's public key, if applicable.
psk: undefined, // Buffer. Pre-shared Symmetric Key, if applicable.
PSKIdent: undefined, // Buffer. PSK Identity, if applicable.
CACert: undefined, // DER format in a buffer. CA public key, if applicable.
debug: 0 // How chatty is the library? Larger values generate more log.
};
The cryptographic parameters will likely change in the future as options are added for...
error when the connection has a problem.
// err: Error code.
// msg: Optional error string.
client.on('error', (err, msg) => {});
close when the socket closes.
//hadError: A boolean. Did the socket close because of an error?
client.on('close', (hadError) => {});
secureConnect when we successfully establish a connection. This will only occur once for any given client.
// socket: A connection socket, ready for data.
client.on('secureConnect', (socket) => {});
Here is the scope of possible server options, along with their default values.
const options = {
key: null, // Our server's private key. DER format in a Buffer.
handshakeTimeoutMin: 3000, // How many milliseconds can a handshake subtend before being dropped?
debug: 0 // How chatty is the library? Larger values generate more log.
};
error when the server has a problem.
// err: Error string/code.
server.on('error', (err) => {});
close when the server stops listening.
// No arguments to callback.
server.on('error', (err) => {});
listening when the server setup completes without problems.
// No arguments to callback.
server.on('listening', () => {});
lookupKey TODO: Doc forthcoming.
resumeSession TODO: Doc forthcoming.
secureConnection when a client successfully establishes a connection. This will only occur once for any unique client.
// client: The client socket
// session: The session identifier
server.on('secureConnection', (client, session) => {});
connection each time a client connects. This is not the same thing as session-establishment (See: secureConnection).
// client: The client socket that connected.
server.on('connection', (client) => {});
clientError when a client socket experiences a problem.
// err: Error string/code.
// client: The client socket that had the problem.
server.on('error', (err, client) => {});
FAQs
Node mbed DTLS Modified
We found that node-mbed-dtls-modified demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.