Posts filter


⚠️NOTE:
JINKO HACKING MEIN INTEREST HAI HACKING SHIKHNA CHAHTA FREE MEIN WO SAB REH SAKTE BAKI SAB UNSUPORT USELESS BANDE LEFT KAR SAKTE MERA CHANNEL THANKS..🙏


Note:
This Script Only Working On Computer,Laptop Or RDP

IF YOU WANT THEN REACTIONS MUST ✅


Aap Apka Target Ka Online Status Monitore Kar sakte hai Jab Bhi Target Online Ayega Apke WhatsApp pe Message Jayega 😁


WhatsApp Online Monitoring Tool Want ??
Poll
  •   Yes
  •   No
100 votes


NOTE : GUYS SOON WE ARE UPLOADING NEW HACKING RELATED TOOLS SHARE & SUPPORT US ✅


Video is unavailable for watching
Show in Telegram
🥶FULL WORKING 🥶


FB DISABLE METHOD🫶🫶


WhatsApp number available

Thailand & Vietnam 🇻🇳 🇹🇭

DM : @MODXMH


✔️DELETE FORWARD MESSAGE BOT ⭐


➡️COM : /start ✅

Bot.sendMessage("Please add me to your group or channel, and I will automatically delete any forwarded messages posted by admins.");

➡️COM : /enableAutoDelete ✅

// Enable auto-delete by setting a user property and schedule a job
User.setProperty("autoDeleteEnabled", true, "boolean");

Bot.sendMessage("Auto-deletion of forwarded messages is now enabled.");

// Schedule a recurring job to check for forwarded messages every minute
Bot.setInterval({
command: "deleteForwardedMessages",
interval: 60 // Run every 60 seconds (1 minute)
});
➡️COM : /disableAutoDelete ✅

// Disable auto-delete by removing the user property and clearing the job
User.setProperty("autoDeleteEnabled", false, "boolean");

Bot.sendMessage("Auto-deletion of forwarded messages is now disabled.");

// Clear the recurring job
Bot.clearInterval("deleteForwardedMessages");
➡️COM : /deleteForwardedMessages ✅

if (!User.getProperty("autoDeleteEnabled")) {
Bot.sendMessage("Auto-deletion is currently disabled. Use /enableAutoDelete to activate it.");
return;
}

// Function to fetch recent messages and delete forwarded ones
Api.getChatHistory({
chat_id: request.chat.id, // Ensure the bot is used in the correct group
limit: 10, // Number of recent messages to check
on_result: "checkAndDeleteForwarded"
});
➡️COM : /checkAndDeleteForwarded

function checkAndDeleteForwarded(params) {
let messages = params.result.messages;
for (let message of messages) {
if (message.forward_from || message.forward_from_chat) {
// This is a forwarded message; delete it
Api.deleteMessage({
chat_id: params.chat_id,
message_id: message.message_id
});
}
}
}

Bot.run({
command: "checkAndDeleteForwarded",
options: {}
});


Jaldi meeesge Kare


CLICK HERE

LIFETIME GUARANTEE ✅


✨IP Address Information Telegram Bot Code
📚 Bjs:
// Command: /getIP
Bot.sendMessage("Please enter the IP address you want to look up:");

// Run the command `/processIP` after the user inputs the IP address
Bot.runCommand("/processIP");
👁️‍🗨️ Command: /processIP

Wait For Answer ✅
📚 Bjs:

// Command: /processIP
var ip = message;  // The user's input (IP address)

if (!ip || !ip.match(/^(\d{1,3}\.){3}\d{1,3}$/)) {
  // Validate the input: Check if it matches an IP address pattern
  Bot.sendMessage("Invalid IP address. Please enter a valid IP address.");
  Bot.runCommand("/processIP");
  return;
}

// Making an HTTP request to ip-api.com
HTTP.get({
  url: "http://ip-api.com/json/" + ip,
  success: "/onIPInfo",
  error: "/onError"
});
👁️‍🗨️Command: /onIPInfo

📚Bjs:
var response = JSON.parse(content);

if (response.status == "fail") {
  Bot.sendMessage("Error: " + response.message);
  return;
}

var message = "IP Address Info:\n";
message += "IP: " + response.query + "\n";
message += "Country: " + response.country + " (" + response.countryCode + ")\n";
message += "Region: " + response.regionName + "\n";
message += "City: " + response.city + "\n";
message += "ZIP: " + response.zip + "\n";
message += "Latitude: " + response.lat + "\n";
message += "Longitude: " + response.lon + "\n";
message += "ISP: " + response.isp + "\n";
message += "Org: " + response.org + "\n";
message += "AS: " + response.as + "\n";

Bot.sendMessage(message);
👁️‍🗨️Command:  /onError

📚Bjs:
// Command: /onError
Bot.sendMessage("An error occurred while retrieving IP information. Please try again later.");
❤️ OWNED BY @ ❤️


➡️ WANT THIS


This BJS code gets the current date and time in the 🕒 "Asia/Kolkata" timezone. It extracts:


• 📅 Day

