{"openvas": [{"lastseen": "2020-04-29T22:26:39", "description": "This host is missing a critical security update according to\n Microsoft Bulletin MS09-070.", "cvss3": {}, "published": "2009-12-09T00:00:00", "type": "openvas", "title": "Microsoft Windows ADFS Remote Code Execution Vulnerability (971726)", "bulletinFamily": "scanner", "cvss2": {}, "cvelist": ["CVE-2009-2509", "CVE-2009-2508"], "modified": "2020-04-27T00:00:00", "id": "OPENVAS:1361412562310901064", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310901064", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Microsoft Windows ADFS Remote Code Execution Vulnerability (971726)\n#\n# Authors:\n# Antu Sanadi <santu@secpod.com>\n#\n# Updated By: Madhuri D <dmadhuri@secpod.com> on 2011-01-12\n# - To detect the vuln file version on windows 2008 server\n#\n# Copyright:\n# Copyright (C) 2009 SecPod, http://www.secpod.com\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License version 2\n# (or any later version), as published by the Free Software Foundation.\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###############################################################################\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.901064\");\n script_version(\"2020-04-27T09:00:11+0000\");\n script_cve_id(\"CVE-2009-2508\", \"CVE-2009-2509\");\n script_tag(name:\"cvss_base\", value:\"9.0\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:L/Au:S/C:C/I:C/A:C\");\n script_tag(name:\"last_modification\", value:\"2020-04-27 09:00:11 +0000 (Mon, 27 Apr 2020)\");\n script_tag(name:\"creation_date\", value:\"2009-12-09 16:08:24 +0100 (Wed, 09 Dec 2009)\");\n script_name(\"Microsoft Windows ADFS Remote Code Execution Vulnerability (971726)\");\n script_xref(name:\"URL\", value:\"http://support.microsoft.com/kb/971726\");\n script_xref(name:\"URL\", value:\"http://www.vupen.com/english/advisories/2009/3434\");\n script_xref(name:\"URL\", value:\"https://docs.microsoft.com/en-us/security-updates/securitybulletins/2009/ms09-070\");\n\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2009 SecPod\");\n script_family(\"Windows : Microsoft Bulletins\");\n script_dependencies(\"secpod_reg_enum.nasl\");\n script_require_ports(139, 445);\n script_mandatory_keys(\"SMB/registry_enumerated\");\n\n script_tag(name:\"impact\", value:\"Successful exploitation will allow remote attackers to take complete\n control of the victim's system.\");\n script_tag(name:\"affected\", value:\"- Microsoft Windows 2K3 Service Pack 2 and prior\n\n - Microsoft Windows Server 2008 Service Pack 2 and prior\");\n script_tag(name:\"insight\", value:\"The vulnerability is due to incorrect validation of request headers when an\n authenticated user connects to an ADFS enabled Web Server. An attacker who\n successfully exploited this vulnerability could take complete control of an\n affected system.\");\n script_tag(name:\"solution\", value:\"The vendor has released updates. Please see the references for more information.\");\n script_tag(name:\"summary\", value:\"This host is missing a critical security update according to\n Microsoft Bulletin MS09-070.\");\n script_tag(name:\"qod_type\", value:\"registry\");\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n script_xref(name:\"URL\", value:\"https://docs.microsoft.com/en-us/security-updates/securitybulletins/2009/ms09-070\");\n exit(0);\n}\n\ninclude(\"smb_nt.inc\");\ninclude(\"secpod_reg.inc\");\ninclude(\"version_func.inc\");\ninclude(\"secpod_smb_func.inc\");\n\nif(hotfix_check_sp(win2003:3, win2008:3) <= 0){\n exit(0);\n}\n\nif(!registry_key_exists(key:\"SOFTWARE\\Microsoft\\ADFS\\Setup\\Parameters\")){\n exit(0);\n}\n\n# MS09-070 Hotfix check\nif(hotfix_missing(name:\"971726\") == 0){\n exit(0);\n}\n\ndllPath = registry_get_sz(key:\"SOFTWARE\\Microsoft\\COM3\\Setup\",\n item:\"Install Path\");\nif(!dllPath){\n exit(0);\n}\n\ndllPath = dllPath - \"\\system32\" + \"\\adfs\\Adfsreg.exe\";\nshare = ereg_replace(pattern:\"([A-Z]):.*\", replace:\"\\1$\", string:dllPath);\nfile = ereg_replace(pattern:\"[A-Z]:(.*)\", replace:\"\\1\", string:dllPath);\n\ndllVer = GetVer(file:file, share:share);\nif(!dllVer){\n exit(0);\n}\n\nif(hotfix_check_sp(win2003:3) > 0)\n{\n SP = get_kb_item(\"SMB/Win2003/ServicePack\");\n if(\"Service Pack 2\" >< SP)\n {\n if(version_is_less(version:dllVer, test_version:\"5.2.3790.4578\")){\n report = report_fixed_ver(installed_version:dllVer, fixed_version:\"5.2.3790.4578\", install_path:dllPath);\n security_message(port: 0, data: report);\n }\n exit(0);\n }\n security_message( port: 0, data: \"The target host was found to be vulnerable\" );\n}\n\ndllPath = registry_get_sz(key:\"SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\",\n item:\"PathName\");\nif(!dllPath){\n exit(0);\n}\n\ndllPath = dllPath + \"\\adfs\\bin\\Adfsgc.exe\";\nshare = ereg_replace(pattern:\"([A-Z]):.*\", replace:\"\\1$\", string:dllPath);\nfile = ereg_replace(pattern:\"[A-Z]:(.*)\", replace:\"\\1\", string:dllPath);\n\ndllVer = GetVer(file:file, share:share);\nif(!dllVer){\n exit(0);\n}\n\nif(hotfix_check_sp(win2008:3) > 0)\n{\n SP = get_kb_item(\"SMB/Win2008/ServicePack\");\n if(\"Service Pack 1\" >< SP)\n {\n if(version_is_less(version:dllVer, test_version:\"6.0.6001.18000\")){\n report = report_fixed_ver(installed_version:dllVer, fixed_version:\"6.0.6001.18000\", install_path:dllPath);\n security_message(port: 0, data: report);\n exit(0);\n }\n }\n\n if(\"Service Pack 2\" >< SP)\n {\n if(version_is_less(version:dllVer, test_version:\"6.0.6002.18005\")){\n report = report_fixed_ver(installed_version:dllVer, fixed_version:\"6.0.6002.18005\", install_path:dllPath);\n security_message(port: 0, data: report);\n exit(0);\n }\n }\n}\n", "cvss": {"score": 9.0, "vector": "AV:N/AC:L/Au:S/C:C/I:C/A:C"}}, {"lastseen": "2017-07-02T21:14:15", "description": "This host is missing a critical security update according to\n Microsoft Bulletin MS09-070.", "cvss3": {}, "published": "2009-12-09T00:00:00", "type": "openvas", "title": "Microsoft Windows ADFS Remote Code Execution Vulnerability (971726)", "bulletinFamily": "scanner", "cvss2": {}, "cvelist": ["CVE-2009-2509", "CVE-2009-2508"], "modified": "2017-02-20T00:00:00", "id": "OPENVAS:901064", "href": "http://plugins.openvas.org/nasl.php?oid=901064", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: secpod_ms09-070.nasl 5363 2017-02-20 13:07:22Z cfi $\n#\n# Microsoft Windows ADFS Remote Code Execution Vulnerability (971726)\n#\n# Authors:\n# Antu Sanadi <santu@secpod.com>\n#\n# Updated By: Madhuri D <dmadhuri@secpod.com> on 2011-01-12\n# - To detect the vuln file version on windows 2008 server\n#\n# Copyright:\n# Copyright (c) 2009 SecPod, http://www.secpod.com\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License version 2\n# (or any later version), as published by the Free Software Foundation.\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###############################################################################\n\ntag_impact = \"Successful exploitation will allow remote attackers to take complete\n control of the victim's system.\n Impact Level: System\";\ntag_affected = \"Microsoft Windows 2K3 Service Pack 2 and prior.\n Microsoft Windows Server 2008 Service Pack 2 and prior.\";\ntag_insight = \"The vulnerability is due to incorrect validation of request headers when an\n authenticated user connects to an ADFS enabled Web Server. An attacker who\n successfully exploited this vulnerability could take complete control of an\n affected system.\";\ntag_solution = \"Run Windows Update and update the listed hotfixes or download and\n update mentioned hotfixes in the advisory from the below link,\n http://www.microsoft.com/technet/security/bulletin/ms09-070.mspx\";\ntag_summary = \"This host is missing a critical security update according to\n Microsoft Bulletin MS09-070.\";\n\nif(description)\n{\n script_id(901064);\n script_version(\"$Revision: 5363 $\");\n script_cve_id(\"CVE-2009-2508\", \"CVE-2009-2509\");\n script_tag(name:\"cvss_base\", value:\"9.0\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:L/Au:S/C:C/I:C/A:C\");\n script_tag(name:\"last_modification\", value:\"$Date: 2017-02-20 14:07:22 +0100 (Mon, 20 Feb 2017) $\");\n script_tag(name:\"creation_date\", value:\"2009-12-09 16:08:24 +0100 (Wed, 09 Dec 2009)\");\n script_name(\"Microsoft Windows ADFS Remote Code Execution Vulnerability (971726)\");\n script_xref(name : \"URL\" , value : \"http://secunia.com/advisories/37542/\");\n script_xref(name : \"URL\" , value : \"http://support.microsoft.com/kb/971726\");\n script_xref(name : \"URL\" , value : \"http://www.vupen.com/english/advisories/2009/3434\");\n script_xref(name : \"URL\" , value : \"http://www.microsoft.com/technet/security/bulletin/MS09-070.mspx\");\n\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2009 SecPod\");\n script_family(\"Windows : Microsoft Bulletins\");\n script_dependencies(\"secpod_reg_enum.nasl\");\n script_require_ports(139, 445);\n script_mandatory_keys(\"SMB/WindowsVersion\");\n\n script_tag(name : \"impact\" , value : tag_impact);\n script_tag(name : \"affected\" , value : tag_affected);\n script_tag(name : \"insight\" , value : tag_insight);\n script_tag(name : \"solution\" , value : tag_solution);\n script_tag(name : \"summary\" , value : tag_summary);\n script_tag(name:\"qod_type\", value:\"registry\");\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n exit(0);\n}\n\n\ninclude(\"smb_nt.inc\");\ninclude(\"secpod_reg.inc\");\ninclude(\"version_func.inc\");\ninclude(\"secpod_smb_func.inc\");\n\nif(hotfix_check_sp(win2003:3, win2008:3) <= 0){\n exit(0);\n}\n\n## Check for Active Directory Federation Services Installation\nif(!registry_key_exists(key:\"SOFTWARE\\Microsoft\\ADFS\\Setup\\Parameters\")){\n exit(0);\n}\n\n# MS09-070 Hotfix check\nif(hotfix_missing(name:\"971726\") == 0){\n exit(0);\n}\n\ndllPath = registry_get_sz(key:\"SOFTWARE\\Microsoft\\COM3\\Setup\",\n item:\"Install Path\");\nif(!dllPath){\n exit(0);\n}\n\ndllPath = dllPath - \"\\system32\" + \"\\adfs\\Adfsreg.exe\";\nshare = ereg_replace(pattern:\"([A-Z]):.*\", replace:\"\\1$\", string:dllPath);\nfile = ereg_replace(pattern:\"[A-Z]:(.*)\", replace:\"\\1\", string:dllPath);\n\ndllVer = GetVer(file:file, share:share);\nif(!dllVer){\n exit(0);\n}\n\n# Windows 2003\nif(hotfix_check_sp(win2003:3) > 0)\n{\n SP = get_kb_item(\"SMB/Win2003/ServicePack\");\n if(\"Service Pack 2\" >< SP)\n {\n # Grep for Adfsreg.exe version < 5.2.3790.4578\n if(version_is_less(version:dllVer, test_version:\"5.2.3790.4578\")){\n security_message(0);\n }\n exit(0);\n }\n security_message(0);\n}\n\ndllPath = registry_get_sz(key:\"SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\",\n item:\"PathName\");\nif(!dllPath){\n exit(0);\n}\n\ndllPath = dllPath + \"\\adfs\\bin\\Adfsgc.exe\";\nshare = ereg_replace(pattern:\"([A-Z]):.*\", replace:\"\\1$\", string:dllPath);\nfile = ereg_replace(pattern:\"[A-Z]:(.*)\", replace:\"\\1\", string:dllPath);\n\ndllVer = GetVer(file:file, share:share);\nif(!dllVer){\n exit(0);\n}\n\n# Windows 2008\nif(hotfix_check_sp(win2008:3) > 0)\n{\n SP = get_kb_item(\"SMB/Win2008/ServicePack\");\n if(\"Service Pack 1\" >< SP)\n {\n ## Grep for Adfsgc.exe version < 6.0.6001.18000\n if(version_is_less(version:dllVer, test_version:\"6.0.6001.18000\")){\n security_message(0);\n exit(0);\n }\n }\n\n if(\"Service Pack 2\" >< SP)\n {\n ## Grep for Adfsgc.exe version < 6.0.6002.18005\n if(version_is_less(version:dllVer, test_version:\"6.0.6002.18005\")){\n security_message(0);\n exit(0);\n }\n }\n}\n", "cvss": {"score": 9.0, "vector": "AV:NETWORK/AC:LOW/Au:SINGLE_INSTANCE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}], "nessus": [{"lastseen": "2023-01-11T15:14:49", "description": "The version of Microsoft Active Directory Federation Services (ADFS) installed on the remote host is affected by the following vulnerabilities :\n\n - Insufficient session management validation in the single sign-on functionality of ADFS could allow a remote, authenticated user to spoof the identity of another user. (CVE-2009-2508)\n\n - Incorrect validation of request headers when a remote, authenticated user connects to an ADFS-enabled web server could be leveraged to perform actions on the affected IIS server with the same rights as the Worker Process Identity (WPI), which by default is configured with Network Service account privileges.\n (CVE-2009-2509)", "cvss3": {}, "published": "2009-12-08T00:00:00", "type": "nessus", "title": "MS09-070: Vulnerabilities in Active Directory Federation Services Could Allow Remote Code Execution (971726)", "bulletinFamily": "scanner", "cvss2": {"severity": "HIGH", "exploitabilityScore": 8.0, "obtainAllPrivilege": false, "userInteractionRequired": false, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "LOW", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 9.0, "vectorString": "AV:N/AC:L/Au:S/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "SINGLE"}, "impactScore": 10.0, "obtainUserPrivilege": false}, "cvelist": ["CVE-2009-2508", "CVE-2009-2509"], "modified": "2020-08-05T00:00:00", "cpe": ["cpe:/o:microsoft:windows"], "id": "SMB_NT_MS09-070.NASL", "href": "https://www.tenable.com/plugins/nessus/43062", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\n\ninclude(\"compat.inc\");\n\n\nif (description)\n{\n script_id(43062);\n script_version(\"1.23\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2020/08/05\");\n\n script_cve_id(\"CVE-2009-2508\", \"CVE-2009-2509\");\n script_bugtraq_id(37214, 37215);\n script_xref(name:\"IAVA\", value:\"2009-A-0125-S\");\n script_xref(name:\"MSFT\", value:\"MS09-070\");\n script_xref(name:\"MSKB\", value:\"971726\");\n\n script_name(english:\"MS09-070: Vulnerabilities in Active Directory Federation Services Could Allow Remote Code Execution (971726)\");\n script_summary(english:\"Checks file version of Ifsutils.dll\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"Arbitrary code can be executed on the remote host through Microsoft\nActive Directory Federation Services.\");\n script_set_attribute(attribute:\"description\", value:\n\"The version of Microsoft Active Directory Federation Services (ADFS)\ninstalled on the remote host is affected by the following\nvulnerabilities :\n\n - Insufficient session management validation in the\n single sign-on functionality of ADFS could allow a\n remote, authenticated user to spoof the identity of\n another user. (CVE-2009-2508)\n\n - Incorrect validation of request headers when a remote,\n authenticated user connects to an ADFS-enabled web\n server could be leveraged to perform actions on the\n affected IIS server with the same rights as the Worker\n Process Identity (WPI), which by default is configured\n with Network Service account privileges.\n (CVE-2009-2509)\");\n # https://docs.microsoft.com/en-us/security-updates/SecurityBulletins/2009/ms09-070\n script_set_attribute(attribute:\"see_also\", value:\"https://www.nessus.org/u?041004d1\");\n script_set_attribute(attribute:\"solution\", value:\"Microsoft has released a set of patches for Windows 2003 and 2008.\");\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:L/Au:S/C:C/I:C/A:C\");\n script_set_cvss_temporal_vector(\"CVSS2#E:U/RL:OF/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"No known exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"false\");\n script_cwe_id(20, 255);\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2009/12/08\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2009/12/08\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2009/12/08\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:microsoft:windows\");\n script_set_attribute(attribute:\"stig_severity\", value:\"II\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"Windows : Microsoft Bulletins\");\n\n script_copyright(english:\"This script is Copyright (C) 2009-2020 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n\n script_dependencies(\"smb_hotfixes.nasl\", \"ms_bulletin_checks_possible.nasl\");\n script_require_keys(\"SMB/MS_Bulletin_Checks/Possible\");\n script_require_ports(139, 445, 'Host/patch_management_checks');\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"smb_func.inc\");\ninclude(\"smb_hotfixes.inc\");\ninclude(\"smb_hotfixes_fcheck.inc\");\ninclude(\"misc_func.inc\");\n\nget_kb_item_or_exit(\"SMB/MS_Bulletin_Checks/Possible\");\n\nbulletin = 'MS09-070';\nkb = '971726';\n\nkbs = make_list(kb);\nif (get_kb_item(\"Host/patch_management_checks\")) hotfix_check_3rd_party(bulletin:bulletin, kbs:kbs, severity:SECURITY_HOLE);\n\n\nget_kb_item_or_exit(\"SMB/Registry/Enumerated\");\nget_kb_item_or_exit(\"SMB/WindowsVersion\", exit_code:1);\n\nif (hotfix_check_sp_range(win2003:'2', vista:'1,2') <= 0) audit(AUDIT_OS_SP_NOT_VULN);\nif (hotfix_check_server_core() == 1) audit(AUDIT_WIN_SERVER_CORE);\n\n# Determine if ADFS is installed.\nADFS_Installed = FALSE;\n\nport = kb_smb_transport();\nlogin = kb_smb_login();\npass = kb_smb_password();\ndomain = kb_smb_domain();\n\nif(! smb_session_init()) audit(AUDIT_FN_FAIL, \"smb_session_init\");\n\nrc = NetUseAdd(login:login, password:pass, domain:domain, share:\"IPC$\");\nif (rc != 1)\n{\n NetUseDel();\n audit(AUDIT_SHARE_FAIL, \"IPC$\");\n}\n\nhklm = RegConnectRegistry(hkey:HKEY_LOCAL_MACHINE);\nif (isnull(hklm))\n{\n NetUseDel();\n audit(AUDIT_REG_FAIL);\n}\n\nkey = \"SOFTWARE\\Microsoft\\ADFS\\Setup\\Parameters\";\nkey_h = RegOpenKey(handle:hklm, key:key, mode:MAXIMUM_ALLOWED);\nif (!isnull(key_h))\n{\n ADFS_Enabled = TRUE;\n RegCloseKey(handle:key_h);\n}\nRegCloseKey(handle:hklm);\nNetUseDel();\n\nif (!ADFS_Enabled) exit(0, \"The host is not affected since ADFS is not installed.\");\n\nrootfile = hotfix_get_systemroot();\nif (!rootfile) exit(1, \"Failed to get the system root.\");\n\nshare = hotfix_path2share(path:rootfile);\nif (!is_accessible_share(share:share)) audit(AUDIT_SHARE_FAIL, share);\n\nif (\n # Windows Server 2008\n hotfix_is_vulnerable(os:\"6.0\", sp:2, file:\"Ifsutils.dll\", version:\"6.0.6002.22201\", min_version:\"6.0.6002.22000\", dir:\"\\System32\", bulletin:bulletin, kb:kb) ||\n hotfix_is_vulnerable(os:\"6.0\", sp:2, file:\"Ifsutils.dll\", version:\"6.0.6002.18091\", min_version:\"6.0.6002.18000\", dir:\"\\System32\", bulletin:bulletin, kb:kb) ||\n hotfix_is_vulnerable(os:\"6.0\", sp:1, file:\"Ifsutils.dll\", version:\"6.0.6001.22498\", min_version:\"6.0.6001.22000\", dir:\"\\System32\", bulletin:bulletin, kb:kb) ||\n hotfix_is_vulnerable(os:\"6.0\", sp:1, file:\"Ifsutils.dll\", version:\"6.0.6001.18311\", min_version:\"6.0.6001.18000\", dir:\"\\System32\", bulletin:bulletin, kb:kb) ||\n\n # Windows 2003\n hotfix_is_vulnerable(os:\"5.2\", sp:2, file:\"Ifsutils.dll\", version:\"5.2.3790.4578\", dir:\"\\System32\", bulletin:bulletin, kb:kb)\n)\n{\n set_kb_item(name:\"SMB/Missing/\"+bulletin, value:TRUE);\n hotfix_security_hole();\n hotfix_check_fversion_end();\n exit(0);\n}\nelse\n{\n hotfix_check_fversion_end();\n audit(AUDIT_HOST_NOT, 'affected');\n}\n", "cvss": {"score": 9.0, "vector": "AV:N/AC:L/Au:S/C:C/I:C/A:C"}}], "securityvulns": [{"lastseen": "2018-08-31T11:10:32", "description": "Microsoft Security Bulletin MS09-070 - Important\r\nVulnerabilities in Active Directory Federation Services Could Allow Remote Code Execution (971726)\r\nPublished: December 08, 2009\r\n\r\nVersion: 1.0\r\nGeneral Information\r\nExecutive Summary\r\n\r\nThis security update resolves two privately reported vulnerabilities in Microsoft Windows. The more severe of these vulnerabilities could allow remote code execution if an attacker sent a specially crafted HTTP request to an ADFS-enabled Web server. An attacker would need to be an authenticated user in order to exploit either of these vulnerabilities.\r\n\r\nThis security update is rated Important for affected releases of Windows Server 2003, Windows Server 2003 x64 Edition, Windows Server 2008, and Windows Server 2008 x64 Edition. For more information, see the subsection, Affected and Non-Affected Software, in this section.\r\n\r\nThe security update addresses the vulnerabilities by correcting the validation that ADFS-enabled Web servers apply to request headers submitted by a Web client. For more information about the vulnerabilities, see the Frequently Asked Questions (FAQ) subsection for the specific vulnerability entry under the next section, Vulnerability Information.\r\n\r\nRecommendation. The majority of customers have automatic updating enabled and will not need to take any action because this security update will be downloaded and installed automatically. Customers who have not enabled automatic updating need to check for updates and install this update manually. For information about specific configuration options in automatic updating, see Microsoft Knowledge Base Article 294871.\r\n\r\nFor administrators and enterprise installations, or end users who want to install this security update manually, Microsoft recommends that customers apply the update at the earliest opportunity using update management software, or by checking for updates using the Microsoft Update service.\r\n\r\nSee also the section, Detection and Deployment Tools and Guidance, later in this bulletin.\r\n\r\nKnown Issues. Microsoft Knowledge Base Article 971726 documents the currently known issues that customers may experience when installing this security update. The article also documents recommended solutions for these issues.\r\nTop of sectionTop of section\r\nAffected and Non-Affected Software\r\n\r\nThe following software have been tested to determine which versions or editions are affected. Other versions or editions are either past their support life cycle or are not affected. To determine the support life cycle for your software version or edition, visit Microsoft Support Lifecycle.\r\n\r\nAffected Software \r\nOperating System\tMaximum Security Impact\tAggregate Severity Rating\tBulletins Replaced by this Update\r\n\r\nWindows Server 2003 Service Pack 2[1]\r\n\t\r\n\r\nRemote Code Execution\r\n\t\r\n\r\nImportant\r\n\t\r\n\r\nNone\r\n\r\nWindows Server 2003 x64 Edition Service Pack 2[2]\r\n\t\r\n\r\nRemote Code Execution\r\n\t\r\n\r\nImportant\r\n\t\r\n\r\nNone\r\n\r\nWindows Server 2008 for 32-bit Systems and Windows Server 2008 for 32-bit Systems Service Pack 2*\r\n\t\r\n\r\nRemote Code Execution\r\n\t\r\n\r\nImportant\r\n\t\r\n\r\nNone\r\n\r\nWindows Server 2008 for x64-based Systems and Windows Server 2008 for x64-based Systems Service Pack 2*\r\n\t\r\n\r\nRemote Code Execution\r\n\t\r\n\r\nImportant\r\n\t\r\n\r\nNone\r\n\r\n*Server Core installation not affected. The vulnerabilities addressed by this update do not affect supported editions of Windows Server 2008 as indicated, when installed using the Server Core installation option. For more information on this installation option, see the MSDN article, Server Core. Note that the Server Core installation option does not apply to certain editions of Windows Server 2008; see Compare Server Core Installation Options.\r\n\r\n[1]Only affected when updated with Windows Server 2003 R2, which deploys Active Directory Federation Services.\r\n\r\n[2]Only affected when updated with Windows Server 2003 R2 x64 Edition, which deploys Active Directory Federation Services.\r\n\r\nNon-Affected Software\r\nOperating System\r\n\r\nMicrosoft Windows 2000 Service Pack 4\r\n\r\nWindows XP Service Pack 2 and Windows XP Service Pack 3\r\n\r\nWindows XP Professional x64 Edition Service Pack 2\r\n\r\nWindows Server 2003 with SP2 for Itanium-based Systems\r\n\r\nWindows Vista, Windows Vista Service Pack 1, and Windows Vista Service Pack 2\r\n\r\nWindows Vista x64 Edition, Windows Vista x64 Edition Service Pack 1, and Windows Vista x64 Edition Service Pack 2\r\n\r\nWindows Server 2008 for Itanium-based Systems and Windows Server 2008 for Itanium-based Systems Service Pack 2\r\n\r\nWindows 7 for 32-bit Systems\r\n\r\nWindows 7 for x64-based Systems\r\n\r\nWindows Server 2008 R2 for x64-based Systems\r\n\r\nWindows Server 2008 R2 for Itanium-based Systems\r\nTop of sectionTop of section\r\n\t\r\nFrequently Asked Questions (FAQ) Related to This Security Update\r\n\r\nWhere are the file information details? \r\nRefer to the reference tables in the Security Update Deployment section for the location of the file information details.\r\n\r\nWhat are the known issues that customers may experience when installing this security update? \r\nMicrosoft Knowledge Base Article 971726 documents the currently known issues that customers may experience when they install this security update. The article also documents recommended solutions for these issues.\r\n\r\nWhy does this update address several reported security vulnerabilities? \r\nThis update contains support for several vulnerabilities because the modifications that are required to address these issues are located in related files. Instead of having to install several updates that are almost the same, customers need to install this update only.\r\n\r\nWhat is Active Directory Federation Services? \r\nActive Directory Federation Services (ADFS) is based on the emerging, industry-supported Web Services Architecture, which is defined in WS-* specifications. ADFS helps you use single sign-on (SSO) to authenticate users to multiple, related Web applications throughout the duration of a single online session. ADFS accomplishes this by securely sharing digital identity and entitlement rights across security and enterprise boundaries.\r\n\r\nHow can I verify whether ADFS is installed on my server? \r\nTo verify that ADFS is installed on your server, click Start, click Control Panel, click Add/Remove Programs, double-click Windows Components, and then look for Federation Services as an installed component.\r\n\r\nWhat is Windows Server 2003 R2? \r\nWindows Server 2003 R2 extends the Windows Server 2003 operating system, providing a more efficient way to manage and control access to local and remote resources while easily integrating into your existing Windows Server 2003 environment. Windows Server 2003 R2 provides a scalable, security-enhanced Web platform, seamless interoperability with UNIX-based systems, and enables new scenarios including simplified branch server management, improved identity and access management, and more efficient storage management. Windows Server 2003 R2 Datacenter Edition and Windows Server 2003 R2 Enterprise Edition also deliver dynamic new licensing that allows customers to get even more value out of server virtualization.\r\n\r\nFor more information on Windows Server 2003 R2, see the Windows Server 2003 R2 site.\r\n\r\nWhat are the WS-* web specifications?\r\n\r\nThe specifications for a Web Services Architecture that is based on industry standards such as Simple Object Access Protocol (SOAP); XML; Web Service Description Language (WSDL); and Universal Description, Discovery, and Integration (UDDI). WS-* provides a foundation for delivering complete, interoperable business solutions for the extended enterprise, including the ability to manage federated identity and security.\r\n\r\nThe Web services model is based on the idea that enterprise systems are written in different languages, with different programming models, which run on and are accessed from many different types of devices. Web services are a means of building distributed systems that can connect and interact with one another easily and efficiently across the Internet, regardless of what language they are written in or what platform they run on.\r\n\r\nI am using an older release of the software discussed in this security bulletin. What should I do? \r\nThe affected software listed in this bulletin have been tested to determine which releases are affected. Other releases are past their support life cycle. For more information about the product lifecycle, visit the Microsoft Support Lifecycle Web site.\r\n\r\nIt should be a priority for customers who have older releases of the software to migrate to supported releases to prevent potential exposure to vulnerabilities. To determine the support lifecycle for your software release, see Select a Product for Lifecycle Information. For more information about service packs for these software releases, see Lifecycle Supported Service Packs.\r\n\r\nCustomers who require custom support for older software must contact their Microsoft account team representative, their Technical Account Manager, or the appropriate Microsoft partner representative for custom support options. Customers without an Alliance, Premier, or Authorized Contract can contact their local Microsoft sales office. For contact information, visit the Microsoft Worldwide Information Web site, select the country in the Contact Information list, and then click Go to see a list of telephone numbers. When you call, ask to speak with the local Premier Support sales manager. For more information, see the Microsoft Support Lifecycle Policy FAQ.\r\nTop of sectionTop of section\r\nVulnerability Information\r\n\t\r\nSeverity Ratings and Vulnerability Identifiers\r\n\r\nThe following severity ratings assume the potential maximum impact of the vulnerability. For information regarding the likelihood, within 30 days of this security bulletin's release, of the exploitability of the vulnerability in relation to its severity rating and security impact, please see the Exploitability Index in the December bulletin summary. For more information, see Microsoft Exploitability Index.\r\nVulnerability Severity Rating and Maximum Security Impact by Affected Software\r\nAffected Software\tSingle Sign On Spoofing in ADFS Vulnerability - CVE-2009-2508 \tRemote Code Execution in ADFS Vulnerability - CVE-2009-2509\tAggregate Severity Rating\r\n\r\nWindows Server 2003 Service Pack 2[1]\r\n\t\r\n\r\nModerate\r\nSpoofing\r\n\t\r\n\r\nImportant\r\nRemote Code Execution\r\n\t\r\n\r\nImportant\r\n\r\nWindows Server 2003 x64 Edition Service Pack 2[2]\r\n\t\r\n\r\nModerate\r\nSpoofing\r\n\t\r\n\r\nImportant\r\nRemote Code Execution\r\n\t\r\n\r\nImportant\r\n\r\nWindows Server 2008 for 32-bit Systems and Windows Server 2008 for 32-bit Systems Service Pack 2*\r\n\t\r\n\r\nModerate\r\nSpoofing\r\n\t\r\n\r\nImportant\r\nRemote Code Execution\r\n\t\r\n\r\nImportant\r\n\r\nWindows Server 2008 for x64-based Systems and Windows Server 2008 for x64-based Systems Service Pack 2*\r\n\t\r\n\r\nModerate\r\nSpoofing\r\n\t\r\n\r\nImportant\r\nRemote Code Execution\r\n\t\r\n\r\nImportant\r\n\r\n*Server Core installation not affected. The vulnerabilities addressed by this update do not affect supported editions of Windows Server 2008 when installed using the Server Core installation option. For more information on this installation option, see the MSDN article, Server Core. Note that the Server Core installation option does not apply to certain editions of Windows Server 2008; see Compare Server Core Installation Options.\r\n\r\n[1]Only affected when updated with Windows Server 2003 R2, which deploys Active Directory Federation Services.\r\n\r\n[2]Only affected when updated with Windows Server 2003 R2 x64 Edition, which deploys Active Directory Federation Services.\r\nTop of sectionTop of section\r\n\t\r\nSingle Sign On Spoofing in ADFS Vulnerability - CVE-2009-2508\r\n\r\nA spoofing vulnerability in Active Directory Federation Services could allow an attacker to impersonate an authenticated user if the attacker has access to a workstation and Web browser recently used by the targeted user to access a Web site that offers single sign on.\r\n\r\nTo view this vulnerability as a standard entry in the Common Vulnerabilities and Exposures list, see CVE-2009-2508.\r\n\t\r\nMitigating Factors for Single Sign On Spoofing in ADFS Vulnerability - CVE-2009-2508\r\n\r\nMitigation refers to a setting, common configuration, or general best-practice, existing in a default state, that could reduce the severity of exploitation of a vulnerability. The following mitigating factors may be helpful in your situation:\r\n\u2022\t\r\n\r\nAn attacker cannot choose whom to impersonate. An attacker can only impersonate someone whose authentication token the attacker has been able to obtain, for example, from an Internet kiosk.\r\n\u2022\t\r\n\r\nAn attack is only possible before the session times out on the server. By default, sessions remain open for 600 minutes on the server. If an attacker tried to re-use a victim's authentication token after that time-out period has elapsed, the attack would fail.\r\n\u2022\t\r\n\r\nAn attacker must have access to the authentication token used by the previous user on that terminal. In the case of an HTTPS-enabled server, that authentication token will have been protected in transit, and an attacker must have access to the victim's computer (for example, an Internet kiosk) to exploit the vulnerability. On an Internet kiosk, the user might sign in to an ADFS Single Sign-On (SSO) Web application, then sign off the application. An attacker could then use that computer to access the Web application as the previous user, even though the user has logged out.\r\nTop of sectionTop of section\r\n\t\r\nWorkarounds for Single Sign On Spoofing in ADFS Vulnerability - CVE-2009-2508\r\n\r\nMicrosoft has not identified any workarounds for this vulnerability.\r\nTop of sectionTop of section\r\n\t\r\nFAQ for Single Sign On Spoofing in ADFS Vulnerability - CVE-2009-2508\r\n\r\nWhat is the scope of the vulnerability? \r\nThis is a spoofing vulnerability. An attacker who successfully exploited this vulnerability could impersonate another user, allowing the attacker to gain access as the targeted user to a Web site that uses the single sign-on functionality of Active Directory Federation Services (ADFS).\r\n\r\nWhat causes the vulnerability? \r\nThis vulnerability exists because ADFS lacks sufficient session management validation.\r\n\r\nWhat might an attacker use the vulnerability to do? \r\nOn systems with shared access, such as Internet kiosks, an attacker who successfully exploited this vulnerability could access resources belonging to another, previously authenticated, user. This attack could only be executed within the session timeout configured by the ADFS administrator which is by default configured to 600 minutes.\r\n\r\nHow could an attacker exploit the vulnerability? \r\nAn attacker could exploit this vulnerability by accessing specific data from the browser's cache and reusing it to authenticate against the Web application implementing ADFS single sign-on (SSO). After the session times out on the server, ADFS will disable the authenticated session on the server side and will no longer allow the attacker to re-use these credentials.\r\n\r\nWhat systems are primarily at risk from the vulnerability? \r\nWeb servers using ADFS for single sign-on purposes are affected by this vulnerability. This vulnerability does not directly affect client systems.\r\n\r\nWhat does the update do? \r\nThe update addresses the vulnerability by properly discarding authentication credentials when the user logs off the network.\r\n\r\nWhen this security bulletin was issued, had this vulnerability been publicly disclosed? \r\nNo. Microsoft received information about this vulnerability through responsible disclosure.\r\n\r\nWhen this security bulletin was issued, had Microsoft received any reports that this vulnerability was being exploited? \r\nNo. Microsoft had not received any information to indicate that this vulnerability had been publicly used to attack customers when this security bulletin was originally issued.\r\nTop of sectionTop of section\r\nTop of sectionTop of section\r\n\t\r\nRemote Code Execution in ADFS Vulnerability - CVE-2009-2509\r\n\r\nA remote code execution vulnerability exists in implementations of Active Directory Federation Services (ADFS). The vulnerability is due to incorrect validation of request headers when an authenticated user connects to an ADFS enabled Web server. An attacker who successfully exploited this vulnerability could take complete control of an affected system.\r\n\r\nTo view this vulnerability as a standard entry in the Common Vulnerabilities and Exposures list, see CVE-2009-2509.\r\n\t\r\nMitigating Factors for Remote Code Execution in ADFS Vulnerability - CVE-2009-2509\r\n\r\nMitigation refers to a setting, common configuration, or general best-practice, existing in a default state, that could reduce the severity of exploitation of a vulnerability. The following mitigating factors may be helpful in your situation:\r\n\u2022\t\r\n\r\nThe attacker must have valid logon credentials to the vulnerable server. An attack can only be carried out after authenticating successfully to the server that supports ADFS.\r\nTop of sectionTop of section\r\n\t\r\nWorkarounds for Remote Code Execution in ADFS Vulnerability - CVE-2009-2509\r\n\r\nMicrosoft has not identified any workarounds for this vulnerability.\r\nTop of sectionTop of section\r\n\t\r\nFAQ for Remote Code Execution in ADFS Vulnerability - CVE-2009-2509\r\n\r\nWhat is the scope of the vulnerability? \r\nThis is a remote code execution vulnerability. An attacker who successfully exploited this vulnerability could then perform actions on the IIS server with the same rights as the Worker Process Identity (WPI), which by default is configured with Network Service account privileges.\r\n\r\nWhat causes the vulnerability? \r\nThis vulnerability exists because ADFS does not correctly validate request headers submitted by authenticated clients.\r\n\r\nWhat might an attacker use the vulnerability to do? \r\nAn attacker who successfully exploited this vulnerability could then perform actions on the IIS server with the same rights as the Worker Process Identity (WPI). The WPI is configured with Network Service account privileges by default. IIS servers with ASP pages whose application pools are configured with a WPI that uses an account with administrative privileges could be more seriously impacted than IIS servers whose application pool is configured with the default WPI settings.\r\n\r\nHow could an attacker exploit the vulnerability? \r\nAn attacker could try to exploit the vulnerability by sending a specially crafted HTTP request to an ADFS-enabled Web server. An attacker would need to be an authenticated user in order to exploit this vulnerability.\r\n\r\nWhat systems are primarily at risk from the vulnerability? \r\nADFS-enabled Web servers are at risk. Client systems are not affected by this vulnerability.\r\n\r\nWhat does the update do? \r\nThis update corrects the validation that ADFS-enabled Web servers apply to request headers submitted by a Web client.\r\n\r\nWhen this security bulletin was issued, had this vulnerability been publicly disclosed? \r\nNo. Microsoft received information about this vulnerability through responsible disclosure.\r\n\r\nWhen this security bulletin was issued, had Microsoft received any reports that this vulnerability was being exploited? \r\nNo. Microsoft had not received any information to indicate that this vulnerability had been publicly used to attack customers when this security bulletin was originally issued.\r\n\r\nOther Information\r\nMicrosoft Active Protections Program (MAPP)\r\n\r\nTo improve security protections for customers, Microsoft provides vulnerability information to major security software providers in advance of each monthly security update release. Security software providers can then use this vulnerability information to provide updated protections to customers via their security software or devices, such as antivirus, network-based intrusion detection systems, or host-based intrusion prevention systems. To determine whether active protections are available from security software providers, please visit the active protections Web sites provided by program partners, listed in Microsoft Active Protections Program (MAPP) Partners.\r\n\r\nSupport\r\n\u2022\t\r\n\r\nCustomers in the U.S. and Canada can receive technical support from Security Support or 1-866-PCSAFETY. There is no charge for support calls that are associated with security updates. For more information about available support options, see Microsoft Help and Support.\r\n\u2022\t\r\n\r\nInternational customers can receive support from their local Microsoft subsidiaries. There is no charge for support that is associated with security updates. For more information about how to contact Microsoft for support issues, visit the International Support Web site.\r\n\r\nDisclaimer\r\n\r\nThe information provided in the Microsoft Knowledge Base is provided "as is" without warranty of any kind. Microsoft disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. In no event shall Microsoft Corporation or its suppliers be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages, even if Microsoft Corporation or its suppliers have been advised of the possibility of such damages. Some states do not allow the exclusion or limitation of liability for consequential or incidental damages so the foregoing limitation may not apply.\r\n\r\nRevisions\r\n\u2022\t\r\n\r\nV1.0 (December 8, 2009): Bulletin published.\r\n", "cvss3": {}, "published": "2009-12-09T00:00:00", "type": "securityvulns", "title": "Microsoft Security Bulletin MS09-070 - Important Vulnerabilities in Active Directory Federation Services Could Allow Remote Code Execution (971726)", "bulletinFamily": "software", "hackapp": {}, "cvss2": {}, "cvelist": ["CVE-2009-2509", "CVE-2009-2508"], "modified": "2009-12-09T00:00:00", "id": "SECURITYVULNS:DOC:22879", "href": "https://vulners.com/securityvulns/SECURITYVULNS:DOC:22879", "sourceData": "", "cvss": {"score": 9.0, "vector": "AV:NETWORK/AC:LOW/Au:SINGLE_INSTANCE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}], "seebug": [{"lastseen": "2017-11-19T18:26:48", "description": "BUGTRAQ ID: 37215\r\nCVE ID: CVE-2009-2508\r\n\r\nMicrosoft Windows\u662f\u5fae\u8f6f\u53d1\u5e03\u7684\u975e\u5e38\u6d41\u884c\u7684\u64cd\u4f5c\u7cfb\u7edf\u3002\r\n\r\nWindows\u7684ADFS\u670d\u52a1\u6ca1\u6709\u5145\u5206\u5730\u9a8c\u8bc1\u4f1a\u8bdd\u7ba1\u7406\uff0c\u5982\u679c\u653b\u51fb\u8005\u80fd\u591f\u8bbf\u95ee\u76ee\u6807\u7528\u6237\u8fd1\u671f\u6240\u4f7f\u7528\u7684\u7528\u4e8e\u8bbf\u95ee\u63d0\u4f9b\u5355\u6b21\u767b\u5f55\u7ad9\u70b9\u7684\u5de5\u4f5c\u7ad9\u548cWeb\u6d4f\u89c8\u5668\uff0c\u5c31\u53ef\u80fd\u5141\u8bb8\u653b\u51fb\u8005\u626e\u6f14\u4e3a\u901a\u8fc7\u8ba4\u8bc1\u7684\u7528\u6237\u3002\r\n\r\n\u653b\u51fb\u8005\u5fc5\u987b\u53ef\u4ee5\u8bbf\u95ee\u7ec8\u7aef\u4e0a\u4e4b\u524d\u7528\u6237\u6240\u4f7f\u7528\u7684\u8ba4\u8bc1\u4ee4\u724c\u624d\u53ef\u4ee5\u5229\u7528\u8fd9\u4e2a\u6f0f\u6d1e\u3002\u5728\u542f\u7528\u4e86HTTPS\u670d\u52a1\u5668\u7684\u60c5\u51b5\u4e0b\uff0c\u8ba4\u8bc1\u4ee4\u724c\u5728\u4f20\u8f93\u4e2d\u662f\u53d7\u4fdd\u62a4\u7684\uff0c\u653b\u51fb\u8005\u5fc5\u987b\u80fd\u591f\u8bbf\u95ee\u53d7\u5bb3\u8005\u7684\u8ba1\u7b97\u673a\uff08\u5982\u81ea\u52a9\u7ec8\u7aef\u673a\uff09\u624d\u53ef\u4ee5\u5229\u7528\u8fd9\u4e2a\u6f0f\u6d1e\u3002\u5728\u81ea\u52a9\u7ec8\u7aef\u673a\u4e0a\uff0c\u7528\u6237\u53ef\u80fd\u767b\u5f55\u5230ADFS SSO Web\u5e94\u7528\u7136\u540e\u6ce8\u9500\u5e94\u7528\u3002\u4e4b\u540e\u653b\u51fb\u8005\u53ef\u4ee5\u4f7f\u7528\u8be5\u8ba1\u7b97\u673a\u4ee5\u4e4b\u524d\u7528\u6237\u7684\u8eab\u4efd\u8bbf\u95eeWeb\u5e94\u7528\uff0c\u5c3d\u7ba1\u8be5\u7528\u6237\u5df2\u7ecf\u6ce8\u9500\u3002\n\nMicrosoft Windows Server 2008 SP2\r\nMicrosoft Windows Server 2008\r\nMicrosoft Windows Server 2003 SP2\n\u5382\u5546\u8865\u4e01\uff1a\r\n\r\nMicrosoft\r\n---------\r\nMicrosoft\u5df2\u7ecf\u4e3a\u6b64\u53d1\u5e03\u4e86\u4e00\u4e2a\u5b89\u5168\u516c\u544a\uff08MS09-070\uff09\u4ee5\u53ca\u76f8\u5e94\u8865\u4e01:\r\nMS09-070\uff1aVulnerabilities in Active Directory Federation Services Could Allow Remote Code Execution (971726)\r\n\u94fe\u63a5\uff1ahttp://www.microsoft.com/technet/security/Bulletin/MS09-070.mspx?pf=true", "published": "2009-12-12T00:00:00", "type": "seebug", "title": "Microsoft Windows ADFS\u670d\u52a1\u5355\u6b21\u767b\u5f55\u529f\u80fd\u8ba4\u8bc1\u6b3a\u9a97\u6f0f\u6d1e\uff08MS09-070\uff09", "bulletinFamily": "exploit", "cvelist": ["CVE-2009-2508"], "modified": "2009-12-12T00:00:00", "href": "https://www.seebug.org/vuldb/ssvid-15046", "id": "SSV:15046", "sourceData": "", "sourceHref": "", "cvss": {"score": 6.9, "vector": "AV:LOCAL/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2017-11-19T18:27:08", "description": "BUGTRAQ ID: 37214\r\nCVE ID: CVE-2009-2509\r\n\r\nMicrosoft Windows\u662f\u5fae\u8f6f\u53d1\u5e03\u7684\u975e\u5e38\u6d41\u884c\u7684\u64cd\u4f5c\u7cfb\u7edf\u3002\r\n\r\n\u7531\u4e8e\u901a\u8fc7\u8ba4\u8bc1\u7684\u7528\u6237\u5728\u8fde\u63a5\u5230\u542f\u7528\u4e86\u6d3b\u52a8\u76ee\u5f55\u8054\u5408\u670d\u52a1\uff08ADFS\uff09\u7684Web\u670d\u52a1\u5668\u65f6\u6ca1\u6709\u6b63\u786e\u5730\u9a8c\u8bc1\u8bf7\u6c42\u5934\uff0c\u5bfc\u81f4ADFS\u5b9e\u73b0\u4e2d\u5b58\u5728\u8fdc\u7a0b\u4ee3\u7801\u6267\u884c\u6f0f\u6d1e\u3002\u8fdc\u7a0b\u653b\u51fb\u8005\u53ef\u4ee5\u901a\u8fc7\u5411\u670d\u52a1\u5668\u63d0\u4ea4\u6076\u610f\u7684HTTP\u8bf7\u6c42\u5bfc\u81f4\u4ee5Worker Process Identity\u7684\u6743\u9650\u6267\u884c\u4efb\u610f\u4ee3\u7801\u3002\n\nMicrosoft Windows Server 2008 SP2\r\nMicrosoft Windows Server 2008\r\nMicrosoft Windows Server 2003 SP2\n\u5382\u5546\u8865\u4e01\uff1a\r\n\r\nMicrosoft\r\n---------\r\nMicrosoft\u5df2\u7ecf\u4e3a\u6b64\u53d1\u5e03\u4e86\u4e00\u4e2a\u5b89\u5168\u516c\u544a\uff08MS09-070\uff09\u4ee5\u53ca\u76f8\u5e94\u8865\u4e01:\r\nMS09-070\uff1aVulnerabilities in Active Directory Federation Services Could Allow Remote Code Execution (971726)\r\n\u94fe\u63a5\uff1ahttp://www.microsoft.com/technet/security/Bulletin/MS09-070.mspx?pf=true", "published": "2009-12-12T00:00:00", "type": "seebug", "title": "Microsoft ADFS\u670d\u52a1\u8bf7\u6c42\u5934\u9a8c\u8bc1\u8fdc\u7a0b\u4ee3\u7801\u6267\u884c\u6f0f\u6d1e\uff08MS09-070\uff09", "bulletinFamily": "exploit", "cvelist": ["CVE-2009-2509"], "modified": "2009-12-12T00:00:00", "href": "https://www.seebug.org/vuldb/ssvid-15041", "id": "SSV:15041", "sourceData": "", "sourceHref": "", "cvss": {"score": 9.0, "vector": "AV:NETWORK/AC:LOW/Au:SINGLE_INSTANCE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}], "cve": [{"lastseen": "2023-02-09T14:04:07", "description": "The single sign-on implementation in Active Directory Federation Services (ADFS) in Microsoft Windows Server 2003 SP2 and Server 2008 Gold and SP2 does not properly remove credentials at the end of a network session, which allows physically proximate attackers to obtain the credentials of a previous user of the same web browser by using data from the browser's cache, aka \"Single Sign On Spoofing in ADFS Vulnerability.\"", "cvss3": {}, "published": "2009-12-09T18:30:00", "type": "cve", "title": "CVE-2009-2508", "cwe": ["CWE-255"], "bulletinFamily": "NVD", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 3.4, "obtainAllPrivilege": false, "userInteractionRequired": false, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 6.9, "vectorString": "AV:L/AC:M/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "LOCAL", "authentication": "NONE"}, "impactScore": 10.0, "obtainUserPrivilege": false}, "cvelist": ["CVE-2009-2508"], "modified": "2019-02-26T14:04:00", "cpe": ["cpe:/o:microsoft:windows_server_2008:*", "cpe:/o:microsoft:windows_server_2003:*"], "id": "CVE-2009-2508", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-2508", "cvss": {"score": 6.9, "vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C"}, "cpe23": ["cpe:2.3:o:microsoft:windows_server_2008:*:*:x32:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_server_2008:*:*:x64:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_server_2008:*:sp2:x64:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_server_2003:*:sp2:*:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_server_2008:*:sp2:x32:*:*:*:*:*"]}, {"lastseen": "2023-02-09T14:04:06", "description": "Active Directory Federation Services (ADFS) in Microsoft Windows Server 2003 SP2 and Server 2008 Gold and SP2 does not properly validate headers in HTTP requests, which allows remote authenticated users to execute arbitrary code via a crafted request to an IIS web server, aka \"Remote Code Execution in ADFS Vulnerability.\"", "cvss3": {}, "published": "2009-12-09T18:30:00", "type": "cve", "title": "CVE-2009-2509", "cwe": ["CWE-20"], "bulletinFamily": "NVD", "cvss2": {"severity": "HIGH", "exploitabilityScore": 8.0, "obtainAllPrivilege": false, "userInteractionRequired": false, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "LOW", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 9.0, "vectorString": "AV:N/AC:L/Au:S/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "SINGLE"}, "impactScore": 10.0, "obtainUserPrivilege": false}, "cvelist": ["CVE-2009-2509"], "modified": "2019-02-26T14:04:00", "cpe": ["cpe:/o:microsoft:windows_server_2008:*", "cpe:/o:microsoft:windows_server_2003:*"], "id": "CVE-2009-2509", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-2509", "cvss": {"score": 9.0, "vector": "AV:N/AC:L/Au:S/C:C/I:C/A:C"}, "cpe23": ["cpe:2.3:o:microsoft:windows_server_2008:*:*:x32:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_server_2008:*:*:x64:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_server_2008:*:sp2:x64:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_server_2003:*:sp2:*:*:*:*:*:*", "cpe:2.3:o:microsoft:windows_server_2008:*:sp2:x32:*:*:*:*:*"]}], "checkpoint_advisories": [{"lastseen": "2021-12-17T12:42:00", "description": "Active Directory provides central authentication and authorization services for Windows-based systems. Active Directory Federation Services (ADFS) helps the client to use single sign-on by securely sharing digital identity and entitlement rights across security and enterprise boundaries. A remote code execution vulnerability has been discovered in implementations of Active Directory Federation Services (ADFS). The vulnerability is due to an error in the ADFS that fails to correctly validate request headers submitted by authenticated clients of an ADFS enabled Web server. A remote attacker may trigger this vulnerability by sending a specially crafted HTTP request to an ADFS-enabled Web server. Successful exploitation of this vulnerability could allow the attacker to execute arbitrary code on a vulnerable system.", "cvss3": {}, "published": "2009-12-08T00:00:00", "type": "checkpoint_advisories", "title": "Microsoft Active Directory Federation Services Code Execution (MS09-070; CVE-2009-2509)", "bulletinFamily": "info", "cvss2": {"severity": "HIGH", "exploitabilityScore": 8.0, "obtainAllPrivilege": false, "userInteractionRequired": false, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "LOW", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 9.0, "vectorString": "AV:N/AC:L/Au:S/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "SINGLE"}, "impactScore": 10.0, "obtainUserPrivilege": false}, "cvelist": ["CVE-2009-2509"], "modified": "2009-12-08T00:00:00", "id": "CPAI-2009-251", "href": "", "cvss": {"score": 9.0, "vector": "AV:N/AC:L/Au:S/C:C/I:C/A:C"}}]}