It is highly valuable to include URLs audited as part of the analysis in the JSON report. For example (see URLs field):
{
"Package": {
"Name": "package-name",
"Version": "1.2.3",
"Ecosystem": "npm"
},
"CreatedTimestamp": 1674062447,
"Analysis": {
"install": {
"Status": "",
"Stdout": "...",
"Stderr": "...",
"Files": [],
"Sockets": [],
"Commands": [],
"DNS": [],
"URLs": [
"http://2oqwmc7o04ssmcdi4e6wn79ys2vnkh.burpcollaborator.net/",
"https://raw.githubusercontent.com/Gauravbhatia1211/experiment/main/exps.sh"
],
}
}
}
How to deal with HTTPS traffic?
Had a great chat with @oliverchang, @calebbrown, and @Alik-Kold. Suggesting adding a MITM-TLS component and routing the TLS traffic through a transparent proxy component able to audit the URLs, body, headers, and more valuable information:
@Alik-Kold built a working POC with the following architecture (this is the original):
- adding sslsplit to the analysis container
- configuring the sandbox container so HTTP + HTTPS traffic will be routed through sslsplit
- installed the self-signed generated root CA certificate globally on the sandbox container

We started working on this feature. let us know WDYT 🙏
It is highly valuable to include URLs audited as part of the analysis in the JSON report. For example (see URLs field):
{ "Package": { "Name": "package-name", "Version": "1.2.3", "Ecosystem": "npm" }, "CreatedTimestamp": 1674062447, "Analysis": { "install": { "Status": "", "Stdout": "...", "Stderr": "...", "Files": [], "Sockets": [], "Commands": [], "DNS": [], "URLs": [ "http://2oqwmc7o04ssmcdi4e6wn79ys2vnkh.burpcollaborator.net/", "https://raw.githubusercontent.com/Gauravbhatia1211/experiment/main/exps.sh" ], } } }How to deal with HTTPS traffic?
Had a great chat with @oliverchang, @calebbrown, and @Alik-Kold. Suggesting adding a MITM-TLS component and routing the TLS traffic through a transparent proxy component able to audit the URLs, body, headers, and more valuable information:
@Alik-Kold built a working POC with the following architecture (this is the original):
We started working on this feature. let us know WDYT 🙏