
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
fastest-server
Advanced tools
Library used to get fastest server using ICMP (Internet Control Message Protocol).
This library is used to get the fastest server from the list of servers (IP’s or host names). Many times same services are running in different regions to serve clients better. And this library will try to ping the list of servers using ICMP (Internet Control Message Protocol). Based on response time it will find the fastest server which is mostly nearest server.
npm install fastest-server
const FastestServer = require('fastest-server');
const { fastest, stats } = await FastestServer.get(['172.217.19.14', 'google.com'])
// fastest - will have fastest host.
// stats - will be more information about response time and respose type.
// {
// fastest: 'google.com',
// stats: [
// { host: '172.217.19.14', response: 'REPLY', timeElapsed: 9 },
// { host: 'google.com', response: 'REPLY', timeElapsed: 2 }
// ]
// }
const { fastest, stats } = await FastestServer.get(['172.217.19.14', 'google.com'], 5000);
console.log(fastest); // google.com
console.log(stats);
// [
// { host: '172.217.19.14', response: 'REPLY', timeElapsed: 9 },
// { host: 'google.com', response: 'REPLY', timeElapsed: 2 }
// ]
response
will be one of the value from array:['REPLY', 'NA', 'DESTINATION_UNREACHABLE', 'SOURCE_QUENCH', 'REDIRECT', 'UNKNOWN']
timeElapsed
will be in milliseconds (ms
)
FAQs
Used to get the fastest server from the list
We found that fastest-server 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.