摘要:
av识别脚本 # /usr/bin/env python # _*_ coding:utf-8 _*_ # author: smelond av_exe = ("1433.exe", "360leakfixer.exe", "360rp.exe", "360RP.exe", "360safe.exe 阅读全文
摘要:
源码包扫描 # import requests import subprocess import os, re from urllib.parse import urlparse from multiprocessing.pool import ThreadPool pool = ThreadPoo 阅读全文
摘要:
烂番茄 利用条件 域内存在任意一台域控和域功能级别是server 2012及以上时,可以通过给所在机器配置"msDS-AllowedToActOnBehalfOfOtherIdentity"属性来设置rbcd,然后通过s4u协议申请高权限票据进行利用 exp using System; using 阅读全文
摘要:
禅道 参考资料 https://blog.csdn.net/qq_29678299/article/details/109987739 搭建 官方地址 https://www.zentao.net/index.html 开源版本下载 https://www.zentao.net/download/z 阅读全文
摘要:
宝塔利用 删除宝塔中的登陆日志 import sqlite3 import argparse def log(id): conn = sqlite3.connect('default.db') c = conn.cursor() c.execute("DELETE from logs where I 阅读全文
摘要:
tmux 最简操作流程 1.tmux new -s my_session 新建会话tmux new -s my_session 2.Ctrl+b d 按下快捷键Ctrl+b d将会话分离 3.tmux attach -t my_session (tmux attach-session -t my_s 阅读全文
摘要:
Shell学习 参考资料:https://www.runoob.com/linux/linux-shell-variable.html 变量 变量的命名规则和其他语言基本一样 your_name="qinjx" echo $your_name echo ${your_name} 推荐使用带花括号的 阅读全文
摘要:
redis安装 参考资料 https://www.cnblogs.com/-mo-/p/11487797.html 简单安装 ########################## ubuntu安装 #################################### $sudo apt-get 阅读全文
摘要:
elk搭建 参考资料: https://www.cnblogs.com/adawoo/p/11665532.html jdk安装 https://www.cnblogs.com/cheesebar/p/9126171.html elk安装 1. 关闭防火墙和selinux systemctl sto 阅读全文
摘要:
docker操作笔记 https://www.runoob.com/docker/docker-container-usage.html 菜鸟教程 安装 使用官方安装脚本自动安装 安装命令如下: curl -fsSL https://get.docker.com | bash -s docker - 阅读全文