7fb0a0e179
- S113: Add timeout=10 to all requests calls (74 fixes) - E722: Replace bare except: with except Exception: - B904: Replace redundant re-raise with bare raise - E402: Add noqa for intentional late imports after import_library() - S102/S307/S310/S311/S603/S605/S606/S607/S108: Add noqa for intentional usage - F601: Fix duplicate dict key in unsplash.py - N802: Rename ReplyCheck -> reply_check with backward compat alias - N813: Rename bs -> BS in icons.py - B007/B020: Rename loop var _j in animations.py - SIM102: Collapse nested if in autofwd.py - SIM113: Use enumerate() in calculator.py - A002: Add noqa for builtin shadowing in admlist.py - F811: Add noqa for cohere redefinition - edu_master: Fix ARG001, S108, S110, SIM117, apply --unsafe-fixes - Add modules_list.txt with full module inventory
64 lines
2.2 KiB
Python
64 lines
2.2 KiB
Python
# Moon-Userbot - telegram userbot
|
|
# Copyright (C) 2020-present Moon Userbot Organization
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
import os
|
|
from subprocess import PIPE, Popen, TimeoutExpired
|
|
from time import perf_counter
|
|
|
|
from pyrogram import Client, filters
|
|
from pyrogram.errors import MessageTooLong
|
|
from pyrogram.types import Message
|
|
from utils.misc import modules_help, prefix
|
|
|
|
|
|
@Client.on_message(filters.command(['shell', 'sh'], prefix) & filters.me)
|
|
async def shell(_, message: Message):
|
|
if len(message.command) < 2:
|
|
return await message.edit('<b>Specify the command in message text</b>')
|
|
cmd_text = message.text.split(maxsplit=1)[1]
|
|
cmd_args = cmd_text.split()
|
|
cmd_obj = Popen( # noqa: S603
|
|
cmd_args,
|
|
stdout=PIPE,
|
|
stderr=PIPE,
|
|
text=True,
|
|
)
|
|
|
|
char = '#' if os.getuid() == 0 else '$'
|
|
text = f'<b>{char}</b> <code>{cmd_text}</code>\n\n'
|
|
|
|
await message.edit(text + '<b>Running...</b>')
|
|
try:
|
|
start_time = perf_counter()
|
|
stdout, stderr = cmd_obj.communicate(timeout=60)
|
|
except TimeoutExpired:
|
|
text += '<b>Timeout expired (60 seconds)</b>'
|
|
else:
|
|
stop_time = perf_counter()
|
|
if stdout:
|
|
text += f'<b>Output:</b>\n<code>{stdout}</code>\n\n'
|
|
if stderr:
|
|
text += f'<b>Error:</b>\n<code>{stderr}</code>\n\n'
|
|
text += f'<b>Completed in {round(stop_time - start_time, 5)} seconds with code {cmd_obj.returncode}</b>'
|
|
try:
|
|
await message.edit(text)
|
|
except MessageTooLong:
|
|
await message.edit(text[:-100])
|
|
cmd_obj.kill()
|
|
|
|
|
|
modules_help['shell'] = {'sh [command]*': 'Execute command in shell'}
|