This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Original: https://gist.github.com/adityaparsad01/454bfaee41fd8eab580b2a3d1cb3aba6 | |
const lib = require("../lib"); | |
const { exec } = require("child_process"); | |
lib.bot( | |
{ | |
pattern: "cmd ?(.*)", | |
fromMe: true, | |
desc: "get linux machine", | |
type: "machine" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://github.com/sevsec/vt-scan/blob/master/vt-scan.sh | |
const fs = require('fs').promises; | |
const path = require('path'); | |
const axios = require('axios'); | |
const crypto = require('crypto'); | |
const FormData = require('form-data'); | |
const { bot, isAdmin } = require('../lib'); | |
// Idioma Dinamico. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs').promises; | |
const path = require('path'); | |
const os = require('os'); | |
const { promisify } = require('util'); | |
const { exec: execCallback } = require('child_process'); | |
const { bot, isUrl, sticker, addExif } = require('../lib'); | |
require('dotenv').config(); | |
const exec = promisify(execCallback); | |
class DownloadQueue { |
OlderNewer