Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    ASUS: MacBook Neo a ‘Shock’ to PC Industry

    realme Note 80 Officially Launches in Malaysia From RM399

    Lenovo’s new ThinkPad laptops get a perfect iFixit repair score

    Facebook X (Twitter) Instagram
    • Artificial Intelligence
    • Business Technology
    • Cryptocurrency
    • Gadgets
    • Gaming
    • Health
    • Software and Apps
    • Technology
    Facebook X (Twitter) Instagram Pinterest Vimeo
    Tech AI Verse
    • Home
    • Artificial Intelligence

      What the polls say about how Americans are using AI

      February 27, 2026

      Tensions between the Pentagon and AI giant Anthropic reach a boiling point

      February 21, 2026

      Read the extended transcript: President Donald Trump interviewed by ‘NBC Nightly News’ anchor Tom Llamas

      February 6, 2026

      Stocks and bitcoin sink as investors dump software company shares

      February 4, 2026

      AI, crypto and Trump super PACs stash millions to spend on the midterms

      February 2, 2026
    • Business

      Google: Cloud attacks exploit flaws more than weak credentials

      March 10, 2026

      Could this be the key to eternal storage? Experts claim new DNA HDD can be ‘erased and overwritten repeatedly’

      March 9, 2026

      Need more storage? Get a lifetime of 10TB cloud space for just $270.

      March 8, 2026

      Google PM open-sources Always On Memory Agent, ditching vector databases for LLM-driven persistent memory

      March 8, 2026

      Regulate AWS and Microsoft, says UK cloud provider survey

      March 8, 2026
    • Crypto

      Banks Respond to Kraken’s Federal Reserve Access as Trump Sides with Crypto

      March 4, 2026

      Hyperliquid and DEXs Break the Top 10 — Is the CEX Era Ending?

      March 4, 2026

      Consensus Hong Kong 2026: The Institutional Turn 

      March 4, 2026

      New Crypto Mutuum Finance (MUTM) Reports V1 Protocol Progress as Roadmap Enters Phase 3

      March 4, 2026

      Bitcoin Short Sellers Caught Off Guard in New White House Move

      March 4, 2026
    • Technology

      Lenovo’s new ThinkPad laptops get a perfect iFixit repair score

      March 11, 2026

      ChatGPT can now identify songs for you

      March 11, 2026

      I just spotted this Windows feature and I instantly fell in love

      March 11, 2026

      Your next laptop might cost 40% more

      March 11, 2026

      Google upgrades Gemini for Workspace allowing it to pull data from multiple apps to create Docs, Sheets, Slides and more

      March 10, 2026
    • Others
      • Gadgets
      • Gaming
      • Health
      • Software and Apps
    Check BMI
    Tech AI Verse
    You are at:Home»Technology»Microsoft Mishandling Example.com
    Technology

    Microsoft Mishandling Example.com

    TechAiVerseBy TechAiVerseJanuary 23, 2026No Comments3 Mins Read5 Views
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr Email Reddit
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    Microsoft Mishandling Example.com

    TL;DR: Since at least February 2020, Microsoft’s Autodiscover service has incorrectly routed the IANA-reserved example.com to Sumitomo Electric Industries’ mail servers at sei.co.jp, potentially sending test credentials there.

    Problem

    While setting up email@example.com as a dummy account in Outlook (on both Windows and macOS), Outlook consistently auto-configured it to use imapgms.jnet.sei.co.jp (IMAP) and smtpgms.jnet.sei.co.jp (SMTP) despite example.com being an IANA-reserved domain that should not resolve to real services.

    The same behavior appeared on different machines, profiles, networks, and DNS resolvers, including a newly provisioned Windows 365 Cloud PC:

    Your web browser doesn’t support embedded video.

    Confirmation

    DNS verification

    Confirm that example.com has no DNS records pointing to sei.co.jp:

    % dig MX example.com +short
    0 .
    
    % dig CNAME autodiscover.example.com +short
    (no response)
    
    % dig SRV _autodiscover._tcp.example.com +short
    (no response)

    The domain has a null MX record (indicating it doesn’t accept email) and no Autodiscover DNS entries, confirming the misconfiguration exists entirely within Microsoft’s database.

    Microsoft autodiscover API response

    Microsoft’s Autodiscover service misconfiguration can be confirmed via curl -v -u "email@example.com:password" "https://prod.autodetect.outlook.cloud.microsoft/autodetect/detect?app=outlookdesktopBasic":

    View full output
    
    * Host prod.autodetect.outlook.cloud.microsoft:443 was resolved.
    * IPv6: (none)
    * IPv4: 172.169.69.94
    *   Trying 172.169.69.94:443...
    * Connected to prod.autodetect.outlook.cloud.microsoft (172.169.69.94) port 443
    * ALPN: curl offers h2,http/1.1
    * (304) (OUT), TLS handshake, Client hello (1):
    *  CAfile: /etc/ssl/cert.pem
    *  CApath: none
    * (304) (IN), TLS handshake, Server hello (2):
    * (304) (IN), TLS handshake, Unknown (8):
    * (304) (IN), TLS handshake, Certificate (11):
    * (304) (IN), TLS handshake, CERT verify (15):
    * (304) (IN), TLS handshake, Finished (20):
    * (304) (OUT), TLS handshake, Finished (20):
    * SSL connection using TLSv1.3 / AEAD-AES256-GCM-SHA384 / [blank] / UNDEF
    * ALPN: server accepted h2
    * Server certificate:
    *  subject: C=US; ST=WA; L=Redmond; O=Microsoft Corporation; CN=autodetect.outlookmobile.com
    *  start date: Nov  1 12:31:46 2025 GMT
    *  expire date: Jan 30 12:31:46 2026 GMT
    *  subjectAltName: host "prod.autodetect.outlook.cloud.microsoft" matched cert's "*.autodetect.outlook.cloud.microsoft"
    *  issuer: C=US; O=Microsoft Corporation; CN=Microsoft Azure RSA TLS Issuing CA 03
    *  SSL certificate verify ok.
    * using HTTP/2
    * Server auth using Basic with user 'email@example.com'
    * [HTTP/2] [1] OPENED stream for https://prod.autodetect.outlook.cloud.microsoft/autodetect/detect?app=outlookdesktopBasic
    * [HTTP/2] [1] [:method: GET]
    * [HTTP/2] [1] [:scheme: https]
    * [HTTP/2] [1] [:authority: prod.autodetect.outlook.cloud.microsoft]
    * [HTTP/2] [1] [:path: /autodetect/detect?app=outlookdesktopBasic]
    * [HTTP/2] [1] [authorization: Basic ZW1haWxAZXhhbXBsZS5jb206cGFzc3dvcmQ=]
    * [HTTP/2] [1] [user-agent: curl/8.7.1]
    * [HTTP/2] [1] [accept: */*]
    > GET /autodetect/detect?app=outlookdesktopBasic HTTP/2
    > Host: prod.autodetect.outlook.cloud.microsoft
    > Authorization: Basic ZW1haWxAZXhhbXBsZS5jb206cGFzc3dvcmQ=
    > User-Agent: curl/8.7.1
    > Accept: */*
    > 
    * Request completely sent off
    < HTTP/2 200 
    < content-type: application/json; charset=utf-8
    < date: Mon, 08 Dec 2025 21:32:58 GMT
    < server: Kestrel
    < strict-transport-security: max-age=2592000
    < x-olm-source-endpoint: /detect
    < x-provider-id: seeatest
    < x-debug-support: eyJkZWNpc2lvbiI6ImF1dG9EdjIgPiBhdXRvRHYxID4gZml4ZWQgZGIgcHJvdmlkZXIgPiBmaXhlZCBkYiBkb21haW4gcHJvdG9jb2xzID4gZGIgcHJvdmlkZXIgPiBkYiBkb21haW4gcHJvdG9jb2xzIiwiYXV0b0QiOnsidjIiOm51bGwsInYxIjpudWxsfSwiZGIiOnsicHJvdmlkZXIiOnsiRG9tYWluSWQiOm51bGwsIklkIjoic2VlYXRlc3QiLCJTZXJ2aWNlIjpudWxsLCJQcm90b2NvbHMiOlt7InByb3RvY29sIjoic210cCIsIkRvbWFpbiI6bnVsbCwiSG9zdG5hbWUiOiJzbXRwZ21zLmpuZXQuc2VpLmNvLmpwIiwiUG9ydCI6NDY1LCJFbmNyeXB0aW9uIjoiU3NsIiwiSXNDcm93ZHNvdXJjZWQiOm51bGwsIkZlZWRiYWNrcyI6bnVsbCwiSW5zZWN1cmUiOm51bGwsIlNlY3VyZSI6IlRydWUiLCJVc2VybmFtZSI6IntlbWFpbH0iLCJWYWxpZGF0ZWQiOmZhbHNlLCJBdXRvZGlzY292ZXIiOm51bGwsIkFhZCI6bnVsbH0seyJwcm90b2NvbCI6ImltYXAiLCJEb21haW4iOm51bGwsIkhvc3RuYW1lIjoiaW1hcGdtcy5qbmV0LnNlaS5jby5qcCIsIlBvcnQiOjk5MywiRW5jcnlwdGlvbiI6IlNzbCIsIklzQ3Jvd2Rzb3VyY2VkIjpudWxsLCJGZWVkYmFja3MiOm51bGwsIkluc2VjdXJlIjpudWxsLCJTZWN1cmUiOiJUcnVlIiwiVXNlcm5hbWUiOiJ7ZW1haWx9IiwiVmFsaWRhdGVkIjpmYWxzZSwiQXV0b2Rpc2NvdmVyIjpudWxsLCJBYWQiOm51bGx9XSwiQ3JlYXRlZEF0IjoiMjAyMC0wMi0wM1QwNTozMToyMy4yOTgwMjQ4IiwiVXBkYXRlZEF0IjoiMjAyMC0wMi0wM1QwOToxMjo1OS4wMjQ1ODciLCJQcmVkaWNhdGVzIjpudWxsLCJBdXRvRHYyRW5kcG9pbnQiOm51bGwsIkNvbW1lbnQiOm51bGwsIkZlZWRiYWNrcyI6bnVsbCwiSXNDcm93ZHNvdXJjZWQiOmZhbHNlfSwiZG9tYWluIjp7ImZpeGVkIjpmYWxzZSwiYXV0b0R2MkVuZHBvaW50IjpudWxsLCJwcm92aWRlcklkIjoic2VlYXRlc3QiLCJwcm90b2NvbHMiOm51bGx9fX0=
    < x-autodv2-error: ENOTFOUND
    < x-feedback-token: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJEIjoiZXhhbXBsZS5jb20iLCJQSSI6InNlZWF0ZXN0IiwiUyI6W10sIlAiOlsiaW1hcHM6Ly9pbWFwZ21zLmpuZXQuc2VpLmNvLmpwOjk5MyIsInNtdHBzOi8vc210cGdtcy5qbmV0LnNlaS5jby5qcDo0NjUiXSwiUFQiOiJpbWFwIHNtdHAiLCJleHAiOjE3NjUyMzMxNzgsImlhdCI6MTc2NTIyOTU3OH0.-ohD7c9hytRZK_b4EJ0M5Tke7hl8u1wjsMYRV71GZik
    < x-dns-prefetch-control: off
    < x-frame-options: SAMEORIGIN
    < x-download-options: noopen
    < x-content-type-options: nosniff
    < x-xss-protection: 1; mode=block
    < x-instance-id: autodetect-deployment-76fffc487d-wfs4b
    < x-response-time: 3472 ms
    < x-request-id: f1b6525f-6d11-4add-a0e4-0b677d89f9eb
    < x-autodetect-cv: f1b6525f-6d11-4add-a0e4-0b677d89f9eb
    < 
    * Connection #0 to host prod.autodetect.outlook.cloud.microsoft left intact
    {"email":"email@example.com","services":[],"protocols":[{"protocol":"imap","hostname":"imapgms.jnet.sei.co.jp","port":993,"encryption":"ssl","username":"email@example.com","validated":false},{"protocol":"smtp","hostname":"smtpgms.jnet.sei.co.jp","port":465,"encryption":"ssl","username":"email@example.com","validated":false}]}%

    The JSON response:

    {
      "email": "email@example.com",
      "services": [],
      "protocols": [
        {
          "protocol": "imap",
          "hostname": "imapgms.jnet.sei.co.jp",
          "port": 993,
          "encryption": "ssl",
          "username": "email@example.com",
          "validated": false
        },
        {
          "protocol": "smtp",
          "hostname": "smtpgms.jnet.sei.co.jp",
          "port": 465,
          "encryption": "ssl",
          "username": "email@example.com",
          "validated": false
        }
      ]
    }

    Decoded debug header

    The x-debug-support header (Base64-decoded) reveals additional details:

    Field Value
    Provider ID seeatest
    Created 2020-02-03 05:31:23 UTC
    Updated 2020-02-03 09:12:59 UTC
    IsCrowdsourced false

    This misconfiguration has existed for nearly six years and was not crowdsourced. It appears to have been manually added to Microsoft’s database.

    Related

    • Autodiscovering the Great Leak

    • How Outlook “autodiscover” could leak your passwords – and how to stop it

    • Outlook AutoDetect And Broken AutoDiscover

    ❧ 2026-01-01

    Share. Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Telegram Email
    Previous ArticleWhat has Docker become?
    Next Article Radicle: The Sovereign Forge
    TechAiVerse
    • Website

    Jonathan is a tech enthusiast and the mind behind Tech AI Verse. With a passion for artificial intelligence, consumer tech, and emerging innovations, he deliver clear, insightful content to keep readers informed. From cutting-edge gadgets to AI advancements and cryptocurrency trends, Jonathan breaks down complex topics to make technology accessible to all.

    Related Posts

    Lenovo’s new ThinkPad laptops get a perfect iFixit repair score

    March 11, 2026

    ChatGPT can now identify songs for you

    March 11, 2026

    I just spotted this Windows feature and I instantly fell in love

    March 11, 2026
    Leave A Reply Cancel Reply

    Top Posts

    Ping, You’ve Got Whale: AI detection system alerts ships of whales in their path

    April 22, 2025712 Views

    Lumo vs. Duck AI: Which AI is Better for Your Privacy?

    July 31, 2025298 Views

    Wired Headphones Are Making A Comeback, And We Have Gen Z To Thank

    July 22, 2025205 Views

    6.7 Cummins Lifter Failure: What Years Are Affected (And Possible Fixes)

    April 14, 2025168 Views
    Don't Miss
    Gadgets March 11, 2026

    ASUS: MacBook Neo a ‘Shock’ to PC Industry

    ASUS: MacBook Neo a ‘Shock’ to PC Industry The MacBook Neo isn’t just Apple’s most…

    realme Note 80 Officially Launches in Malaysia From RM399

    Lenovo’s new ThinkPad laptops get a perfect iFixit repair score

    ChatGPT can now identify songs for you

    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    About Us
    About Us

    Welcome to Tech AI Verse, your go-to destination for everything technology! We bring you the latest news, trends, and insights from the ever-evolving world of tech. Our coverage spans across global technology industry updates, artificial intelligence advancements, machine learning ethics, and automation innovations. Stay connected with us as we explore the limitless possibilities of technology!

    Facebook X (Twitter) Pinterest YouTube WhatsApp
    Our Picks

    ASUS: MacBook Neo a ‘Shock’ to PC Industry

    March 11, 20263 Views

    realme Note 80 Officially Launches in Malaysia From RM399

    March 11, 20263 Views

    Lenovo’s new ThinkPad laptops get a perfect iFixit repair score

    March 11, 20263 Views
    Most Popular

    Best TV Antenna of 2025

    March 13, 20250 Views

    Best Internet Providers in Bowling Green, Kentucky

    March 13, 20250 Views

    The Players Championship 2025: TV Schedule Today, How to Watch, Stream All the PGA Tour Golf From Anywhere

    March 13, 20250 Views
    © 2026 TechAiVerse. Designed by Divya Tech.
    • Home
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms & Conditions

    Type above and press Enter to search. Press Esc to cancel.