摘要: [BJDCTF2020]Easy MD5 Step 1 看源代码没线索,用burp抓包看一下: 发现提示,发现输入的是password 要构造使password=’or‘1的形式使之形成永真的语句 md5($pass,true)应该就是将pass的值md5加密后成十六进制转换成字符 这时候276f7 阅读全文
posted @ 2024-07-23 20:38 8o1er9t 阅读(109) 评论(0) 推荐(0)
摘要: [极客大挑战 2019]BabySQL 判断类型 SQL关键字绕过,这道题可以双写绕过。 username=1' or 1=1# password=1' or 1=1# 得到报错: You have an error in your SQL syntax; check the manual that 阅读全文
posted @ 2024-07-22 17:45 8o1er9t 阅读(28) 评论(0) 推荐(0)
摘要: CISCN 2023 WEB unzip 前置知识 unzip是linux系统下的一个解压缩命令: unzip指令解压,将压缩文件test.zip在指定目录/tmp(当前)下解压缩,如果已有相同的文件存在,要求unzip命令覆盖原先的文件。 软连接:类似于Windows的快捷方式,但是它可以直接操作 阅读全文
posted @ 2024-04-28 03:41 8o1er9t 阅读(94) 评论(0) 推荐(0)
摘要: cauc ctf wp ez_隐写 如果计算机是中国人发明的 Welcome! easy_rsa from Crypto.Util.number import * import gmpy2 import libnum import random import hashlib n= 0x52d483c 阅读全文
posted @ 2024-04-27 17:18 8o1er9t 阅读(60) 评论(0) 推荐(0)
摘要: Step 1/16 a) What is the output power of the interferometer? Step 2/16 Understand the power splitting ratios of the beamsplitters. Beamsplitter A has 阅读全文
posted @ 2024-04-26 22:42 8o1er9t 阅读(11) 评论(0) 推荐(0)
摘要: 配置nginx HTTPS证书 安装Cerbot Let‘s Encrypt apt安装不了cerbot,换snapd sudo apt install snapd sudo snap install --classic certbot 确保Certbot命令可以通过创建一个符号链接到/usr/bi 阅读全文
posted @ 2024-04-23 12:20 8o1er9t 阅读(27) 评论(0) 推荐(0)
摘要: Nginx安装配置 安装 首先检查是否已安装 nginx -v 并未安装,所以继续安装 apt install nginx-core nginx安装完成后的文件位置 /usr/sbin/nginx:主程序 /etc/nginx:存放配置文件 /usr/share/nginx:存放静态文件 /var/ 阅读全文
posted @ 2024-04-23 10:13 8o1er9t 阅读(29) 评论(0) 推荐(0)
摘要: Web [转载学习] 随着 WEB 2.0、社交网络、微博等等一系列新型的互联网产品的诞生,基于 WEB 环境的互联网应用越来越广泛,企业信息化的过程中各种应用都架设在 WEB 平台上,WEB 业务的迅速发展也引起黑客们的强烈关注,接踵而至的就是 WEB 安全威胁的凸显,黑客利用网站操作系统的漏洞和 阅读全文
posted @ 2024-04-22 10:14 8o1er9t 阅读(86) 评论(0) 推荐(0)
摘要: 网站备份 linux下备份指令 cp命令:cp -R /var/www/html /tmp rsync命令:rsync -avz /var/www/html username@remote_server:/backup tar命令:tar -zcf /backups/html_backup.tar. 阅读全文
posted @ 2024-04-20 20:19 8o1er9t 阅读(16) 评论(0) 推荐(0)
摘要: 有用的C/C++的Windows操作 Windows.h库 示例 #include<stdio.h> #include<windows.h> void main() { printf("helloworld"); //第一个参数为0,表示依赖的窗口的编号,设为0就是系统弹出的;第二个参数是对话框的内 阅读全文
posted @ 2024-04-20 02:18 8o1er9t 阅读(21) 评论(0) 推荐(0)