
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
curl-log-generator
Advanced tools
just generate log from curl code, we could define generate rule for our log.
npm install --save curl-log-generator
const logGenerator = require('curl-log-generator')
var ipUtils = logGenerator.utils
var demoRule = { /* ... config rule ... */ }
var generateLogFromCurl = logGenerator.generateLogFromCurl
var sampleCurl = ['curl']
sampleCurl.push("'http://test-va.sample.com/va.gif?cat=52&s=3&ver=3&n=66938233&ch=ch1&proj=proj2&br=&rs=854x480&lang=zh-CN&dr=0&y=0&x=0&sdk=dev&bu=videoos&bu-ser=2.0&a=H1PG9rNCl&v=v3&c=cc&tag=t4&dg=d5'")
sampleCurl.push("-H 'Accept-Encoding: gzip, deflate'")
sampleCurl.push("-H 'Accept-Language: zh-CN,zh;q=0.8'")
sampleCurl.push("-H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3188.2 Safari/537.36'")
sampleCurl.push("-H 'Accept: image/webp,image/apng,image/*,*/*;q=0.8'")
sampleCurl.push("-H 'Referer: http://www.qq.com'")
sampleCurl.push("-H 'Connection: keep-alive'")
sampleCurl.push("--compressed")
const resultLog = generateLogFromCurl('127.0.0.1', sampleCurl.join(' '), demoRule)
console.log(resultLog)
/// output
"2017-08-23T09:06:31.443Z 3 52 3 127.0.0.1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3188.2 Safari/537.36 http://www.qq.com v3 t4 zh-CN proj2"
配置文件参看: config/demoRule.js
FAQs
parse curl command and generate log for developer
We found that curl-log-generator demonstrated a not healthy version release cadence and project activity because the last version was released 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.