
Research
Using Trusted Protocols Against You: Gmail as a C2 Mechanism
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.
@madgex/datadog-logger
Advanced tools
Require the package:-
const DatadogLogger = require('@madgex/datadog-logger');
To use global logger instance:-
DatadogLogger.Logger.info('Using global logger instance');
To create the console logger (note - sets global logger instance):-
//Set min output level (lower levels won't be logged)
let loggerOptions = { level: 'debug' };
if (process.env.NODE_ENV === 'production') {
//If not set - logs wil be output to console
loggerOptions.dataDog = {
//Note: myServicePortNo - you will need to ask systems which port your service should log to
port: myServicePortNo,
udp: true, //if false will use TCP
// hostIp: x.x.x.x -- use to override agent host - leave unset to discover current host on AWS
};
}
_logger = await DatadogLogger.createLogger(loggerOptions);
_logger.info('logger is setup');
//OR
DatadogLogger.Logger.info('logger is setup');
Example usages:-
_logger.error(err);
_logger.debug('info', infoObj);
_logger.trace('trace message');
To setup the good reporter for Hapi:-
const goodOptions = {
ops: {
interval: 1000,
},
reporters: {
//Note: use previously created logger
loggerReporter: [DatadogLogger.createGoodReporter(_logger, {
pathsToInclude: ['/v1']
})]
},
};
const server = Hapi.server(...)
await server.register([
...
{ plugin: Good, options: goodOptions }
]);
This module has custom levels equivalent to those used in nlog and serilog:-
const _loggingLevels = {
fatal: 0,
error: 1,
warn: 2,
info: 3,
debug: 4,
trace: 5
};
FAQs
Setup console and Hapi Good logger
We found that @madgex/datadog-logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 15 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
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.