Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not correctly detecting WordPress Installs #8

Closed
buggles333 opened this issue Jan 8, 2018 · 4 comments
Closed

Not correctly detecting WordPress Installs #8

buggles333 opened this issue Jan 8, 2018 · 4 comments

Comments

@buggles333
Copy link

Hi,

If I run the following URL 3VALLEYSMANUFACTURING.CO.UK through webanalyze then it does not report WordPress as being used.

But if I run the same URL through the Wappalyzer website then it does report WordPress.

Any idea why the two are not matching?

@rverton
Copy link
Owner

rverton commented Jan 8, 2018

Hi @buggles333,
so Wordpress is defined in the apps.json as:

"WordPress": {
      "cats": [
        "1",
        "11"
      ],
      "js": {
        "wp_username": ""
      },
      "html": [
        "<link rel=[\"']stylesheet[\"'] [^>]+wp-(?:content|includes)",
        "<link[^>]+s\\d+\\.wp\\.com"
      ],
      "icon": "WordPress.svg",
      "implies": "PHP",
      "meta": {
        "generator": "WordPress( [\\d.]+)?\\;version:\\1"
      },
      "script": "/wp-includes/",
      "website": "http://wordpress.org"
    },

As I can see in the URL you posted, there are some script tags which include from /wp-includes/, so this should be found (but I can reproduce here, it is not found). I will debug this and give you a notice when I found out whats wrong here.

@buggles333
Copy link
Author

Thank you, glad you are able to reproduce!

@rverton rverton closed this as completed in 45b617f Jan 9, 2018
@rverton
Copy link
Owner

rverton commented Jan 9, 2018

I just pushed a change which fixes this. Its a faulty configured webserver because it does not send anything if there is no Accept header defined. I dont know how common it is to do this, so I added this header to all request (which should not be a problem for other requests).

@buggles333
Copy link
Author

Thank you for fixing it so quickly, all is working great this end now

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants