初见PumpkinDB
PumpkinDB: https://github.com/PumpkinDB/PumpkinDB windows运行: 默认db文件大小1G,默认无配置文件,可自建pumpkindb.toml: 使用自带pum...
[python] AES-GCM加解密函数
代码片段: from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes from cryptography.hazma...
kali终端窗口无法移动解决办法
apt install metacity sudo metacity --replace 具体参考: https://blog.csdn.net/m0_73909316/article/details/143058522 ...
jython如何加载第三方库
python写burp插件,发现无法使用第三方模块,无论是python27 还是使用jython下的pip easy_install都不行,各种报错: 最后解决:直接在头部添加sys.path.append(“python2的地...
Hashicorp Consul Service API远程漏洞测试
最近遇到consul,查了下存在未授权访问、远程命令执行及SSRF (1)未授权: 直接访问,未为acl (2)远程命令执行 通过接口/v1/agent/self,确认EnableRemoteScriptChecks 开启为true 然后执...
centos找不到screen
头一回遇到: 解决: sudo yum install epel-release
[记录] 2024观安杯部分writeup
观安杯题目是中途发来了 ,三道做了2道 1、office 尝试binwalk foremost无果,直接查看属性: base解码: 打开xlsm,输入该字符串: 其中参考了:https://www.52pojie...
[记录] 2024羊城杯部分writeup
数据安全1 处理数据解题脚本: import re # 分类规则函数 def classify(value): if value.isdigit() and 1 <= int(value) <= 10000: return 1 ...
NMAP日常常用命令总结
1. nmap -sT 192.168.96.4 //TCP连接扫描,不安全,慢 2. nmap -sS 192.168.96.4 //SYN扫描,使用最频繁,安全,快 3. nmap -Pn 192.168.96.4 //目标机禁用pin...
rancher 漏洞 CVE list
Rancher 是为使用容器的公司打造的容器管理平台。Rancher 简化了使用 Kubernetes 的流程,开发者可以随处运行 Kubernetes(Run Kubernetes Everywhere),满足 IT 需求规范,赋能 De...