今天学了啥
今天学了啥
全部文章
分类
学习笔记(10)
服务器开发(1)
未归档(1)
靶场任务(3)
题解(15)
归档
标签
去牛客网
登录
/
注册
今天学了啥的博客
念念不忘,终有回响
全部文章
(共30篇)
CTF 常用工具
文件操作 文件合并 linux cat 文件名1 文件名2 文件名3 > 合并文件名 文件md5值 #linux md5sum 文件名 #windows certutil -hashfile 文件名 md5 文件分离 #分析文件 binwalk file #分离文件 bin...
2022-02-18
0
0
靶场 basic pentesting 1
获取暴露端口程序的信息 nmap -A 192.168.153.131 使用msfconsole sudo msfconsole 查找ftp对应软件的漏洞 search ProFTPD 1.3.3c 选择具体脚本 use 0 添加payload show payloads...
2022-02-15
0
0
靶场 narak
扫描根目录后的存在的路径 dirb http://192.168.*.*/ 找到http://192.168.*.*/webdav 使用cewl爬取网站创建密码字典 cewl ip -w 1.txt 使用hydra暴力破解webdav的用户名与密码 hydra -L 1.txt -P...
2022-02-14
0
0
靶场 Me-and-My-Girlfriend-1
nmap 扫描端口:获取目标主机ip即端口等信息 nmap ip 登陆暴露出的 web,观察获取目标用户密码 登陆主机 查看用户权限 sudo -l 利用php漏洞提权root sudo php -r 'system("/bin/bash");' 获取相关数据 find /...
2022-02-14
0
0
题解 | #统计作答次数#
IF(expr1,expr2,expr3) 如果 expr1 是TRUE (expr1 <> 0 and expr1 <> NULL),则 IF()的返回值为expr2; 否则返回值则为 expr3。IF() 的返回值为数字值或字符串值,具体情况视其所在语境而定。 sel...
Mysql
2022-02-12
4
0
题解 | #SQL类别高难度试卷得分的截断平均值#
保留1位小数:round(..., 1) select tag, difficulty, round((sum(score) - max(score) - min(score)) / ((count(score) - 2)), 1) as clip_avg_score from exam_re...
Mysql
2022-02-12
0
0
题解 | #删除索引#
drop index uniq_idx_exam_id on examination_info; drop index full_idx_tag on examination_info;
Mysql
2022-02-11
0
265
题解 | #创建索引#
create index idx_duration on examination_info(duration); create unique index uniq_idx_exam_id on examination_info(exam_id); create fullText index full...
Mysql
2022-02-11
0
261
题解 | #修改表#
# 字段level的后面增加一列最多可保存15个汉字的字段school; alter table user_info add school varchar(15) after `level`; # 将表中job列名改为profession,varchar字段长度变为10; alter table ...
Mysql
2022-02-11
0
315
题解 | #删除记录(三)#
truncate nowcoder_exam_record; 手动重置自增ID DELETE FROM nowcoder_exam_record; ALTER TABLE nowcoder_exam_record auto_increment=1;
Mysql
2022-02-11
1
508
首页
上一页
1
2
3
下一页
末页