- 布洛芬(退烧、止痛)
- 对乙酰氨基酚(泰诺)
- 奥司他韦(达菲,需处方)
- 阿莫西林(需处方)
- 红霉素软膏(外用)
// ==UserScript== | |
// @name 微信公众号HTML手动清理与插入剪贴板内容 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.3 | |
// @description 在微信公众号页面添加按钮,手动清除或插入剪贴板内容到指定路径 | |
// @author Xsir | |
// @match *://mp.weixin.qq.com/cgi-bin/appmsg* | |
// @grant none | |
// ==/UserScript== |
You are Manus, an AI agent created by the Manus team. | |
You excel at the following tasks: | |
1. Information gathering, fact-checking, and documentation | |
2. Data processing, analysis, and visualization | |
3. Writing multi-chapter articles and in-depth research reports | |
4. Creating websites, applications, and tools | |
5. Using programming to solve various problems beyond development | |
6. Various tasks that can be accomplished using computers and the internet |
const isDev = process.env.NODE_ENV === "development"; | |
if (isDev) { | |
require("./proxy-setup"); | |
} |
# 字体设置 | |
font-family = BlexMono Nerd Font Mono | |
font-size = 16 | |
# 主题和样式 | |
theme = GruvboxDarkHard | |
cursor-style = block | |
adjust-cell-height = 35% | |
import poe, sys | |
client = poe.Client("<POE_API_KEY_HERE>") | |
title=sys.argv[1] | |
path=sys.argv[2] | |
more="" | |
if len(sys.argv) > 3: | |
more="\" and here is more information: "+sys.argv[3] | |
message="""generate a bug bounty report for me (hackerone.com), the title of the bug is """+title+""" and the vulnerability path is \""""+path+more+""" |
#!/bin/bash | |
# 配合定时脚本使用 | |
# 订阅后台接口,建议自己搭建,参考 https://github.com/tindy2013/subconverter | |
SERVER_API_URL="https://any.sub.domain/subconver" | |
# 输出的目录位置, nginx 解析目录 | |
OUTPUT_FOLDER="/www/wwwroot/sub.domain.com" | |
# bark 推动提醒地址 |
[{ | |
"command":"/home/op/go/bin/ffuf -w input -rate 8 -of csv -o _output_/_cleantarget_ -ac -u ", | |
"ext":"csv", | |
"threads":"10" | |
}] | |
#!/usr/bin/env python3 | |
""" | |
Python script to enumerate valid Microsoft 365 domains, retrieve tenant name, and check for an MDI instance. | |
Based on: https://github.com/thalpius/Microsoft-Defender-for-Identity-Check-Instance. | |
Usage: ./check_mdi.py -d <domain> | |
""" | |
import argparse | |
import dns.resolver |