
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
cekregml adalah sebuah modul Node.js sederhana dan ringan untuk melakukan verifikasi (stalking) ID game Mobile Legends.
Modul ini menerima ID dan Server sebagai input, kemudian mengembalikan data player seperti username dan Region jika ditemukan.
Install modul ini dengan mudah menggunakan npm:
npm install cekregml
⚙️ Cara Kerja Modul ini mengekspos satu fungsi asynchronous (Promise) utama, yaitu checkRegion.
// Import modul
const { checkRegion } = require('cekregml');
// Tentukan ID dan Server target
const userID = "12345678"; // <-- Ganti dengan ID valid
const serverID = "1234"; // <-- Ganti dengan Server valid
// Buat fungsi async untuk menjalankannya
async function cekPlayerData() {
console.log(`[▶] Mencari data untuk ${userID} (${serverID})...`);
try {
// Panggil fungsi dan tunggu hasilnya
const data = await checkRegion(userID, serverID);
if (data.success) {
// Jika sukses, 'data.username' akan tersedia
console.log("[✔] Data Ditemukan!");
console.log("====================");
console.log(` Username: ${data.username}`);
// Uncomment baris di bawah untuk melihat semua data yang dikembalikan
// console.log(data);
} else {
// Jika gagal (player not found, input salah, dll)
console.log("[✖] Gagal Menemukan Data!");
console.log(` Pesan: ${data.message}`);
}
// Tampilkan creator (selalu ada, baik sukses maupun gagal)
console.log(`\n Creator: ${data.creator}`);
} catch (error) {
// Menangkap error sistem (misal: koneksi, dll)
console.error("[!] Terjadi Error Sistem:", error.message);
}
}
// Panggil fungsi Anda
cekPlayerData();
##📊 Contoh Respon Modul ini akan selalu mengembalikan objek JSON. Jika Sukses:
{
"success": true,
"username": "NamaPlayerAnda",
"creator": "zakkiXD-Dev"
}
Jika Gagal (ID tidak ditemukan):
{
"success": false,
"message": "Player Not Found",
"creator": "zakkiXD-Dev"
}
Jika Gagal (Input kosong):
{
"success": false,
"message": "ID dan Server tidak boleh kosong.",
"creator": "zakkiXD-Dev"
}
📞 Support & Creator
Modul ini dibuat dan dikelola oleh zakkiXD-Dev.
Jika Anda menemukan bug, memiliki pertanyaan, atau butuh bantuan, jangan ragu untuk menghubungi:
➡️ Hubungi Creator via WhatsApp
📄 Lisensi
ISC
FAQs
Module untuk cek region dan username Mobile Legends (ML) melalui ID dan Server.
We found that cekregml 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.