Skip to content

Commit

Permalink
Create hack.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Kingjux authored May 6, 2024
1 parent dd1cb73 commit ce9ad67
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions plugins/hack.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const { smd, sleep } = require('../lib');

smd({ cmdname: "hack", type: "fun", info: "hacking prank", filename: __filename }, async (citel) => {
const messages = [
"Injecting Malware",
" █ 10%",
" █ █ 20%",
" █ █ █ 30%",
" █ █ █ █ 40%",
" █ █ █ █ █ 50%",
" █ █ █ █ █ █ 60%",
" █ █ █ █ █ █ █ 70%",
" █ █ █ █ █ █ █ █ 80%",
" █ █ █ █ █ █ █ █ █ 90%",
" █ █ █ █ █ █ █ █ █ █ 100%",
"System hyjacking on process.. \\n Conecting to Server error to find 404 ",
"Device successfully connected... \\n Riciving data...",
"Data hyjacked from divice 100% completed \\n killing all evidence killing all malwares...",
" HACKING COMPLETED ",
" SENDING LOG DOCUMENTS...",
" SUCCESSFULLY SENT DATA AND Connection disconnected",
"BACKLOGS CLEARED"
"POWERED BY VENOCYBER MD"
"By Venocyber tech®"
];

let editedMessage;
for (const message of messages) {
editedMessage = await citel.send(editedMessage || message);
await sleep(1000);
editedMessage = await citel.edit(editedMessage, message);
}
});

0 comments on commit ce9ad67

Please sign in to comment.