📄 gb_adobe_flash_player_detect_win.nasl
字号:
################################################################################ OpenVAS Vulnerability Test# $Id: gb_adobe_flash_player_detect_win.nasl 320 2008-10-16 17:19:29Z oct $## Adobe Flash Player Version Detection (Win)## Authors:# Chandan S <schandan@secpod.com>## Copyright:# Copyright (c) 2008 Intevation GmbH, http://www.intevation.net## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License version 2# (or any later version), as published by the Free Software Foundation.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.###############################################################################if(description){ script_id(800029); script_version("$Revision: 1.0 $"); script_name(english:"Adobe Flash Player Version Detection (Win)"); desc["english"] = " Overview: This script detects the version from registry/file and sets the Adobe Flash Player version in the KB. Risk factor : Informational"; script_description(english:desc["english"]); script_summary(english:"Set KB for the version of Adobe Flash Player"); script_category(ACT_GATHER_INFO); script_copyright(english:"Copyright (C) 2008 Intevation GmbH"); script_family(english:"General"); script_dependencies("secpod_reg_enum.nasl"); script_require_keys("SMB/WindowsVersion"); exit(0);}include("smb_nt.inc");if(!get_kb_item("SMB/WindowsVersion")){ exit(0);}flashVer = registry_get_sz(key:"SOFTWARE\Microsoft\Windows\CurrentVersion" + "\Uninstall\Adobe Flash Player Plugin", item:"DisplayVersion");if(!flashVer){ flashVer = registry_get_sz(key:"SOFTWARE\Microsoft\Windows\CurrentVersion" + "\Uninstall\Adobe Flash Player Activex", item:"DisplayVersion");}if(flashVer){ set_kb_item(name:"AdobeFlashPlayer/Win/Ver", value:flashVer);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -