Anatomy of a Failed (Nation-State?) Attack
1–10 of 40 posts
Re: Anatomy of a Failed (Nation-State?) Attack
#2Re: Anatomy of a Failed (Nation-State?) Attack
#3Re: Anatomy of a Failed (Nation-State?) Attack
#4[flagged]
Re: Anatomy of a Failed (Nation-State?) Attack
#5Re: Anatomy of a Failed (Nation-State?) Attack
#6Some details https://freebird.in/malicious-code-source-code-shared-via-jo...
Re: Anatomy of a Failed (Nation-State?) Attack
#7There are mitigations you can put in place by using containers, virtual machines or even the execution environment e.g. Deno's ability to block/whitelist network calls[0], Bun's --ignore-scripts [1] and supply chain package managers have made some strides here like pnpm [2]. But it's knowing your threat surface and how to use your tooling which can be quite overbearing on cognitive load, especially in fast paced scenarios like "job of a lifetime offer!" from linked in.
Easiest way by default is to use ephemeral VMs / Sandbox Containers for such tasks which don't have mounted directories to your system etc. Or spin up a cheap EC2 / VPS to work on them in a short period of time.
[0] - https://deno.com/blog/deno-protects-npm-exploits and https://docs.deno.com/runtime/fundamentals/security/
[1] - https://bun.com/docs/pm/lifecycle
[2] - https://pnpm.io/supply-chain-security
[2] - https://
Re: Anatomy of a Failed (Nation-State?) Attack
#8[flagged]
Re: Anatomy of a Failed (Nation-State?) Attack
#9I almost scheduled a call with them and even self-explained that of course they would be on Pacific time, it's where the money is.
I do have some npm packages under my name and they found me through github, so here is that.
Re: Anatomy of a Failed (Nation-State?) Attack
#10the only real long-term solution to node-based attacks like this is to run any remote code in a container, or even a VM?