coffee_cn

博客园 首页 新随笔 联系 订阅 管理

10 2019 档案

摘要:转载:https://www.cnblogs.com/lfxiao/p/9519759.html 查看分区#fdisk -l 增加分区(默认值回车)#fdisk /dev/sdapnp3w 重启#reboot 格式化新增分区#mkfs.ext3 /dev/sda3 建立挂载目录#mkdir /dat 阅读全文
posted @ 2019-10-23 18:38 coffee 阅读(437) 评论(0) 推荐(0)

摘要:查看所有表的字符集 SELECT table_name, table_type, engine, version, table_collation FROM information_schema.tables WHERE table_schema = 'test_db11' ORDER BY tab 阅读全文
posted @ 2019-10-23 17:38 coffee 阅读(2951) 评论(0) 推荐(0)

摘要:转载:https://mp.weixin.qq.com/s/us1b8gLbS5djEAFnTlQyGQ 1.杀死所有正在运行的容器 docker kill $(docker ps -a -q) 2.删除所有已经停止的容器 docker rm $(docker ps -a -q) 3.删除所有镜像 阅读全文
posted @ 2019-10-23 14:54 coffee 阅读(119) 评论(0) 推荐(0)

摘要:https://www.runoob.com/docker/docker-install-mysql.html #docker search mysql #docker pull mysql:5.6 #docker images |grep mysql #docker run -p 3306:330 阅读全文
posted @ 2019-10-22 17:08 coffee 阅读(117) 评论(0) 推荐(0)

摘要:Sqlmap注入工具 http://sqlmap.org/ Sqlmap是国外的一个免费的注入工具,基于python开发,支持现在几乎所有的数据库,支持get、post、cookie注入,可以添加cookie和user-agent,支持盲注,报错回显注入,DNS回显注入等,还有其他多种注入方法,支持 阅读全文
posted @ 2019-10-18 17:32 coffee 阅读(223) 评论(0) 推荐(0)

摘要:最近一个项目需要用到两个外部包文件 ctgclient-8.1.0.3.jar ctgserver-8.1.0.3.jar 方便maven打包,修改pom.xml配置(basedir为pom.xml所在目录) 阅读全文
posted @ 2019-10-15 11:18 coffee 阅读(984) 评论(0) 推荐(0)