
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
kirito.cloudflared.subservice
Advanced tools
Kirito Cloudflared e ótimo para criar tunnels da cloudflared para expor a sua aplicação a internet.
Para instalar a @kirito/cloudflared na sua aplicação basta utilizar
npm i @kirito/cloudflared.subservice
No console.
const Cloudflared = require('@kirito/cloudflared.subservice');
async function startTunnel(port) {
try {
const bin = await Cloudflared.install_cloudflared();
if (!bin) {
console.error("❌ Não foi possível instalar o binário do cloudflared.");
return;
}
const tunnel = new Cloudflared(`http://localhost:${port}`);
tunnel.on("ready", (info) => {
console.log(`✅ Cloudflare Tunnel pronto: ${info.url}`);
});
tunnel.on("subservice", (info) => {
console.log(`🔹 Subserviço disponível: [${info.type}] ${info.url}`);
});
tunnel.on("timeout", () => {
console.error("❌ Timeout ao iniciar o túnel Cloudflare: Tunnel could not be started within o tempo limite.");
});
tunnel.on("error", (err) => {
console.error("❌ Erro ao iniciar túnel Cloudflare:", err);
});
await tunnel.start(120000); // 2 minutos
} catch (err) {
console.error("❌ Erro ao iniciar túnel:", err.message);
}
}
// Exemplo de uso
startTunnel(3000);
Agradecemos por utilizar nossa package.
FAQs
Kirito Cloudflared e ótimo para criar tunnels da cloudflared para expor a sua aplicação a internet.
The npm package kirito.cloudflared.subservice receives a total of 3 weekly downloads. As such, kirito.cloudflared.subservice popularity was classified as not popular.
We found that kirito.cloudflared.subservice 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.