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.
@mtkruto/mtkruto
Advanced tools
Cross-runtime JavaScript library for building Telegram clients
Cross-runtime JavaScript library for building Telegram clients
Note: MTKruto has not reached version 1.0.0 yet. While it can run in production, we currently do not recommend depending on it for critical projects.
const { Client, getRandomId } = require("@mtkruto/node"); // npm install @mtkruto/node
const client = new Client();
await client.connect();
const pong = await client.invoke({ _: "ping", ping_id: getRandomId() });
console.debug(pong);
import { Client, getRandomId } from "https://deno.land/x/mtkruto/mod.ts";
const client = new Client();
await client.connect();
const pong = await client.invoke({ _: "ping", ping_id: getRandomId() });
console.debug(pong);
<script type="module">
import { Client, getRandomId } from "https://esm.sh/jsr/@mtkruto/mtkruto";
const client = new Client();
await client.connect();
const pong = await client.invoke({ _: "ping", ping_id: getRandomId() });
console.debug(pong);
</script>
import { Client, getRandomId } from "@mtkruto/mtkruto"; // bunx jsr i @mtkruto/mtkruto
const client = new Client();
await client.connect();
const pong = await client.invoke({ _: "ping", ping_id: getRandomId() });
console.debug(pong);
MTKruto is made open-source under the GNU Lesser General Public License version 3, or at your option, any later version. Refer to COPYING and COPYING.LESSER for more.
FAQs
Cross-runtime JavaScript library for building Telegram clients
The npm package @mtkruto/mtkruto receives a total of 0 weekly downloads. As such, @mtkruto/mtkruto popularity was classified as not popular.
We found that @mtkruto/mtkruto demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.