Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
@soinlabs/hawk
Advanced tools
Error and logs framework for Soin Labs projects.
For getting a simple use of Hawk, follow the steps bellow:
Export the Hawk constructor and make an instance:
// your index.js to handle hawk singleton configuration
const { Hawk } = require("@soinlabs/hawk");
const customizedHawk = new Hawk({
logsPath: "yourWorkspace/route/example/logsDirectory",
slackToken: "yourWebhookChannelURL",
appName: "yourApplicationName",
optionalSign: "optionalBenchmark",
});
Use your Hawk instance to perform your logs
customizedHawk.log("My first log");
const newError = customizedHawk.CreateElasticError("message", 300);
customizedHawk.log(newError);
// It is possible to perform a simple log with logging level
const { Logger } = require("@soinlabs/hawk");
customizedHawk.log("My first log", Logger.SILLY);
Some error and logs handling utilities
// Some error and logs handling utilities:
const { Logger, LoggedError } = require('@soinlabs/hawk')
const LoggingLevels = {
error: Logger.ERROR,
warn: Logger.WARN,
info: Logger.INFO,
http: Logger.HTTP,
verbose: Logger.VERBOSE,
debug: Logger.DEBUG,
silly: Logger.SILLY,
};
const ErrorLevels = {
low: LoggedError.LOW_LEVEL,
medium: LoggedError.MEDIUM_LEVEL,
high: LoggedError.HIGH_LEVEL,
};
/**
* It creates an Elastic Error with message and code, after, it makes log with this error
* and throw the created error as an exception
* @param {String} message what happened?
* @param {Number} status status code
* @param {Number} errorLevel optional
*/
function sendError(message, status, errorLevel = ErrorLevels.low) {
const error = customizedHawk.CreateElasticError(message, status);
error.setErrorLevel(errorLevel);
customizedHawk.log(error, LoggingLevels.error);
throw error;
}
/**
* It performs a log with this message at warning level
* @param {String} msg
*/
function sendWarning(msg) {
customizedHawk.log(
{ message: msg, referenceCode: customizedHawk.getReferenceCode() },
LoggingLevels.warn
)
}
/**
* It creates an Elastic Error with message and code, after, it makes log with this error
* @param {String} message
* @param {Number} code
* @param {Number} errorLevel optional
*/
function logError(message, code, errorLevel = ErrorLevels.low) {
const error = customizedHawk.CreateElasticError(message, code)
customizedHawk.log(error, LoggingLevels.error)
}
...
// Use your utilies
// This throw an exception
sendError("No id provided", 400);
// It performs a warning level log
sendWarning('Bad request')
You could do some things like these:
Throw LoggedError
// Use builder pattern
throw new LoggedError()
.setMessage(`Error captured by hawk: ${message}`)
.setReferenceCode("myFile.js")
.setErrorLevel(LoggedError.HIGH_LEVEL)
.setToLog(true)
.setToSlack(true);
// Another way
throw new LoggedError({
message: `Error captured by hawk: ${message}`,
status: 401,
toLog: true,
toElastic: false,
toSlack: true,
newField: "yourNewFieldValue",
});
FAQs
Package to better manage errors, logs, and its notifications
We found that @soinlabs/hawk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 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
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.