• 📆 Month

• 📅 Year

• 📅 Weekday

• ⏰ Hours

• 🕒 Minutes

• ⏱️ Seconds

• 🕰️ Milliseconds

It formats the info and sends a message in HTML format with details like the full date, time, and timezone! 🌍✨


🔍 BJS:

let free = new Date().toLocaleString("en-US", {
  timeZone
: "Asia/Kolkata"
});

let dateObj = new Date(free); // Create a new Date object for the current time

// Extracting details using JavaScript Date methods
var day = dateObj.getDate();                // Day of the month (1-31)
var monthNumber = dateObj.getMonth() + 1;   // Month number (1-12)
var year = dateObj.getFullYear();           // Full year (e.g., 2024)
var weekdayNumber = dateObj.getDay();       // Day of the week (0-6, where 0 is Sunday)
var hours = dateObj.getHours();             // Hours (0-23)
var minutes = dateObj.getMinutes();         // Minutes (0-59)
var seconds = dateObj.getSeconds();         // Seconds (0-59)
var milliseconds = dateObj.getMilliseconds(); // Milliseconds (0-999)

// Weekday names array
var weekdayNames = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
var weekdayName = weekdayNames[weekdayNumber];

// Month names array
var monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
var monthName = monthNames[monthNumber - 1];

// Extracting details using Libs.DateTimeFormat
var formattedDate = Libs.DateTimeFormat.format(free, "dd/mm/yyyy");
var formattedTime = Libs.DateTimeFormat.format(free, "h:MM:ss");

// Extract ISO week number
var weekNumber = Libs.DateTimeFormat.format(free, "W"); // Week number (ISO standard)

// Edit the existing message with the full date and time information
Api.sendMessage({
  text: "📅 Full Date and Time Information:\n" +
        "------------------------------------------\n" +
        "🗓 Day: " + day + "\n" +
        "📆 Month (Number): " + monthNumber + "\n" +
        "📅 Month (Name): " + monthName + "\n" +
        "📅 Year: " + year + "\n" +
        "🗓 Day of the Week: " + weekdayName + "\n" +
        "📆 Week Number: " + weekNumber + "\n\n" +
       
        "⏰ Time Information:\n" +
        "------------------------------------------\n" +
        "⏲ Hours: " + hours + "\n" +
        "🕐 Minutes: " + minutes + "\n" +
        "⏱ Seconds: " + seconds + "\n" +
        "⏲ Milliseconds: " + milliseconds + "\n\n" +

        "📊 Formatted Date and Time:\n" +
        "------------------------------------------\n" +
        "🗓 Formatted Date (dd/mm/yyyy): " + formattedDate + "\n" +
        "⏲ Formatted Time (hh:mm:ss): " + formattedTime + "\n\n" +
       
        "🌍 Timezone: Asia/Kolkata",
  parse_mode: "html"
});
🎖 Must Install “DateTimeFormat” Lib.
➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖
😎
Demo Of Code :-
Click Here



❤️ OWNED BY THIS MESSAGE SENDER  ✅


🌟 Special Offer Alert! 🌟

Want to unlock exclusive advance time BJS?

➡️ Comment below to receive your unique code! Don’t miss out!

➡️ This BJS CODES COMING SOON ⭕


Can I Drop Telegram Bot Codes ?
Poll
  •   Yes 😍
  •   No
176 votes


Video is unavailable for watching
Show in Telegram
👍Amazon Prime Unlimited Method😷

⚜️You Can Sell In Cheap And Earn Some Money 👛


You Can Also Do Unlimited Like

🖥YouTube

😂Crunchyroll

💻Snapchat

📲Truecaller

🤔And Many More ♾

⚙️BIN : 524105 DATE AND CVV RND

📶 IP OWN ADDERESS RANDOM


Ratan Tata Passed Away !! 🥹

Ratan Tata Was A Beacon Of Integrity, Ethical Leadership And Philanthropy, Who Has Imprinted An Indelible Mark On The World Of Business And Beyond. He Will Forever Soar High In Our Memories.

R.I.P Sir !!
💔


Video is unavailable for watching
Show in Telegram
🌟Encryption payload method :

💲Bypass Google protection

💲Bypass Protect Xiaomi devices


🔘JOIN OUR NETWORK 👇
┏━━━━━━━━━━━━━━━━┓
🔺 @Phone_hacking1bots   🔻
┗━━━━━━━━━━━━━━━━┛


Video is unavailable for watching
Show in Telegram


We Are Making Hacking Bot ♻️

🟢Features :

🔰Colour prediction.
🔰Cam Hack.
🔰Real location hack.
🔰Back back Cam Hack.
🔰Ai Genrated Picture.
🔰Video Hack.
🔰Instagram Phishing.
🔰Netflix Phishing.
🔰Credit Card Phishing.
🔰Snapchat Phishing.
🔰Pisert Phishing.
🔰Free Fire Phishing
.

Note
:

Ti
me Waster Don’t Message ❗️

CONTACT : @MODXMH

20 last posts shown.