Skip to main content
Solved

Wordpress Plugin

  • January 14, 2025
  • 2 replies
  • 115 views

  • New Participant
  • 1 reply

Could someone please advise the search query syntax for wordpress plugins? Ex: GiveWP, WP Automatic

Best answer by MattK_Censys

Hey there, I’d start with this query.

services.http.response.body: /.*wp-(admin|includes|content|login)\/.*/ and labels="wordpress"

It’s a bit broad, but you can narrow down from there.

Alternatively, if you can't use regex in your queries, you can try using the wordpress label, content in services.http.response.html_title like “GiveWP”, as well as the WP Automatic software fingerprint (services.software.product=`WP Automatic`).

Additionally, some WP plugin fingerprints other than WP Automatic exist as labels and you could look for those (for example, labels=`yoast-seo`).

Hope this helps!

2 replies

MattK_Censys
Forum|alt.badge.img+2
  • Censys Community Manager
  • 125 replies
  • Answer
  • January 14, 2025

Hey there, I’d start with this query.

services.http.response.body: /.*wp-(admin|includes|content|login)\/.*/ and labels="wordpress"

It’s a bit broad, but you can narrow down from there.

Alternatively, if you can't use regex in your queries, you can try using the wordpress label, content in services.http.response.html_title like “GiveWP”, as well as the WP Automatic software fingerprint (services.software.product=`WP Automatic`).

Additionally, some WP plugin fingerprints other than WP Automatic exist as labels and you could look for those (for example, labels=`yoast-seo`).

Hope this helps!


  • Author
  • New Participant
  • 1 reply
  • January 16, 2025

Thank you