
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
as-hmac-sha2
Advanced tools
Self-contained implementations of SHA-256, SHA-512, HMAC-SHA-256 and HMAC-SHA-512 for AssemblyScript.
Simple hashing:
let msg = Uint8Array.wrap(String.UTF8.encode("test"));
let h = Sha256.hash(msg);
Chunked input:
let st = new Sha256();
st.update(msg1);
st.update(msg2);
let h = st.final();
HMAC:
let msg = Uint8Array.wrap(String.UTF8.encode("message"));
let key = Uint8Array.wrap(String.UTF8.encode("key"));
let mac = Sha256.hmac(msg, key);
Constant-time check for equality:
let ok = verify(mac, expected_mac);
Constant-time hexadecimal encoding/decoding:
let hex = bin2hex(h);
let bin = hex2bin(hex);
FAQs
SHA-256, HMAC-SHA256, SHA-512 and HMAC-SHA512 for AssemblyScript.
The npm package as-hmac-sha2 receives a total of 10 weekly downloads. As such, as-hmac-sha2 popularity was classified as not popular.
We found that as-hmac-sha2 demonstrated a not healthy version release cadence and project activity because the last version was released 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.