在浏览器的地址栏中搜索时收到奇怪的消息

在浏览器的地址栏中搜索时收到奇怪的消息

adblock因此我在 Firefox 地址栏中搜索,它重定向到一个页面“http://domainnotfound.optimum.net/cablevassist/dnsassist/main/?domain=adblock“ 说道:

Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>


Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.

我只是想用 ubuntu 进行基本的浏览。没有什么会导致出现消息,提示存在一些服务器错误和自定义服务器设置(网络上的浏览器应该能够看到,但我看不到,尽管我的浏览器在我的家庭网络上)。

答案1

在 Firefox 地址栏中输入一些单词将导致 Firefox 对这些单词进行网络搜索。输入其他单词将导致 Firefox 将这些单词视为主机名并尝试连接到它。

我不知道 Firefox 如何决定使用哪些词作为搜索词,使用哪些词作为目标地址(如果您知道,请告诉我们)。

  • “你好”-被视为搜索词
  • “hellox”-被视为地址
  • “ping”——视为搜索词
  • “pinga”-视为地址
  • “askubuntu”-视为地址
  • “user278904”-被视为地址

当 Firefox 将单词视为地址,并且无法解析时,会发生什么情况取决于您的 ISP。传统上,未解析的地址会导致 DNS 查找返回“未解析”状态,然后 Firefox 会抱怨它找不到服务器。不幸的是,一些 ISP 意识到他们可以将未知地址解析为指向他们自己的内部服务器,然后根据他们尝试连接的站点向客户提供有针对性的广告。这似乎就是您遇到的情况。您的 ISP 正在拦截您的未解析地址,并将其重定向到其自己的服务器之一。相关服务器暂时配置不正确,导致您看到的奇怪错误 - 现在似乎已修复,访问您提供的 URL 会导致 optimum.net 提供与“adblock”相关的广告。

相关内容