识别 WordPress 站点

发布于 2024-10-07 23:13:06 字数 64 浏览 0 评论 0原文

任何人都可以帮助我如何识别给定的网站是否基于文字新闻?

例如:flashnewstoday.com

Can any one please help me how to identify a given a website is a word press based or not ?

For example: flashnewstoday.com

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

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

发布评论

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

评论(5

浊酒尽余欢 2024-10-14 23:13:06

我通常只是去查看源代码并寻找包含 wp-content 的路径,如果它很可能是由 wordpress 提供支持的。看起来 flashnewstoday.com

也是由 wp 提供支持的:

<meta name="generator" content="WordPress 3.0.1" />

i usually just go to view-source and look for path that includes wp-content, and if it does most likely its wordpress powered. seems like flashnewstoday.com is wp powered

also this:

<meta name="generator" content="WordPress 3.0.1" />
思慕 2024-10-14 23:13:06

没有办法 100% 识别网站的后端。它可能是由一群猴子打字的。 HTML 的各个部分中可能有线索,但它们可能是错误的或具有误导性的 - 我可以使 Django 网页输出与此处其他人所说的识别 WordPress 站点相同的标签。

你为什么想知道?

There is no way to 100% identify the back end of a web site. It could be being typed by a team of monkeys. There may be clues in various bits of HTML, but they may be wrong or misleading - I can make a Django web page output the same tags that others on here say identify a WordPress site.

Why do you want to know?

℡寂寞咖啡 2024-10-14 23:13:06

该网站的标题中包含以下内容:

<meta name="generator" content="WordPress 3.0.2" />

您还可以尝试访问 WordPress 特定的 URL,例如 http://flashnewstoday .com/wp-login.php

That website has the following in the header:

<meta name="generator" content="WordPress 3.0.2" />

You can also try accessing WordPress-specific URLs, like http://flashnewstoday.com/wp-login.php

扶醉桌前 2024-10-14 23:13:06

如果核心 WordPress 引擎尚未修改,最简单的方法是查找如下 HTML 元素:

<meta name="generator" content="WordPress 3.0.1" />

版本号可能不同,因此只需检查 content 属性是否包含字符串“WordPress”应该足够了。

If the core WordPress engine has not been modified, the simplest way is to look for an HTML element like this:

<meta name="generator" content="WordPress 3.0.1" />

The version number may be different, so just checking if the content attribute contains the string "WordPress" should be sufficient.

情徒 2024-10-14 23:13:06

寻找

并不是判断该网站是 WP 的可靠方法。有些插件和 WP 功能可以删除该标签,以实现“通过默默无闻的安全性”。

查找 /wp-content/ 和 /wp-content/plugins/ 等目录

并在以下位置查找 CSS 文件
http://mydomain.com/wp-content/themes/somethemename/style.css 并查看该文件以获取有关主题本身的信息。

Looking for

<meta name="generator" content="WordPress x.x.x" />

is not a sure fire way to tell the site is WP. There are plugins and WP functions that remove that tag in the interest of some "security through obscurity."

Look for directories like /wp-content/ and /wp-content/plugins/

And look for a CSS file at
http://mydomain.com/wp-content/themes/somethemename/style.css and view that file for info on the theme itself.

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