Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@ensdomains/ccip-read-cf-worker
Advanced tools
Cloudflare worker framework for ccip-read, a secure protocol for offchain data retrieval
This package implements a Cloudflare Worker framework for creating CCIP-read gateway servers.
A CCIP-read gateway server accepts ABI-encoded function calls and responds to them in the same manner as a smart contract, but has access to any external resources it needs. Onchain contracts implementing CCIP-read can request that the client send a query to a gateway server and supply the results back to the contract in a subsequent call.
Typical usage would be a gateway server providing data from a database of some kind, alongside signatures or merkle proofs allowing the calling contract to verify the data's authenticity. With this model, contracts can effectively request data from an external database as part of a contract call or transaction.
Example usage:
const ccipread = require('@chainlink/ccip-read-cf-worker');
const server = new ccipread.Server();
const abi = [
'function getSignedBalance(address addr) public view returns(uint256 balance, bytes memory sig)',
];
server.add(abi, [
{
type: 'getSignedBalance',
func: async (contractAddress, [addr]) => {
const balance = getBalance(addr);
const sig = signMessage([addr, balance]);
return [balance, sig];
}
}
]);
const app = server.makeApp();
module.exports = {
fetch: function (request, env, _context) {
return app.handle(request)
}
};
FAQs
Cloudflare worker framework for ccip-read, a secure protocol for offchain data retrieval
We found that @ensdomains/ccip-read-cf-worker demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.