
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.
@maeum/tools
Advanced tools
The @maeum/tools is a collection of useful functions for writing APT servers.
npm install @maeum/tools --save
Class to help with AES-256-CBC encryption and decryption. You can use it when writing server code to encrypt the location of an error in the response results. Certain countries may prohibit exposing the location of these errors in the response results. For example, in South Korea, sites with more than a certain number of users are not allowed to expose the location of errors to the public internet. EncryptContainer can be used to encrypt the error response location in such cases.
const encryptioner = new Encryptioner(getEncryptionerOptions());
const err = new Error('i am error raised your specific source code');
// You can use the encrypted value in logs or API responses
const encrypted = encryptioner.encrypt(
JSON.stringify({ message: err.message, stack: err.stack }),
);
const decrypted = encryptioner.encrypt(encrypted);
| Property | Type | Description |
|---|---|---|
ivSize | number | Specify the initialize vector size. |
salt | number | Specifies the maximum size of the salt to make decryption more difficult. |
key | string | Specifies the encryption key. |
| name | Description |
|---|---|
| noop | noop function |
| escape | Use to remove newline characters when logging log record |
| safeStringify | If an exception is thrown when using the JSON.stringify function, execution will stop. safeStringify will return the value passed as defaultValue if an exception is thrown. |
| objectify | Returns only those fields from the input object that conform to the JSON specification |
FAQs
maeum miscellaneous functions
We found that @maeum/tools 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.