Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@libp2p/identify
Advanced tools
Implementation of the Identify Protocol
Use the identify
function to add support for the Identify protocol to libp2p.
This protocol allows network peers to discover the multiaddrs the current node listens on, and the protocols it supports.
A second function, identifyPush
is also exported to add support for identify/push.
This protocol will send updates to all connected peers when the multiaddrs or protocols of the current node change.
[!TIP] For maximum network compatibility you should configure both protocols
import { createLibp2p } from 'libp2p'
import { identify } from '@libp2p/identify'
const node = await createLibp2p({
// ...other options
services: {
identify: identify()
}
})
import { createLibp2p } from 'libp2p'
import { identifyPush } from '@libp2p/identify'
const node = await createLibp2p({
// ...other options
services: {
identifyPush: identifyPush()
}
})
$ npm i @libp2p/identify
<script>
tagLoading this module through a script tag will make its exports available as Libp2pIdentify
in the global namespace.
<script src="https://unpkg.com/@libp2p/identify/dist/index.min.js"></script>
Licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
FAQs
Implementation of the Identify Protocol
We found that @libp2p/identify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.