
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.
linkerd-trace
Advanced tools
``` .___ .__ .__ __ .___ __ ____ ____ __| _/____ | | |__| ____ | | __ ___________ __| _/ _/ |_____________ ____ ____ / \
.___ .__ .__ __ .___ __
____ ____ __| _/____ | | |__| ____ | | __ ___________ __| _/ _/ |_____________ ____ ____
/ \ / _ \ / __ |/ __ \ ______ | | | |/ \| |/ // __ \_ __ \/ __ | ______ \ __\_ __ \__ \ _/ ___\/ __ \
| | ( <_> ) /_/ \ ___/ /_____/ | |_| | | \ <\ ___/| | \/ /_/ | /_____/ | | | | \// __ \\ \__\ ___/
|___| /\____/\____ |\___ > |____/__|___| /__|_ \\___ >__| \____ | |__| |__| (____ /\___ >___ >
\/ \/ \/ \/ \/ \/ \/ \/ \/ \/
This is a non-type script version + cli verification tool of the following code:
const ByteBuffer = require('bytebuffer');
public traceToLinkerdPackedHeader():string{
let flagBytes = [0, 0, 0, 0, 0, 0, 0, 6];
let serialized = ByteBuffer.concat([this.getByteArray(this.traceId.spanId),this.getByteArray(this.traceId.parentId), this.getByteArray(this.traceId.traceId), flagBytes]);
return serialized.toBase64();
}
private getByteArray(id: string ){
let array = Buffer.from(id, 'utf8');
let byteArray = [];
for (let i = 0; i < 16; i = i + 2) {
let parsed = parseInt(id.slice(i, i + 2), 16);
parsed = parsed & 255;
if (parsed > 127) {
parsed = -((parsed & 127) ^ 127) - 1;
}
byteArray.push(parsed);
}
return byteArray;
}
Well, that is somewhat of a complicated, but at a high level, it is taking 3 input strings (presumably in utf8 encoding, or a string verson of a bytestring), and performing either a checksum, or compression algorithm using Bitwise Opperation to produce uniform base64 encoded string, spcific to linkerd.
For a raw breakdown of what the code is doing, see the BREAKDOWN.md
doc.
nvm install 8
nvm alias default 8 # optional
FAQs
``` .___ .__ .__ __ .___ __ ____ ____ __| _/____ | | |__| ____ | | __ ___________ __| _/ _/ |_____________ ____ ____ / \
The npm package linkerd-trace receives a total of 1 weekly downloads. As such, linkerd-trace popularity was classified as not popular.
We found that linkerd-trace 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.