天天看點

遇到網站403怎麼繞過

遇到網站403怎麼繞過

滲透小知識,繞過網站403

遇到網站403怎麼辦

例如:

遇到網站403怎麼繞過
檔案nginx.conf配置如下
http {
	##
	# Virtual Host Configs
	##

	include /etc/nginx/conf.d/*.conf;
	# include /etc/nginx/sites-enabled/*;
	# 限制IP通路
	server {
		listen 80 default;
		server_name _;
		return 403;
		}
	server {
        	listen       80;
        	server_name  nginx.lab.com;
		location / {
        	    proxy_pass http://10.10.10.12:8000;
        	    index  index.html index.htm index.jsp;
        	}
    	}
}      
繞過方法
  • 使用域名通路,在Windows環境下
#修改 hosts

notepad %windir%\system32\drivers\etc\hosts

#添加以下綁定關系

10.10.10.12 nginx.lab.com
      
使用bp複現
遇到網站403怎麼繞過