摘要: 开启80端口 firewall-cmd --zone=public --add-port=80/tcp --permanent 出现success表明添加成功 命令含义: --zone #作用域 --add-port=80/tcp #添加端口,格式为:端口/通讯协议 --permanent #永久生 阅读全文
posted @ 2017-10-25 23:08 ka1n4t 阅读(174) 评论(0) 推荐(0) 编辑
摘要: ####面向对象风格 <?php $conn = new mysqli("localhost", "username", "password", "database_name"); if($conn->connect_errno) { printf("connect filed: $s \n", $ 阅读全文
posted @ 2017-10-24 15:40 ka1n4t 阅读(376) 评论(0) 推荐(0) 编辑
摘要: msfvenom命令行选项如下: 生成payload 生成payload,有有两个必须的选项: p f 使用 p 来指定要使用的payload。 可以使用下面的命令来查看所有msf可用的payload列表 p选项也支持使用使用自定义的payload,需要使用 " ",比如: 使用 f 来指定payl 阅读全文
posted @ 2017-10-22 18:28 ka1n4t 阅读(2327) 评论(0) 推荐(0) 编辑
摘要: http://blog.securelayer7.net/owasp top 10 insufficient attack protection 7 captcha bypass/ 阅读全文
posted @ 2017-10-21 12:35 ka1n4t 阅读(172) 评论(0) 推荐(0) 编辑
摘要: ###1.提权: 建立普通用户:net user 帐户 密码 /add 提权成管理员:net localgroup administrators 帐户 /add 更改用户密码:net user 帐户 密码 删除用户: net user 帐户 /del ###2.开启远程连接: windows2000 阅读全文
posted @ 2017-10-21 00:35 ka1n4t 阅读(220) 评论(0) 推荐(0) 编辑
摘要: https://github.com/andresriancho/w3af/issues/15523 http://blog.csdn.net/ycl146/article/details/75041527 阅读全文
posted @ 2017-10-19 20:37 ka1n4t 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 注:倒数两条可以不做。 问题地址:https://askubuntu.com/questions/50621/cannot-connect-to-postgresql-on-port-5432 设置好之后进入metasploit连接。 plus: http://blog.csdn.net/u0140 阅读全文
posted @ 2017-10-19 20:13 ka1n4t 阅读(217) 评论(0) 推荐(0) 编辑
摘要: kali config 阅读全文
posted @ 2017-10-17 10:59 ka1n4t 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 先给一个表 man: | | |-name--|-age--| |--AA |--aa | |--BB |--bb | |--CC |--cc | |--CC |--dd | | | SQL查询 $conn=mysqli_connect(...);//省略 $sql="select * from m 阅读全文
posted @ 2017-09-12 23:44 ka1n4t 阅读(574) 评论(0) 推荐(0) 编辑
摘要: ####路由器: 作用在网络层。根据包头中的目标IP在路由表中寻找,由IP和子网掩码得出网络号,然后在路由表中的“目标地址项中的IP按位从左向右与刚刚算出的网络号对比,如果相同,就将包从此条记录的对应的“接口”选项发出去。 ####网关: 在传统TCP/IP术语中,网路装置只分成两种,一种为网关(g 阅读全文
posted @ 2017-09-12 23:30 ka1n4t 阅读(776) 评论(0) 推荐(0) 编辑