
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
`p2pshare` is a **Node.js CLI tool** for secure, resumable, parallel **peer-to-peer** file sharing. Built with **TCP sockets** and **event-driven architecture**, it allows multiple peers to send chunks of a file simultaneously, encrypted end-to-end.
p2pshare is a Node.js CLI tool for secure, resumable, parallel peer-to-peer file sharing.
Built with TCP sockets and event-driven architecture, it allows multiple peers to send chunks of a file simultaneously, encrypted end-to-end.
npm install -g p2pshare
To send a file, simply specify the file path. The tool will start a server and wait for receivers.
p2pshare send <file-path>
To receive a file, provide the sender's IP address, port, and the desired destination path.
p2pshare receive <sender-ip> <port> <destination-path>
Scenario: User A has a large file (movie.mp4) and wants to share it with User B and User C.
[ You (A) ]
|
| (Chunks via TCP)
v
[ Friend B ] <----+
| |
(Chunks via TCP) | (This is the P2P part:
| | B becomes a sender for C)
v |
[ Friend C ] <----+
User A (Sender):
p2pshare send movie.mp4.User B (Receiver 1):
p2pshare receive <User-A-IP> 5000 "D:\movies\movie.mp4".User C (Receiver 2):
p2pshare receive <User-A-IP> 5000 "C:\downloads\movie.mp4".FAQs
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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.