Skip to content

Conversation

parthmalhotra
Copy link
Member

@parthmalhotra parthmalhotra commented Oct 30, 2024

Awesome Search Queries Integration (-cpe)

Product and Vendor extraction based on awesome-search-queries, The title, favicon and body based queries in awesome-search-queries gets matched with the result of the host probed by httpx, On matching queries the product and vendor and CPE information is added to the results.

parth@Parths-Laptop httpx % echo https://example.com/ | ./httpx -cpe

    __    __  __       _  __
   / /_  / /_/ /_____ | |/ /
  / __ \/ __/ __/ __ \|   /
 / / / / /_/ /_/ /_/ /   |
/_/ /_/\__/\__/ .___/_/|_|
             /_/

                projectdiscovery.io

[INF] Current httpx version v1.6.9 (latest)
[WRN] UI Dashboard is disabled, Use -dashboard option to enable
https://example.com/ [cpe:2.3:a:papercut:papercut_mf:*:*:*:*:*:*:*:*] [papercut] [papercut_mf]
parth@Parths-Laptop httpx % 

With -json

  "product": "papercut_mf",
  "vendor": "papercut",
  "cpe": "cpe:2.3:a:papercut:papercut_mf:*:*:*:*:*:*:*:*"

Passive Wordpress Plugins and Themes Detection ( -wp, -wordpress )

parth@Parths-Laptop httpx % echo https://wordpress.example.com/ | ./httpx -wp             

    __    __  __       _  __
   / /_  / /_/ /_____ | |/ /
  / __ \/ __/ __/ __ \|   /
 / / / / /_/ /_/ /_/ /   |
/_/ /_/\__/\__/ .___/_/|_|
             /_/

                projectdiscovery.io

[INF] Current httpx version v1.6.9 (latest)
[WRN] UI Dashboard is disabled, Use -dashboard option to enable
https://wordpress.example.com/ [WP Plugins: gutenberg,accordion-blocks,contact-form-7,svg-support,woocommerce,ultimate-addons-for-gutenberg] [WP Themes: swiss]
parth@Parths-Laptop httpx % 

With -json :

  "wordpress": {
    "plugins": [
      "gutenberg",
      "accordion-blocks",
      "contact-form-7",
      "svg-support",
      "woocommerce",
      "ultimate-addons-for-gutenberg"
    ],
    "themes": [
      "swiss"
    ]
  }

Closes #1975

… plugin and theme detection (-wp, -wordpress) flag
@ehsandeep ehsandeep changed the base branch from main to dev October 30, 2024 11:40
@ehsandeep ehsandeep requested a review from Ice3man543 October 30, 2024 11:41
@ehsandeep ehsandeep marked this pull request as draft October 30, 2024 11:55
Copy link

github-actions bot commented Sep 7, 2025

This pull request has been automatically marked as stale due to inactivity. It will be closed in 7 days if no further activity occurs. Please update if you wish to keep it open.

Copy link

This pull request has been automatically closed due to inactivity. If you think this is a mistake or would like to continue working on it, please comment or feel free to reopen it.

@github-actions github-actions bot added the Status: Abandoned This issue is no longer important to the requestor and no one else has shown an interest in it. label Sep 14, 2025
@github-actions github-actions bot closed this Sep 14, 2025
@ehsandeep ehsandeep reopened this Sep 14, 2025
@ehsandeep ehsandeep removed Status: Abandoned This issue is no longer important to the requestor and no one else has shown an interest in it. Status: Stale labels Sep 14, 2025
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

Successfully merging this pull request may close these issues.

Passive CPE and Wordpress Plugin / Theme Detection

2 participants