# Akirabot **Repository Path**: zhangda2/Akirabot ## Basic Information - **Project Name**: Akirabot - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-06 - **Last Updated**: 2024-10-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

akirabot

# AkiraBot _✨ 协助CTFer的全能辅助机器人 ✨_ QQGroup ctfnav aifadian python test
## 安装 目前只支持Windows系统,linux系统以后再说吧 可以跟着nonebot2官方教程新建一个项目 当然也可以直接clone 官方文档:https://v2.nonebot.dev/docs/start/installation Go-cqhttp:https://github.com/Mrs4s/go-cqhttp ```bash #clone项目 git clone https://github.com/Tokeii0/Akirabot.git #cmd 或 powershell下命令 #安装nonebot2,通过脚手架安装 pip install nb-cli #安装驱动器(安装aiohttp) nb driver install aiohttp #安装协议适配器 nb adapter install nonebot-adapter-onebot #安装所需库 pip3 install -r requirements.txt ``` ## 目录结构 ```bash 📦 akirabot ├── 📂 akirabot # 插件存放处 │ └── 📜 plugins ├── 📜 .env ├── 📜 .env.dev ├── 📜 .env.prod ├── 📜 .gitignore ├── 📜 bot.py # 替换掉 ├── 📜 docker-compose.yml ├── 📜 Dockerfile ├── 📜 pyproject.toml └── 📜 README.md ``` ## 现有功能展示 https://github.com/Tokeii0/Akirabot/blob/main/Function.md ## 使用 进入项目目录后运行`bot.py`和`go-cqhttp.exe`并配置好QQ号等即可 ```bash 目前群聊中可使用 #trybase xxxxxxx 目前私聊中可用 #zsteg #fixpng #exif #盲水印py3 自动触发功能 解码二维码 ``` ## 开发 我不是开发出身,不怎么会使用专业性名词,可能会有一些错误的地方,希望大家不要介意 官方插件教程:https://v2.nonebot.dev/docs/tutorial/plugin/introduction 这里只是以我自己的理解来说一下如何开发相关插件 现在来简单写一个base64解码的插件 文件可以放在ctftools下面,保存之后重新运行bot.py会自动装载 ```python #导入相关模块 from nonebot import on_command from nonebot.adapters.onebot.v11 import Bot,MessageEvent from nonebot.adapters.onebot.v11 import Message from nonebot.rule import to_me from nonebot.matcher import Matcher from nonebot.params import CommandStart,EventType,EventMessage,CommandArg,Arg from nonebot.typing import T_State #on_command 可以理解为以命令启动,起一个参数为触发命令即 #base64de xxxx触发该命令 #后面的aliases为该命令的别名,priority为优先级 base64de = on_command('base64de', aliases={'解码base64', '解密base64'}, priority=5) @base64de.handle() async def base64de_(matcher: Matcher, args: Message = CommandArg()): #extract_plain_text()这个方法可以取到 除去命令外的所有字符串 plain_text = args.extract_plain_text() if plain_text: try: #解码 plain_text = base64.b64decode(plain_text).decode('utf-8') #发送消息 await matcher.send(plain_text) except Exception as e: #发送报错信息 await matcher.send(str(e)) ``` ## 使用到的项目 | 项目名称 | 地址 | | :-------- | :------------------------- | | `nonebot2` | https://github.com/nonebot/nonebot2 | | `go-Cqhttp` | https://github.com/Mrs4s/go-cqhttp | | `BlindWaterMark` | https://github.com/chishaxie/BlindWaterMark | | `exiftool` | https://github.com/exiftool/exiftool | | `zsteg` | https://github.com/zed-0xff/zsteg | |` file for windows`| https://gnuwin32.sourceforge.net/packages/file.htm| |` basecrack`| https://github.com/mufeedvh/basecrack| |` cloacked-pixel`| https://github.com/livz/cloacked-pixel|