摘要: 1.环境准备 [jk@dvwa ~]$ sudo rpm -q centos-release centos-release-7-9.2009.0.el7.centos.x86_64 # 关掉防火墙 [jk@dvwa ~]$ sudo systemctl stop firewalld.service 阅读全文
posted @ 2024-01-01 20:02 geyashi 阅读(122) 评论(0) 推荐(0)
摘要: texlive 下载和安装 下载 texlive 下载链接:https://mirrors.cernet.edu.cn/app/CTAN 安装 texlive 双击打开 texlive2023-20230313.iso,然后运行 install-tl-windows.bat texlive 软件占磁 阅读全文
posted @ 2023-12-22 23:19 geyashi 阅读(308) 评论(0) 推荐(0)
摘要: 当电源选项中有 电源按钮和盖子 配置时 参考百度经验:https://jingyan.baidu.com/article/3065b3b6c010f2ffcef8a420.html 如果没有 电源按钮和盖子 配置 需要通过修改注册表项的 Attributes 值为 2,来打开 电源按钮和盖子 配置。 阅读全文
posted @ 2023-11-24 21:10 geyashi 阅读(776) 评论(0) 推荐(0)
摘要: 为了保证网络的可靠性,需要进行网络设备和网络线路冗余,这时就会产生交换环路。交换环路会导致广播风暴、帧复制和 MAC 表震荡的问题。生成树协议就是解决交换环路问题的。 处于环路种的每台交换机都要开启生成树协议,交换机之间通过传递 BPDU (Bridge Protocol Data Unit,桥协议 阅读全文
posted @ 2023-09-28 18:07 geyashi 阅读(97) 评论(0) 推荐(0)
摘要: 基于端口划分 VLAN,使用单臂路由实现不同 VLAN 间访问。 拓扑结构 配置交换机 LW1 划分 VLAN <Huawei>undo terminal monitor <Huawei>system-view Enter system view, return user view with Ctr 阅读全文
posted @ 2023-09-22 21:51 geyashi 阅读(89) 评论(0) 推荐(0)
摘要: 目录遍历 依次遍历 /flag_in_here/1/1、/flag_in_here/1/2、/flag_in_here/1/3、/flag_in_here/2/1、/flag_in_here/2/2、/flag_in_here/2/3、/flag_in_here/3/1。。。。。 PHPINFO 直 阅读全文
posted @ 2023-09-22 21:51 geyashi 阅读(100) 评论(0) 推荐(0)
摘要: 使用Python的requests库自定义请求 import requests from requests import Request, Session url = "http://challenge-d590d34746e26bc5.sandbox.ctfhub.com:10800/index.php" headers = {"user-ag 阅读全文
posted @ 2023-09-17 22:06 geyashi 阅读(45) 评论(0) 推荐(0)
摘要: 对于大量的数据,一般先用 Wireshark 软件先进行,然后在用 tshark 或 pyshark 分析 # 过滤出所有有uri请求的响应file_data tshark -nr [pcap文件] -Y 'http.request.full_uri' -T fields -e http.file_ 阅读全文
posted @ 2023-09-17 18:30 geyashi 阅读(156) 评论(0) 推荐(0)