我怎样才能知道网站使用了哪种服务器端编程?

发布于 2024-08-18 06:31:14 字数 1435 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

旧伤慢歌 2024-08-25 06:31:14

可以通过一些方法实现:

  • 只需查看文件扩展名(.php 显然是由 php 生成的)
  • 检查用于创建该文件的软件的 HTML,然后通过 google 进行
  • 搜索 现场搜索使用的软件
  • 检查 HTTP 标头
  • 只要尝试用 google 搜索一下(这至少应该适用于主要网站)

如果这些都没有帮助,除了向公司发送电子邮件之外,没有机会找到它。

It is may possible via some methods:

  • Just look at the file extension (.php is obviously generated by php)
  • Examine the HTML for a software which was used create that and google for it
  • Search on-site for the software used
  • Examine the HTTP-Header
  • Just try to google it (this should at least work for major sites)

If none of these will help, there is no chance of finding it out except emailing the company.

一个人的夜不怕黑 2024-08-25 06:31:14

每种服务器端编程语言都有自己的夸克,这使它们与众不同。 w3af 有许多“Discovery”插件,用于获取有关远程服务器的信息。一个很好的例子是 w3af 插件 PHPEggs

 该插件尝试查找 PHP 中存在的已记录的复活节彩蛋并识别
    使用复活节彩蛋内容的远程 PHP 版本。这个插件的复活节彩蛋
    验证的是:
        - http://php.net/?=PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000 ( PHP Credits )
        - http://php.net/?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 ( PHP Logo )
        - http://php.net/?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 ( Zend Logo )
        - http://php.net/?=PHPE9568F36-D428-11d2-A769-00AA001ACF42 ( PHP Logo 2 )

Each server side programming language has their own quarks which make them distinct. w3af has a number of "Discovery" plugins for gaining information about a remote server. A good example is the w3af plugin PHPEggs.

  This plugin tries to find the documented easter eggs that exist in PHP and identify
    the remote PHP version using the easter egg content. The easter eggs that this plugin
    verifies are:
        - http://php.net/?=PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000 ( PHP Credits )
        - http://php.net/?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 ( PHP Logo )
        - http://php.net/?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 ( Zend Logo )
        - http://php.net/?=PHPE9568F36-D428-11d2-A769-00AA001ACF42 ( PHP Logo 2 )
月野兔 2024-08-25 06:31:14

有时,您可以通过观察 HTTP 标头和页面“扩展名”(例如 asp)获得提示。

...但您永远无法确定例如伪装页面扩展是否容易。

Sometimes you can get hints from observing the HTTP headers and page "extensions" e.g. asp.

... but you can never be sure e.g. masquerading page extensions is easy.

如梦初醒的夏天 2024-08-25 06:31:14

查看页面扩展名,例如 .php

如果网站使用 mod_rewrite,您将无法看到他们使用的语言。

Look at the page extension, for example .php

If the website uses mod_rewrite you can't see wich language they use.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文