会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
nikiss
博客园
首页
新随笔
联系
订阅
管理
公告
2020年12月17日
解决sqli-labs不兼容高版本php
摘要: 把里面所有sql函数通通替换成sqli的就行 已经放到github上了 https://github.com/nikissXI/sqli_labs_sqli-version
阅读全文
posted @ 2020-12-17 16:54 nikiss
阅读(825)
评论(0)
推荐(0)
编辑
linux配置rsa秘钥登陆
摘要: 相比密码登陆,rsa秘钥登陆的安全性高很多,重点:防爆破 首先在服务器生成公钥和秘钥 ssh-keygen -b 1024 -t rsa -b 是加密位数 -t 是类型 然后有三个步骤(你懒的话直接回车三次完事) Enter file in which to save the key (/root/
阅读全文
posted @ 2020-12-17 11:25 nikiss
阅读(737)
评论(0)
推荐(0)
编辑
配置kali、Ubuntu这类Linux发行版的网卡
摘要: 编辑/etc/network/interfaces文件 #eth0是网卡名称 #配置DHCP追加以下内容 auto eth0 iface eth0 inet dhcp #配置静态IP追加以下内容 auto eth0 iface eth0 inet static address 192.168.3.1
阅读全文
posted @ 2020-12-17 10:31 nikiss
阅读(106)
评论(0)
推荐(0)
编辑