黑帽联盟
标题: 通过Telegram机器人远程执行shell命令 [打印本页]
作者: 定位 时间: 2023-6-27 19:40
标题: 通过Telegram机器人远程执行shell命令
简介cnheimaoBot是我脑洞大开的时候写的一个简单的telegram机器人,可以帮你远程执行shell命令,从而让你可以在手机上操作你的服务器。
截图
教程Github地址:https://github.com/marknote/TeleShellBot
1、安装
- git clone https://github.com/marknote/TeleShellBot.git
- cd TeleShellBot
- npm install
复制代码
2、配置
根据Telegram instructions去创建一个机器人的UserID,然后将UserID和BOT token放到config.js里面。
- module.exports = {
- config:function(){
- return (
- {
- adminUsers:[ADMIN_ID], //admin users' telegram id, should be numbers
- botToken: 'YOUR_BOT_TOEKN', // bot token
- }
- );
- }
- };
复制代码3、运行
- npm start 或者 nohup npm start &(放入后台运行)
- or
- node index.js
复制代码
欢迎光临 黑帽联盟 (https://bbs.cnblackhat.com/) |
Powered by Discuz! X2.5 |