摘要: NMap也就是Network Mapper,nmap是在网络安全渗透测试中经常会用到的强大的扫描器,功能之强大,不言而喻。 1 安装 wget https://nmap.org/dist/nmap-6.00.tar.bz2 tar -xf nmap-6.00.tar.bz2 sudo ./confi 阅读全文
posted @ 2018-08-14 16:52 Dunksky 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 本文主要是基于redhat7安装mysql实践 1 先检查是否已经安装了Mysql,如果有先删除 rpm -qa | grep mysql;rpm -e --nodeps mysql 2 下载安装 wget wget https://dev.mysql.com/get/mysql57-communi 阅读全文
posted @ 2018-08-13 17:35 Dunksky 阅读(111) 评论(0) 推荐(0) 编辑
摘要: python 阅读全文
posted @ 2018-08-12 17:12 Dunksky 阅读(93) 评论(0) 推荐(0) 编辑
摘要: Fabric 是一个 Python 的库和命令行工具,用来提高基于 SSH 的应用部署和系统管理效率。 更具体地说,Fabric 是: 一个让你通过 命令行 执行 无参数 Python 函数 的工具; 一个让通过 SSH 执行 Shell 命令更加 容易 、 更符合 Python 风格 的命令库(建 阅读全文
posted @ 2018-08-22 14:44 Dunksky 阅读(63) 评论(0) 推荐(0) 编辑
摘要: Nginx 是一个高性能http,反向代理,服务器。特点是占用内存小,并发能力强。相对于Apache的优点如下: 1 高并发性能非常好,处理静态文件5w/s 2 负载均衡和反向代理性能好 3 系统内存和cpu占用率低 安装配置 sudo yum install pcre-devel pcre -y 阅读全文
posted @ 2018-08-15 15:45 Dunksky 阅读(80) 评论(0) 推荐(0) 编辑
摘要: Linux系统简单易用的上传下载命令rz和sz sudo yum install lrzsz -y 上传:rz 下载:sz 阅读全文
posted @ 2018-08-14 19:44 Dunksky 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 1 curl -sSL https://get.docker.com/ | sh 2 将已经存在的用户加到docker group, usermod -a -G docker cheng 3 启动,sudo systemctl start docker 4 加入到开机启动 ,systemctl en 阅读全文
posted @ 2018-08-12 16:40 Dunksky 阅读(110) 评论(0) 推荐(0) 编辑