摘要: php笔记 参考资料 https://zeo.cool/2020/12/31/webshell%E5%A4%9A%E7%A7%8D%E6%96%B9%E6%B3%95%E5%85%8D%E6%9D%80/ https://h3art3ars.github.io/2020/02/27/%E5%88%A 阅读全文
posted @ 2022-11-20 20:23 是谁走漏了消息 阅读(33) 评论(0) 推荐(0)
摘要: 威盾解密 单个文件解密 <?php $filename=$_GET['f'];//要解密的文件 $lines = file($filename);//0,1,2行 //第一次base64解密 $content=""; if(preg_match("/O0O0000O0\('.*'\)/",$line 阅读全文
posted @ 2022-11-20 20:12 是谁走漏了消息 阅读(216) 评论(0) 推荐(0)
摘要: python time模块记录 参考链接: https://www.runoob.com/python/python-date-time.html 13位时间戳转换 import time # 输入毫秒级的时间,转出正常格式的时间 def timeStamp(timeNum): timeStamp 阅读全文
posted @ 2022-11-20 20:06 是谁走漏了消息 阅读(23) 评论(0) 推荐(0)
摘要: tg机器人 tg机器人官方api文档 https://core.telegram.org/bots/api#getfile 实例代码 import requests, json, time, os class my_reboot(): def __init__(self): self.token = 阅读全文
posted @ 2022-11-20 20:03 是谁走漏了消息 阅读(615) 评论(0) 推荐(0)
摘要: subprocess笔记 ''' https://www.runoob.com/w3cnote/python3-subprocess.html 常用参数: args:shell命令,可以是字符串或者序列类型(如:list,元组) bufsize:缓冲区大小。当创建标准流的管道对象时使用,默认-1。 阅读全文
posted @ 2022-11-20 20:01 是谁走漏了消息 阅读(33) 评论(0) 推荐(0)
摘要: qqwry-py3使用记录 项目地址:https://github.com/animalize/qqwry-python3 说明 其实主要的是 qqwry.py文件和qqwry.dat 模块的其他详细使用参考项目地址 用法 from qqwry import QQwry q = QQwry() q. 阅读全文
posted @ 2022-11-20 19:58 是谁走漏了消息 阅读(517) 评论(0) 推荐(0)
摘要: pywin32-自动点击脚本 参考资料: https://nymrli.top/2018/08/31/python-win32api-win32gui-win32con-PyUserInput%E5%AE%9E%E7%8E%B0%E8%87%AA%E5%8A%A8%E5%8C%96%E8%84%9A 阅读全文
posted @ 2022-11-20 17:00 是谁走漏了消息 阅读(186) 评论(0) 推荐(0)
摘要: pandas记录 ''' 资料 https://www.cnblogs.com/insane-Mr-Li/p/13231644.html https://blog.csdn.net/toshibahuai/article/details/79034829 ''' # encoding='utf-8' 阅读全文
posted @ 2022-11-20 16:58 是谁走漏了消息 阅读(18) 评论(0) 推荐(0)
摘要: BeautifulSoup模块 参考资料:https://www.cnblogs.com/hanmk/p/8724162.html 安装 pip install beautifulsoup4 基本使用 from bs4 import BeautifulSoup import requests url 阅读全文
posted @ 2022-11-20 16:55 是谁走漏了消息 阅读(19) 评论(0) 推荐(0)
摘要: base64 参考资料 https://blog.csdn.net/m0_37422289/article/details/82753260 str1 = "this is string example....wow!!!" # str3 转成bytes 的string str3 = str1.en 阅读全文
posted @ 2022-11-20 16:53 是谁走漏了消息 阅读(60) 评论(0) 推荐(0)