遇到网站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复现

 

 

posted @ 2022-08-25 17:39  mt0u  阅读(438)  评论(2编辑  收藏  举报