摘要: # python 使用qq的smtp服务发送邮件 ```python import smtplib from email.mime.text import MIMEText from email.header import Header # 设置邮箱的域名 HOST = "smtp.qq.com" 阅读全文
posted @ 2023-09-01 22:31 rvy 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 据说和C++一样快,但更安全 官网:https://www.rust-lang.org 官方文档: https://doc.rust-lang.org/book 中文社区对官方文档的翻译: https://kaisery.github.io/trpl-zh-cn 阅读全文
posted @ 2023-08-25 22:29 rvy 阅读(15) 评论(0) 推荐(0) 编辑
摘要: x64dbg是一个开源的二进制程序调试器,可以调试32位和64位的windows程序。 阅读全文
posted @ 2023-08-19 07:22 rvy 阅读(34) 评论(0) 推荐(0) 编辑
摘要: Windows下也有类似iptables的端口转发功能 netsh interface portproxy 阅读全文
posted @ 2023-08-12 07:22 rvy 阅读(89) 评论(0) 推荐(0) 编辑
摘要: VirtualBox是一个开源的虚拟机,功能和VMWare类似。 官网: https://www.virtualbox.org 阅读全文
posted @ 2023-08-05 16:23 rvy 阅读(80) 评论(0) 推荐(0) 编辑
摘要: linux---设置允许流量转发 阅读全文
posted @ 2023-08-05 16:22 rvy 阅读(406) 评论(0) 推荐(0) 编辑
摘要: argparse用于设计、解析命令行参数。 官方文档: https://docs.python.org/3/library/argparse.html 阅读全文
posted @ 2023-08-05 16:19 rvy 阅读(81) 评论(0) 推荐(0) 编辑
摘要: https://github.com/x64dbg/Scylla Scylla是x64dbg内置的插件,不需要自己安装,可用于dump进程,导入表修复。 阅读全文
posted @ 2023-07-15 07:44 rvy 阅读(829) 评论(0) 推荐(0) 编辑
摘要: grep用来搜索文件内容。 用法: ```r grep [OPTION...] PATTERNS [FILE...] ``` 阅读全文
posted @ 2023-06-24 08:16 rvy 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 可以翻译的有2种: 1. 界面上的,默认都是会翻译的,如果不想翻译,可以取消勾选相应的"可翻译的" 2. 代码中出现的文本,如果需要翻译,可以用tr包裹,如: tr("hello") 阅读全文
posted @ 2023-06-24 08:14 rvy 阅读(32) 评论(0) 推荐(0) 编辑