
Research
TeamPCP Compromises Telnyx Python SDK to Deliver Credential-Stealing Malware
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.
nginxparser
Advanced tools
nginx-parser parse nginx log files in node.js
$ npm install nginxparser
To read a log file
var NginxParser = require('nginxparser');
var parser = new NginxParser('$remote_addr - $remote_user [$time_local] '
+ '"$request" $status $body_bytes_sent "$http_referer" "$http_user_agent"');
parser.read(path, function (row) {
console.log(row);
}, function (err) {
if (err) throw err;
console.log('Done!')
});
To read from stdin, pass - as the path.
To tail a log file (equivalent to tail -F)
parser.read(path, { tail: true }, function (row) {
//...
});
FAQs
Parse Nginx log files
The npm package nginxparser receives a total of 124 weekly downloads. As such, nginxparser popularity was classified as not popular.
We found that nginxparser 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.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.

Security News
/Research
Widespread GitHub phishing campaign uses fake Visual Studio Code security alerts in Discussions to trick developers into visiting malicious website.