ID OPENVAS:1361412562310900718 Type openvas Reporter Copyright (C) 2009 Greenbone Networks GmbH Modified 2020-02-14T00:00:00
Description
Detects the installed version of AVG AntiVirus
The script logs in via smb, searches for AVG AntiVirus in the registry
and gets the version from registry
# Copyright (C) 2009 Greenbone Networks GmbH
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# 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_oid("1.3.6.1.4.1.25623.1.0.900718");
script_version("2020-02-14T10:29:07+0000");
script_tag(name:"cvss_base", value:"0.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");
script_tag(name:"last_modification", value:"2020-02-14 10:29:07 +0000 (Fri, 14 Feb 2020)");
script_tag(name:"creation_date", value:"2009-05-29 07:35:11 +0200 (Fri, 29 May 2009)");
script_tag(name:"qod_type", value:"registry");
script_name("AVG AntiVirus Version Detection (Windows)");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2009 Greenbone Networks GmbH");
script_family("Product detection");
script_dependencies("smb_reg_service_pack.nasl");
script_mandatory_keys("SMB/WindowsVersion");
script_require_ports(139, 445);
script_tag(name:"summary", value:"Detects the installed version of AVG AntiVirus
The script logs in via smb, searches for AVG AntiVirus in the registry
and gets the version from registry");
exit(0);
}
include( "smb_nt.inc" );
include( "cpe.inc" );
include( "host_details.inc" );
include( "secpod_smb_func.inc" );
os_arch = get_kb_item( "SMB/Windows/Arch" );
if( ! os_arch )
exit( 0 );
if( "x86" >< os_arch ) {
key_list = make_list( "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\" );
} else if( "x64" >< os_arch ) {
key_list = make_list( "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\",
"SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\" );
}
if( isnull( key_list ) )
exit( 0 );
foreach key( key_list ) {
foreach item( registry_enum_keys( key:key ) ) {
appName = registry_get_sz( key:key + item, item:"DisplayName" );
if( ! appName || appName !~ "AVG (Antivirus FREE|Business Security)" )
continue;
concluded = "Registry Key: " + key + item + '\n';
concluded += "DisplayName: " + appName;
location = "unknown";
version = "unknown";
loc = registry_get_sz( key:key + item, item:"InstallLocation" );
if( loc )
location = loc;
if( vers = registry_get_sz( key:key + item, item:"DisplayVersion" ) ) {
version = vers;
concluded += '\nDisplayVersion: ' + vers;
}
set_kb_item( name:"avg/antivirus/detected", value:TRUE );
if( appName == "AVG Antivirus FREE" ) {
set_kb_item( name:"avg/antivirus_free/detected", value:TRUE );
}
else if( appName == "AVG Business Security" ) {
set_kb_item( name:"avg/antivirus_business/detected", value:TRUE );
}
register_and_report_cpe( app:appName, ver:version, concluded:concluded,
base:"cpe:/a:avg:anti-virus:", expr:"^([0-9.]+)", insloc:location, regService:"smb-login", regPort:0 );
exit( 0 );
}
}
exit( 0 );
{"id": "OPENVAS:1361412562310900718", "type": "openvas", "bulletinFamily": "scanner", "title": "AVG AntiVirus Version Detection (Windows)", "description": "Detects the installed version of AVG AntiVirus\n\n The script logs in via smb, searches for AVG AntiVirus in the registry\n and gets the version from registry", "published": "2009-05-29T00:00:00", "modified": "2020-02-14T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310900718", "reporter": "Copyright (C) 2009 Greenbone Networks GmbH", "references": [], "cvelist": [], "lastseen": "2020-02-18T14:30:25", "viewCount": 1, "enchantments": {"dependencies": {"references": [], "modified": "2020-02-18T14:30:25", "rev": 2}, "score": {"value": 0.6, "vector": "NONE", "modified": "2020-02-18T14:30:25", "rev": 2}, "vulnersScore": 0.6}, "pluginID": "1361412562310900718", "sourceData": "# Copyright (C) 2009 Greenbone Networks GmbH\n#\n# SPDX-License-Identifier: GPL-2.0-or-later\n#\n# This program is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License\n# as published by the Free Software Foundation; either version 2\n# of the License, or (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.900718\");\n script_version(\"2020-02-14T10:29:07+0000\");\n script_tag(name:\"cvss_base\", value:\"0.0\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:L/Au:N/C:N/I:N/A:N\");\n script_tag(name:\"last_modification\", value:\"2020-02-14 10:29:07 +0000 (Fri, 14 Feb 2020)\");\n script_tag(name:\"creation_date\", value:\"2009-05-29 07:35:11 +0200 (Fri, 29 May 2009)\");\n script_tag(name:\"qod_type\", value:\"registry\");\n script_name(\"AVG AntiVirus Version Detection (Windows)\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2009 Greenbone Networks GmbH\");\n script_family(\"Product detection\");\n script_dependencies(\"smb_reg_service_pack.nasl\");\n script_mandatory_keys(\"SMB/WindowsVersion\");\n script_require_ports(139, 445);\n\n script_tag(name:\"summary\", value:\"Detects the installed version of AVG AntiVirus\n\n The script logs in via smb, searches for AVG AntiVirus in the registry\n and gets the version from registry\");\n\n exit(0);\n}\n\ninclude( \"smb_nt.inc\" );\ninclude( \"cpe.inc\" );\ninclude( \"host_details.inc\" );\ninclude( \"secpod_smb_func.inc\" );\n\nos_arch = get_kb_item( \"SMB/Windows/Arch\" );\nif( ! os_arch )\n exit( 0 );\n\nif( \"x86\" >< os_arch ) {\n key_list = make_list( \"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\\" );\n} else if( \"x64\" >< os_arch ) {\n key_list = make_list( \"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\\",\n \"SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\\" );\n}\n\nif( isnull( key_list ) )\n exit( 0 );\n\nforeach key( key_list ) {\n foreach item( registry_enum_keys( key:key ) ) {\n\n appName = registry_get_sz( key:key + item, item:\"DisplayName\" );\n\n if( ! appName || appName !~ \"AVG (Antivirus FREE|Business Security)\" )\n continue;\n\n concluded = \"Registry Key: \" + key + item + '\\n';\n concluded += \"DisplayName: \" + appName;\n location = \"unknown\";\n version = \"unknown\";\n\n loc = registry_get_sz( key:key + item, item:\"InstallLocation\" );\n if( loc )\n location = loc;\n\n if( vers = registry_get_sz( key:key + item, item:\"DisplayVersion\" ) ) {\n version = vers;\n concluded += '\\nDisplayVersion: ' + vers;\n }\n\n set_kb_item( name:\"avg/antivirus/detected\", value:TRUE );\n\n if( appName == \"AVG Antivirus FREE\" ) {\n set_kb_item( name:\"avg/antivirus_free/detected\", value:TRUE );\n }\n else if( appName == \"AVG Business Security\" ) {\n set_kb_item( name:\"avg/antivirus_business/detected\", value:TRUE );\n }\n\n register_and_report_cpe( app:appName, ver:version, concluded:concluded,\n base:\"cpe:/a:avg:anti-virus:\", expr:\"^([0-9.]+)\", insloc:location, regService:\"smb-login\", regPort:0 );\n exit( 0 );\n }\n}\n\nexit( 0 );\n", "naslFamily": "Product detection", "immutableFields": []}