We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://wsxk.github.io/web_vul/
常见web漏洞
3.1 路径遍历漏洞 3.2 命令注入 3.3 身份验证绕过 3.4 SQL注入 3.5 跨站脚本
常见web漏洞 3.1 路径遍历漏洞 路径遍历漏洞指的是允许攻击者在未经授权的情况下读取服务器上任意文件的安全漏洞 例子:
curl http://challenge.localhost:80/?path=../flag
3.2 命令注入 命令注入指的是攻击者可以控制变量作为命令被执行而导致的安全漏洞 比如有如下代码: def level2(): timezone = request.args.get(
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://wsxk.github.io/web_vul/
常见web漏洞
3.1 路径遍历漏洞
3.2 命令注入
3.3 身份验证绕过
3.4 SQL注入
3.5 跨站脚本
常见web漏洞
3.1 路径遍历漏洞
路径遍历漏洞指的是允许攻击者在未经授权的情况下读取服务器上任意文件的安全漏洞
例子:
路径遍历漏洞的参数通常是../../../flag
curl http://challenge.localhost:80/?path=../flag
3.2 命令注入
命令注入指的是攻击者可以控制变量作为命令被执行而导致的安全漏洞
比如有如下代码:
def level2():
timezone = request.args.get(
The text was updated successfully, but these errors were encountered: