12 2018 档案
git与github使用
摘要:git工具使用:linux下安装开源软件+cmake的源码安装 github 在线团队的开发 阅读全文
posted @ 2018-12-13 19:29 thonsun 阅读(123) 评论(0) 推荐(0)
二进制的分析与漏洞利用
摘要:如何利用IDA或者OD进行一些动态的调试或者动态的修改,插入代码(如pwn中)的二进制代码逆向与破解,漏洞利用 逆向+pwn 阅读全文
posted @ 2018-12-13 16:01 thonsun 阅读(588) 评论(0) 推荐(0)
sql盲注学习
摘要:information_schema.schemata(schema_name) information_schema.tables(table_name,table_schema) information_schema.columns(column_name,table_name) 盲注与poc编 阅读全文
posted @ 2018-12-12 23:33 thonsun 阅读(321) 评论(0) 推荐(0)
Linux下使用openVPN连接到某个内网
摘要:推荐一个网站(比较全的介绍关于openvpn的客户端与服务端的配置) 点击我 此处我介绍我配置openvpn客户端连接的坑 我的机器为kali linux 上面就是装好了客户端的 下面就是连接 如果确定主机,key,.crt文件都没有错误的话就是你的 系统时间不对了 这坑他妈的。。。。。 阅读全文
posted @ 2018-12-10 22:34 thonsun 阅读(437) 评论(0) 推荐(0)
sql手工注入
摘要:猜是否存在注入: ' ' or 1=1 ') or 1=1 " 猜这句sql语句的字段数目与内容的显示: ') order by 10 二分法缩小,知道没有报错 ') union select 1,2,3,4 构造的内容: ') union select 1,x,3,x questions info 阅读全文
posted @ 2018-12-09 23:14 thonsun 阅读(263) 评论(0) 推荐(0)