Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Python 3 bytearray bencoding library.
Encode all data into byte
. Useful for networking.
>>> from bencode import bencode, bdecode
>>> foo = bencode({"foo": [0, -1, 2, "3", {"4": 5}], "bar": {"baz": 1}})
>>> print(foo)
b'd3:bard3:bazi1ee3:fooli0ei-1ei2e1:3d1:4i5eeee'
>>> bar = bdecode(foo)
>>> print(bar)
{b'bar': {b'baz': 1}, b'foo': [0, -1, 2, b'3', {b'4': 5}]}
decoder
for bdecode
Optional argument in bdecode
function, provide decode bytes to another types. It can be helpful for decode dict key into strings.
decoder
is a callback function with arguments: field_type
, value
field_type
str, possible values: "key"
, "value"
;value
bytes.>>> def custom_decoder(field_type, value):
... if field_type == "key":
... return str(value, "ascii")
... elif field_type == "value":
... return str(value, "utf-8")
... else:
... raise Exception("'field_type' can pass only 'key' and 'value' values")
...
>>> bar = bdecode(foo, decoder=custom_decoder)
>>> print(bar)
{'bar': {'baz': 1}, 'foo': [0, -1, 2, '3', {'4': 5}]}
FAQs
Python 3 bencoding implementation
We found that py3-bencode demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.