背景
有个业务要求,需要先进行一定的自动化操作
将提取的信息写到Word里
docxtemplater
集成
1 | pnpm add docxtemplater pizzip fs-extra |
如果需要插入图片
1 | pnpm add docxtemplater pizzip fs-extra docxtemplater-image-module-free image-size |
看网络进程
1 | netstat -antup |
1 | cat /etc/passwd |
1 | crontab -l |
1 | find / -type f -newermt "2021-08-20 00:00" -a -not -newermt "2021-08-20 23:59" 2>/dev/null |
1 | select password from users where id = "xiaoming" |
schemata | tables | columns | |
---|---|---|---|
数据库名 | schema_name | ||
表名 | table_schema | table_name | |
字段名 | table_schema | table_name | column_name |
nianji
liuyi
name
1 | select name from nianji.liuyi; |
联合注入
1 | select id,username,password from users union select 1,2,3; |
1 | xiaoming | xiaoming |
1 | 2 | 3 |