在linux系统中扫描bash漏洞的方法
1.首先,在linux命令行中执行以下命令扫描bash漏洞;
env x='() { :;}; echo vulnerable' bash -c "echo this is a test"
2.命令执行后,查看输出结果,如输出结果为以下信息
vulnerable this is a test
vulnerable
this is a test
则说明系统存在bash漏洞;