From f73190e7ae2af0683cf22ad012d269b66ddf7f9a Mon Sep 17 00:00:00 2001 From: sandeep <8293321+ehsandeep@users.noreply.github.com> Date: Fri, 14 Jul 2023 14:21:06 +0530 Subject: [PATCH] initial commit --- .github/dependabot.yml | 18 + .github/workflows/yaml2json.yml | 36 + CONTRIBUTING.md | 29 + LICENSE.md | 21 + QUERIES.json | 4540 +++++++++++++++++++++++++++++++ QUERIES.yaml | 2632 ++++++++++++++++++ README.md | 92 + 7 files changed, 7368 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/yaml2json.yml create mode 100644 CONTRIBUTING.md create mode 100644 LICENSE.md create mode 100644 QUERIES.json create mode 100644 QUERIES.yaml create mode 100644 README.md diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..7917228 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "chore" + include: "scope" + labels: + - "Type: Maintenance" diff --git a/.github/workflows/yaml2json.yml b/.github/workflows/yaml2json.yml new file mode 100644 index 0000000..5c572aa --- /dev/null +++ b/.github/workflows/yaml2json.yml @@ -0,0 +1,36 @@ +name: 📝 Convert YAML to JSON + +on: + push: + paths: + - 'QUERIES.yaml' + workflow_dispatch: + +jobs: + convert: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@master + with: + fetch-depth: 0 + + - name: Convert YAML to JSON + run: | + sudo apt-get install -y python3-pip + pip3 install pyyaml + python3 -c "import sys, yaml, json; json.dump(yaml.safe_load(sys.stdin), sys.stdout, indent=2)" < QUERIES.yaml > QUERIES.json + + - name: Check if there are changes + id: change + run: | + git add QUERIES.json + git status -s | wc -l | xargs -I {} echo CHANGES={} >> $GITHUB_OUTPUT + + - name: Commit and push if it changed + if: steps.change.outputs.CHANGES > 0 + run: | + git config --global user.email "action@github.com" + git config --global user.name "GitHub Action" + git commit -am "Auto YAML to JSON update [$(date)] :robot:" --allow-empty + git push diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..8b565e3 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,29 @@ +## How to Contribute + +Contributions to this project are welcome and appreciated. You can contribute by adding new search queries for existing products or by adding new products altogether. Here's how you can do it: + +1. **Fork the Repository**: The first step to contributing is to fork the repository to your own GitHub account. This creates your own copy of the entire project, which you can edit as you see fit. + +2. **Clone the Repository**: After forking, you'll want to clone the repository to your local machine. This allows you to make changes to the files on your computer. + +3. **Find the Relevant YAML File**: Inside this file, you'll find a list of products and associated search queries for each supported search engine. + +4. **Make Your Changes**: Add your new search query to the appropriate place in the YAML file. If you're adding a new product, you'll need to create a new entry in the file. Here's an example structure: + +```yaml +- name: product_name + type: product #product, honeypot, service etc. + engines: + - platform: search_engine_name # shodan, censys, fofa, hunter, quake, zoomeye, netlas, criminalip, publicwww, hunterhow, google + queries: + - 'your_search_query' + - 'your_search_query_2' +``` + +5. **Commit and Push Your Changes**: Once you've made your changes, you'll need to commit them to your local repository and then push them to your forked repository on GitHub. + +6. **Create a Pull Request**: Finally, you'll need to create a pull request to have your changes merged into the main project. This is essentially a request to the project maintainer to pull your changes into the main repository. + +--- + +This guide assumes a basic familiarity with Git and GitHub. If you're new to these tools, there are many great resources available online to help you get started. diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..822f480 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 ProjectDiscovery + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/QUERIES.json b/QUERIES.json new file mode 100644 index 0000000..1fd250f --- /dev/null +++ b/QUERIES.json @@ -0,0 +1,4540 @@ +[ + { + "name": "clickdesk_live_support-live_chat_plugin", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/clickdesk-live-support-chat/\"" + ] + } + ] + }, + { + "name": "reprise_license_manager", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Reprise License Manager\"", + "http.html:\"Reprise License\"" + ] + }, + { + "platform": "google", + "queries": [ + "inurl:\"/goforms/menu\"" + ] + } + ] + }, + { + "name": "endpoint_manager_cloud_services_appliance", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"LANDesk(R) Cloud Services Appliance\"" + ] + } + ] + }, + { + "name": "hoteldruid", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-1521640213" + ] + } + ] + }, + { + "name": "nexusphp", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-582931176" + ] + } + ] + }, + { + "name": "trafficanalyzer", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/trafficanalyzer\"" + ] + } + ] + }, + { + "name": "mongo-express", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Mongo Express\"" + ] + } + ] + }, + { + "name": "openemr", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"OpenEMR\"" + ] + } + ] + }, + { + "name": "11n_firmware", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "product==\"Tenda-11N-Wireless-AP\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "http.title:\"Tenda 11N\"" + ] + } + ] + }, + { + "name": "spacelogic_c-bus_home_controller_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"SpaceLogic C-Bus\"" + ] + } + ] + }, + { + "name": "sysaid", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:1540720428" + ] + } + ] + }, + { + "name": "phpcollab", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"PhpCollab\"" + ] + } + ] + }, + { + "name": "74cms", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "app=\"74cms\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "http.html:\"74cms\"" + ] + } + ] + }, + { + "name": "flatpress", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Flatpress\"" + ] + } + ] + }, + { + "name": "hd-network_real-time_monitoring_system", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "intitle:\"HD-Network Real-time Monitoring System V2.0\"" + ] + } + ] + }, + { + "name": "mcms", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "icon_hash=\"1464851260\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:1464851260" + ] + } + ] + }, + { + "name": "terramaster_operating_system", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "TerraMaster" + ] + } + ] + }, + { + "name": "ssl_vpn", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html_hash:510586239" + ] + } + ] + }, + { + "name": "artica_proxy", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Artica\"" + ] + } + ] + }, + { + "name": "ios", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "product:\"Cisco IOS http config\" && 200" + ] + } + ] + }, + { + "name": "dapr_dashboard", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Dapr Dashboard\"" + ] + } + ] + }, + { + "name": "webpanel", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Login | Control WebPanel\"" + ] + } + ] + }, + { + "name": "activehelper_livehelp_live_chat", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/activehelper-livehelp\"" + ] + } + ] + }, + { + "name": "monstra_cms", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:419828698" + ] + } + ] + }, + { + "name": "metabase", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "app=\"Metabase\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "http.title:\"Metabase\"" + ] + } + ] + }, + { + "name": "kavita", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"kavita\"" + ] + } + ] + }, + { + "name": "aspera_faspex", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"Aspera Faspex\"" + ] + } + ] + }, + { + "name": "academy_learning_management_system", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "intext:\"Study any topic, anytime\"" + ] + } + ] + }, + { + "name": "jboss_enterprise_application_platform", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"JBoss\"" + ] + } + ] + }, + { + "name": "featurific-for-wordpress", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/featurific-for-wordpress\"" + ] + } + ] + }, + { + "name": "anti-plagiarism", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/anti-plagiarism\"" + ] + } + ] + }, + { + "name": "jenkins", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:81586312" + ] + } + ] + }, + { + "name": "qdpm", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:762074255" + ] + } + ] + }, + { + "name": "cobranca", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:876876147" + ] + } + ] + }, + { + "name": "http_server", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "Apache 2.4.49" + ] + } + ] + }, + { + "name": "candidats", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"CandidATS\"" + ] + } + ] + }, + { + "name": "gibbon", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-165631681" + ] + }, + { + "platform": "fofa", + "queries": [ + "icon_hash=\"-165631681\"" + ] + } + ] + }, + { + "name": "infusionsoft_gravity_forms", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/infusionsoft/Infusionsoft/\"" + ] + } + ] + }, + { + "name": "maximo_asset_management", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-399298961" + ] + } + ] + }, + { + "name": "r-seenet", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"R-SeeNet\"" + ] + } + ] + }, + { + "name": "geoserver", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"GeoServer\"", + "title:\"geoserver\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "app=\"GeoServer\"" + ] + } + ] + }, + { + "name": "avideo", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"AVideo\"" + ] + } + ] + }, + { + "name": "h-sphere", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Parallels H-Sphere", + "title:\"h-sphere\"" + ] + } + ] + }, + { + "name": "swim_team", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/wp-swimteam\"" + ] + } + ] + }, + { + "name": "dotcms", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"dotCMS\"" + ] + } + ] + }, + { + "name": "high_cms", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"HighMail\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "title=\"HighMail\"" + ] + } + ] + }, + { + "name": "workforce_optimization", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Verint Sign-in\"" + ] + } + ] + }, + { + "name": "copyright_proof", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:/wp-content/plugins/digiproveblog" + ] + } + ] + }, + { + "name": "essential_addons_for_elementor", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:/wp-content/plugins/essential-addons-for-elementor-lite" + ] + } + ] + }, + { + "name": "lightdash", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Lightdash\"" + ] + } + ] + }, + { + "name": "tikiwiki_cms\\/groupware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"tiki wiki\"" + ] + } + ] + }, + { + "name": "advanced_dewplayer", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/advanced-dewplayer/\"" + ] + } + ] + }, + { + "name": "icinga_web_2", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Icinga\"" + ] + } + ] + }, + { + "name": "mlflow", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "app=\"MLflow\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "http.title:\"mlflow\"" + ] + } + ] + }, + { + "name": "forget_about_shortcode_buttons", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/forget-about-shortcode-buttons\"" + ] + } + ] + }, + { + "name": "opendreambox", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Dreambox WebControl\"" + ] + } + ] + }, + { + "name": "rv160_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Cisco rv340\"" + ] + } + ] + }, + { + "name": "appliance_base_software", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "\"BeyondTrust\" \"Redistribution Prohibited\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "set-cookie: nsbase_session" + ] + } + ] + }, + { + "name": "cliniccases", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"ClinicCases\",html:\"/cliniccases/\"" + ] + } + ] + }, + { + "name": "identity_manager", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-1250474341" + ] + }, + { + "platform": "fofa", + "queries": [ + "app=\"vmware-Workspace-ONE-Access\" || app=\"vmware-Identity-Manager\" || app=\"vmware-vRealize\"" + ] + } + ] + }, + { + "name": "zk_framework", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Server backup manager\"" + ] + } + ] + }, + { + "name": "page-layout-builder", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/page-layout-builder\"" + ] + } + ] + }, + { + "name": "show_all_comments", + "type": "product", + "engines": [ + { + "platform": "publicwww", + "queries": [ + "/wp-content/plugins/show-all-comments-in-one-page" + ] + } + ] + }, + { + "name": "vrealize_network_insight", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "title=\"VMware vRealize Network Insight\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "title:\"VMware vRealize Network Insight\"", + "title:\"VMware Aria Operations\"" + ] + } + ] + }, + { + "name": "obsidian", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "title=\"Plesk Obsidian\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "title:\"Plesk Obsidian\"" + ] + } + ] + }, + { + "name": "atutor", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Atutor\"" + ] + } + ] + }, + { + "name": "weiphp", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"WeiPHP5.0\"" + ] + } + ] + }, + { + "name": "atmail", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Powered by Atmail\"", + "http.html:\"atmail\"" + ] + } + ] + }, + { + "name": "e-business_suite", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Login\" \"X-ORACLE-DMS-ECID\" 200" + ] + } + ] + }, + { + "name": "apisix", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "title=\"Apache APISIX Dashboard\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "title:\"Apache APISIX Dashboard\"" + ] + } + ] + }, + { + "name": "energy_communication_unit_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Altenergy Power Control Software\"" + ] + }, + { + "platform": "google", + "queries": [ + "intitle:\"Altenergy Power Control Software\"" + ] + } + ] + }, + { + "name": "powerjob", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "app=\"PowerJob\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "html:\"PowerJob\"" + ] + } + ] + }, + { + "name": "robotcpa", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/robotcpa\"" + ] + } + ] + }, + { + "name": "zedna_ebook_download", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/ebook-download\"" + ] + } + ] + }, + { + "name": "spotweb", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"SpotWeb - overview\"" + ] + } + ] + }, + { + "name": "jai-ext", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "/geoserver/" + ] + } + ] + }, + { + "name": "basic_pdu_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Powertek\"" + ] + } + ] + }, + { + "name": "netweaver", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-266008933" + ] + } + ] + }, + { + "name": "dedecms", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"DedeCms\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "app=\"DedeCMS\"" + ] + } + ] + }, + { + "name": "opentsdb", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"OpenTSDB\"" + ] + } + ] + }, + { + "name": "jellyfin", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "title=\"Jellyfin\" || body=\"http://jellyfin.media\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "http.html:\"Jellyfin\"", + "http.title:\"Jellyfin\"" + ] + } + ] + }, + { + "name": "node-red-dashboard", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Node-RED\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "title=\"Node-RED\"" + ] + } + ] + }, + { + "name": "api_manager", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:1398055326" + ] + }, + { + "platform": "google", + "queries": [ + "inurl:\"carbon/admin/login\"" + ] + } + ] + }, + { + "name": "fortinac", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"FortiNAC\"" + ] + } + ] + }, + { + "name": "grand_flagallery", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/flash-album-gallery\"" + ] + } + ] + }, + { + "name": "flexible_custom_post_type", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/flexible-custom-post-type/\"" + ] + } + ] + }, + { + "name": "dashboard", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "product:\"Kubernetes\"" + ] + } + ] + }, + { + "name": "timesheet_next_gen", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/timesheet/login.php\"" + ] + } + ] + }, + { + "name": "erxes", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"erxes\"" + ] + } + ] + }, + { + "name": "dir-615_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Roteador Wireless\"" + ] + } + ] + }, + { + "name": "ghost", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.component:\"Ghost\"" + ] + } + ] + }, + { + "name": "yousaytoo", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/yousaytoo-auto-publishing-plugin\"" + ] + } + ] + }, + { + "name": "compact_5500r_firmware", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "\"auerswald\"" + ] + } + ] + }, + { + "name": "i3geo", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"i3geo\"" + ] + } + ] + }, + { + "name": "spark", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Spark Master at\"" + ] + } + ] + }, + { + "name": "free5gc", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"free5GC Web Console\"" + ] + } + ] + }, + { + "name": "sg200-50_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "/config/log_off_page.htm" + ] + }, + { + "platform": "censys", + "queries": [ + "services.http.response.headers.location: /config/log_off_page.htm" + ] + } + ] + }, + { + "name": "gitlab_hook", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"GitLab\"" + ] + } + ] + }, + { + "name": "aurall_rec_monitor", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"AURALL\"" + ] + } + ] + }, + { + "name": "cachet", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-1606065523" + ] + } + ] + }, + { + "name": "shardingsphere_elasticjob-ui", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:816588900" + ] + } + ] + }, + { + "name": "kubeview", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"KubeView\"" + ] + } + ] + }, + { + "name": "cpanel", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"cPanel\"" + ] + } + ] + }, + { + "name": "struts", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"Struts Problem Report\"", + "html:\"Apache Struts\"" + ] + } + ] + }, + { + "name": "wordpress", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.component:\"WordPress\"" + ] + } + ] + }, + { + "name": "node-red-contrib-huemagic", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"NODE-RED\"" + ] + } + ] + }, + { + "name": "car_rental_management_system", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Car Rental Management System\"" + ] + } + ] + }, + { + "name": "appwrite", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Sign In - Appwrite\"" + ] + } + ] + }, + { + "name": "count_per_day", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/count-per-day\"" + ] + } + ] + }, + { + "name": "magmi", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.component:\"Magento\"" + ] + } + ] + }, + { + "name": "quixplorer", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "intitle:\"My Download Server\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "http.title:\"My Download Server\"" + ] + } + ] + }, + { + "name": "ofbiz", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "OFBiz.Visitor=" + ] + }, + { + "platform": "fofa", + "queries": [ + "app=\"Apache_OFBiz\"" + ] + } + ] + }, + { + "name": "central_authentication_service", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:'CAS - Central Authentication Service'" + ] + } + ] + }, + { + "name": "casdoor", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Casdoor\"" + ] + } + ] + }, + { + "name": "opencats", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"OpenCATS\"", + "title:\"opencats\"" + ] + } + ] + }, + { + "name": "pyload", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"pyload\"" + ] + } + ] + }, + { + "name": "wp-planet", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/wp-planet\"" + ] + } + ] + }, + { + "name": "uag2100_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"ZyWall\"" + ] + } + ] + }, + { + "name": "cute_editor", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.component:\"ASP.NET\"" + ] + } + ] + }, + { + "name": "webctrl", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"/_common/lvl5/dologin.jsp\"" + ] + } + ] + }, + { + "name": "ind780_firmware", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:excalweb.dll" + ] + }, + { + "platform": "shodan", + "queries": [ + "IND780" + ] + } + ] + }, + { + "name": "experience_platform", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"SiteCore\"" + ] + } + ] + }, + { + "name": "appcms", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Powerd by AppCMS\"" + ] + } + ] + }, + { + "name": "livezilla", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:LiveZilla" + ] + } + ] + }, + { + "name": "pypiserver", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"pypiserver\"" + ] + } + ] + }, + { + "name": "microweber", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"microweber\"", + "http.favicon.hash:780351152" + ] + } + ] + }, + { + "name": "metersphere", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"metersphere\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "title=\"MeterSphere\"" + ] + } + ] + }, + { + "name": "drawio", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Flowchart Maker\"" + ] + } + ] + }, + { + "name": "open_edx", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Open edX\"" + ] + } + ] + }, + { + "name": "cacti", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Login to Cacti\"" + ] + } + ] + }, + { + "name": "stagil_navigation", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:Jira" + ] + } + ] + }, + { + "name": "dolibarr_erp\\/crm", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:440258421" + ] + } + ] + }, + { + "name": "wsecure", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/wsecure\"" + ] + } + ] + }, + { + "name": "git", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "X-Jenkins" + ] + } + ] + }, + { + "name": "dispatcher", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.component:\"Adobe Experience Manager\"" + ] + } + ] + }, + { + "name": "kylin", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-186961397" + ] + } + ] + }, + { + "name": "ispy", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"iSpy is running\"" + ] + } + ] + }, + { + "name": "goanywhere_managed_file_transfer", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:1484947000" + ] + } + ] + }, + { + "name": "woocs", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"wp-content/plugins/woocommerce-currency-switcher\"" + ] + } + ] + }, + { + "name": "manageengine_desktop_central", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "app=\"ZOHO-ManageEngine-Desktop\"" + ] + } + ] + }, + { + "name": "mobile", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "title=\"Sophos Mobile\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-1274798165" + ] + } + ] + }, + { + "name": "category-grid-view-gallery", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/category-grid-view-gallery\"" + ] + } + ] + }, + { + "name": "ds-2cd2026g2-iu\\/sl_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:999357577" + ] + } + ] + }, + { + "name": "papercut_mf", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"PaperCut\"" + ] + } + ] + }, + { + "name": "gitlab", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Gitlab\"" + ] + } + ] + }, + { + "name": "video_gallery", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/dzs-videogallery\"" + ] + } + ] + }, + { + "name": "cockpit", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:688609340" + ] + } + ] + }, + { + "name": "fudforum", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Powered by: FUDforum\"", + "html:\"FUDforum\"" + ] + } + ] + }, + { + "name": "serv-u", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "product:\"Rhinosoft Serv-U httpd\"" + ] + } + ] + }, + { + "name": "webmin", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Webmin\"" + ] + } + ] + }, + { + "name": "sassy_social_share", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/sassy-social-share\"" + ] + } + ] + }, + { + "name": "gogs", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Sign In - Gogs\"" + ] + } + ] + }, + { + "name": "confluence", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.component:\"Atlassian Confluence\"" + ] + } + ] + }, + { + "name": "hdw-tube", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/hdw-tube\"" + ] + } + ] + }, + { + "name": "infusionsoft", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/infusionsoft\"" + ] + } + ] + }, + { + "name": "wn530hg4_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Wavlink\"" + ] + } + ] + }, + { + "name": "teampass", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"teampass\"" + ] + } + ] + }, + { + "name": "extreme_management_center", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Extreme Management Center\"" + ] + } + ] + }, + { + "name": "roxy-wi", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Roxy-WI\"" + ] + } + ] + }, + { + "name": "laravel_filemanager", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Laravel Filemanager\"" + ] + } + ] + }, + { + "name": "imgproxy", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "Server: imgproxy" + ] + } + ] + }, + { + "name": "uploader", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/uploader\"" + ] + } + ] + }, + { + "name": "http_file_server", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:2124459909" + ] + } + ] + }, + { + "name": "mail_server", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"icewarp\"" + ] + }, + { + "platform": "google", + "queries": [ + "Powered By IceWarp 10.4.4" + ] + } + ] + }, + { + "name": "tomcat", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Apache Tomcat\"", + "html:\"Apache Tomcat\"" + ] + } + ] + }, + { + "name": "e1_zoom_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Reolink\"" + ] + } + ] + }, + { + "name": "sv-cpt-mc310_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"SolarView Compact\"" + ] + } + ] + }, + { + "name": "mura_cms", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "Generator: Musa CMS" + ] + } + ] + }, + { + "name": "phpmyadmin", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"phpmyadmin\"", + "http.component:\"phpmyadmin\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "body=\"pma_servername\" && body=\"4.8.4\"" + ] + }, + { + "platform": "hunter", + "queries": [ + "app.name=\"phpMyAdmin\"&&web.body=\"pma_servername\"&&web.body=\"4.8.4\"" + ] + } + ] + }, + { + "name": "glpi", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:\"-1474875778\"" + ] + } + ] + }, + { + "name": "syncserver_s650_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"Symmetricom SyncServer\"" + ] + } + ] + }, + { + "name": "repetier-server", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Repetier-Server\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "title=\"Repetier-Server\"" + ] + } + ] + }, + { + "name": "advanced_text_widget_plugin", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/advanced-text-widget\"" + ] + } + ] + }, + { + "name": "ninja", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/shortcode-ninja\"" + ] + } + ] + }, + { + "name": "superwebmailer", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"SuperWebMailer\"" + ] + } + ] + }, + { + "name": "thruk", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Thruk\"" + ] + } + ] + }, + { + "name": "web_to_print_shop\\", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/udraw\"" + ] + } + ] + }, + { + "name": "gallery", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/gallery-album/\"" + ] + } + ] + }, + { + "name": "simple_ajax_chat", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:/wp-content/plugins/simple-ajax-chat/" + ] + } + ] + }, + { + "name": "wp-symposium", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/wp-symposium\"" + ] + } + ] + }, + { + "name": "gitea", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"Powered by Gitea Version\"", + "title:\"Gitea\"" + ] + } + ] + }, + { + "name": "weblogic_server", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Oracle PeopleSoft Sign-in\"" + ] + } + ] + }, + { + "name": "opensis", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"openSIS\"" + ] + } + ] + }, + { + "name": "trilium", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Trilium Notes\"" + ] + } + ] + }, + { + "name": "oauth", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.component:\"Atlassian Jira\"" + ] + } + ] + }, + { + "name": "roxy_fileman", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "intitle:\"Roxy file manager\"" + ] + } + ] + }, + { + "name": "revive_adserver", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:106844876" + ] + } + ] + }, + { + "name": "paid_memberships_pro", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/paid-memberships-pro\"" + ] + } + ] + }, + { + "name": "datepicker_calendar", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "intitle:TriConsole.com - PHP Calendar Date Picker" + ] + } + ] + }, + { + "name": "testrail", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"TestRail\"" + ] + } + ] + }, + { + "name": "ex1200t_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"TOTOLINK\"" + ] + } + ] + }, + { + "name": "wpb_show_core", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:wp-content/plugins/wpb-show-core/modules/jplayer_new/jplayer_twitter_ver_1.php" + ] + } + ] + }, + { + "name": "navis_documentcloud", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/navis-documentcloud\"" + ] + } + ] + }, + { + "name": "tl-wr841n_\\(9.0\\)_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"TP-LINK\"" + ] + } + ] + }, + { + "name": "bibliopac", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Bibliopac\"" + ] + } + ] + }, + { + "name": "blogengine.net", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Blogengine.net\"" + ] + } + ] + }, + { + "name": "pcoweb_card_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"pCOWeb\"" + ] + } + ] + }, + { + "name": "openam", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"OpenAM\"" + ] + } + ] + }, + { + "name": "wpqa_builder", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:/wp-content/plugins/wpqa" + ] + } + ] + }, + { + "name": "ruckus_wireless_admin", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"ruckus wireless\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "title=\"ruckus wireless\"" + ] + } + ] + }, + { + "name": "supervisor", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Supervisor Status\"" + ] + } + ] + }, + { + "name": "kentico_cms", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "intitle:\"kentico database setup\"" + ] + } + ] + }, + { + "name": "orchid_core_vms", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Orchid Core VMS\"" + ] + } + ] + }, + { + "name": "gitblit", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Gitblit\"" + ] + } + ] + }, + { + "name": "ethos_identity", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"Ellucian Company\"" + ] + }, + { + "platform": "google", + "queries": [ + "login with ellucian ethos identity" + ] + } + ] + }, + { + "name": "securitygateway", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/SecurityGateway.dll\"" + ] + } + ] + }, + { + "name": "drupal", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.component:\"drupal\"" + ] + } + ] + }, + { + "name": "defa-online-image-protector", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/defa-online-image-protector\"" + ] + } + ] + }, + { + "name": "tooltip_glossary", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/enhanced-tooltipglossary\"" + ] + } + ] + }, + { + "name": "linear_emerge_essential_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"eMerge\"", + "title:\"eMerge\"" + ] + } + ] + }, + { + "name": "vantara_pentaho", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "Pentaho" + ] + } + ] + }, + { + "name": "jeecg", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Jeecg-Boot\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "title=\"JeecgBoot \u4f01\u4e1a\u7ea7\u4f4e\u4ee3\u7801\u5e73\u53f0\"" + ] + } + ] + }, + { + "name": "zabbix", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "app=\"ZABBIX-\u76d1\u63a7\u7cfb\u7edf\" && body=\"saml\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:892542951" + ] + } + ] + }, + { + "name": "rpcms", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"RPCMS\"" + ] + } + ] + }, + { + "name": "ilias", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"ILIAS\"" + ] + } + ] + }, + { + "name": "sonicos", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"auth.html\" intitle:\"SonicWall\"" + ] + } + ] + }, + { + "name": "sdt-cs3b1_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"SDT-CW3B1\"" + ] + } + ] + }, + { + "name": "wp_visitor_statistics", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/wp-stats-manager\"" + ] + } + ] + }, + { + "name": "pmb", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"PMB Group\"", + "http.favicon.hash:1469328760" + ] + } + ] + }, + { + "name": "openfire", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"openfire\"" + ] + } + ] + }, + { + "name": "axis2", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Apache Axis\"" + ] + } + ] + }, + { + "name": "cocoon", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Apache Cocoon\"" + ] + } + ] + }, + { + "name": "dir-816l_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"DIR-816L\"", + "http.html:\"DIR-816L\"" + ] + } + ] + }, + { + "name": "aria_operations_for_logs", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"vRealize Log Insight\"" + ] + } + ] + }, + { + "name": "squidex", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:1099097618" + ] + } + ] + }, + { + "name": "active_management_technology_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Active Management Technology\"" + ] + } + ] + }, + { + "name": "knowledge_warehouse", + "type": "product", + "engines": [ + { + "platform": "zoomeye", + "queries": [ + "+app:\"SAP NetWeaver Application Server httpd" + ] + } + ] + }, + { + "name": "dt80_dex_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"datataker\"" + ] + } + ] + }, + { + "name": "phpmychat-plus", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/plus/pass_reset.php\"" + ] + } + ] + }, + { + "name": "fancy_product_designer", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\u201c/wp-content/plugins/fancy-product-designer\u201d" + ] + } + ] + }, + { + "name": "gateway", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Citrix Gateway\"" + ] + } + ] + }, + { + "name": "moveit_cloud", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:989289239" + ] + } + ] + }, + { + "name": "vantara_pentaho_business_analytics_server", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:1749354953" + ] + } + ] + }, + { + "name": "adminimize", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/adminimize/\"" + ] + } + ] + }, + { + "name": "vmg1312-b10d_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"VMG1312-B10D\"" + ] + } + ] + }, + { + "name": "netscaler_sd-wan", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Citrix SD-WAN\"" + ] + } + ] + }, + { + "name": "php_curl_class", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/php-curl-test/post_file_path_upload.php\"" + ] + } + ] + }, + { + "name": "genieacs", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-2098066288" + ] + } + ] + }, + { + "name": "u8\\+", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:/u8sl/WebHelp" + ] + } + ] + }, + { + "name": "nvrsolo_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"NVRsolo\"" + ] + } + ] + }, + { + "name": "e-search", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/e-search\"" + ] + } + ] + }, + { + "name": "indexisto", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/indexisto\"" + ] + } + ] + }, + { + "name": "tew-827dru_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"TEW-827DRU\"" + ] + } + ] + }, + { + "name": "mautic", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Mautic\"" + ] + } + ] + }, + { + "name": "sma1000_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Appliance Management Console Login\"" + ] + } + ] + }, + { + "name": "phppgadmin", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"phpPgAdmin\"" + ] + } + ] + }, + { + "name": "alert_before_you_post", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/alert-before-your-post\"" + ] + } + ] + }, + { + "name": "duplicator", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/duplicator\"", + "inurl:/backups-dup-lite/dup-installer/" + ] + } + ] + }, + { + "name": "mail-masta", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/mail-masta\"" + ] + } + ] + }, + { + "name": "sugarcrm", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"SugarCRM Inc. All Rights Reserved\"" + ] + }, + { + "platform": "google", + "queries": [ + "intext:\"SugarCRM Inc. All Rights Reserved\"" + ] + } + ] + }, + { + "name": "redash", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:698624197" + ] + } + ] + }, + { + "name": "eshop_-_ecommerce_\\/_store_website", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"eShop - Multipurpose Ecommerce\"" + ] + } + ] + }, + { + "name": "woocommerce_payments", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:/wp-content/plugins/woocommerce-payments" + ] + }, + { + "platform": "publicwww", + "queries": [ + "/wp-content/plugins/woocommerce-payments" + ] + } + ] + }, + { + "name": "laravel", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "app=\"Laravel-Framework\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "Laravel-Framework" + ] + } + ] + }, + { + "name": "rocket.chat", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Rocket.Chat\"" + ] + } + ] + }, + { + "name": "access_manager", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "body=\"/oam/pages/css/login_page.css\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "http.title:\"Oracle Access Management\"" + ] + } + ] + }, + { + "name": "wapples", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Intelligent WAPPLES\"" + ] + } + ] + }, + { + "name": "servicenow", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"ServiceNow\"" + ] + } + ] + }, + { + "name": "bitbucket", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.component:\"BitBucket\"" + ] + } + ] + }, + { + "name": "2-click-social-media-buttons", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/2-click-socialmedia-buttons\"" + ] + } + ] + }, + { + "name": "next.js", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"/_next/static\"" + ] + } + ] + }, + { + "name": "linear_emerge_e3_access_control_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Linear eMerge\"" + ] + } + ] + }, + { + "name": "arc", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:163538942" + ] + }, + { + "platform": "fofa", + "queries": [ + "icon_hash=\"163538942\"" + ] + } + ] + }, + { + "name": "exchange_server", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Outlook\"", + "vuln:CVE-2021-26855" + ] + } + ] + }, + { + "name": "admin-font-editor", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/admin-font-editor\"" + ] + } + ] + }, + { + "name": "vbulletin", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Powered By vBulletin\"", + "http.component:\"vBulletin\"" + ] + }, + { + "platform": "google", + "queries": [ + "intext:\"Powered By vBulletin\"" + ] + } + ] + }, + { + "name": "listserv", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"LISTSERV\"" + ] + } + ] + }, + { + "name": "jd_edwards_enterpriseone_tools", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "port:8999 product:\"Oracle WebLogic Server\"" + ] + } + ] + }, + { + "name": "metform_elementor_contact_form_builder", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:/wp-content/plugins/metform" + ] + } + ] + }, + { + "name": "bigant_server", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"BigAnt\"", + "http.html:\"bigant\"" + ] + } + ] + }, + { + "name": "wp_content_source_control", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/wp-source-control\"" + ] + } + ] + }, + { + "name": "rukovoditel", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-1499940355" + ] + } + ] + }, + { + "name": "wl-wn530hg4_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"WN530HG4\"" + ] + } + ] + }, + { + "name": "collaboration", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "app=\"zimbra-\u90ae\u4ef6\u7cfb\u7edf\"" + ] + }, + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:\"1624375939\"" + ] + } + ] + }, + { + "name": "nocodb", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-2017596142" + ] + } + ] + }, + { + "name": "home-assistant", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Home Assistant\"" + ] + } + ] + }, + { + "name": "coldfusion", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.component:\"Adobe ColdFusion\"" + ] + } + ] + }, + { + "name": "labkey_server", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "Server: Labkey" + ] + } + ] + }, + { + "name": "adminer", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Login - Adminer\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "app=\"Adminer\" && body=\"4.7.8\"" + ] + }, + { + "platform": "hunter", + "queries": [ + "app.name=\"Adminer\"&&web.body=\"4.7.8\"" + ] + } + ] + }, + { + "name": "gocd", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Create a pipeline - Go\",html:\"GoCD Version\"" + ] + } + ] + }, + { + "name": "tlr-2005ksh_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"TLR-2005KSH\"" + ] + } + ] + }, + { + "name": "mojoportal", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"mojoPortal\"" + ] + } + ] + }, + { + "name": "phpipam", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"phpIPAM IP address management\"" + ] + } + ] + }, + { + "name": "mypixs", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/mypixs\"" + ] + } + ] + }, + { + "name": "grafana", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Grafana\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "app=\"Grafana\"" + ] + } + ] + }, + { + "name": "airflow", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Apache Airflow\" || title:\"Airflow - DAGs\"", + "title:\"Airflow - DAGs\" || http.html:\"Apache Airflow\"", + "title:\"Sign In - Airflow\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "Apache Airflow" + ] + } + ] + }, + { + "name": "junos", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Juniper Web Device Manager\"" + ] + } + ] + }, + { + "name": "msnswitch_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-2073748627 || http.favicon.hash:-1721140132" + ] + } + ] + }, + { + "name": "dhtmlxspreadsheet", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:/wp-content/plugins/dhtmlxspreadsheet" + ] + } + ] + }, + { + "name": "contao", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Contao\"" + ] + } + ] + }, + { + "name": "solarview_compact_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:\"-244067125\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "body=\"SolarView Compact\" && title=\"Top\"" + ] + } + ] + }, + { + "name": "skysa_app_bar_integration_plugin", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/skysa-official/\"" + ] + } + ] + }, + { + "name": "joomla\\!", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.component:\"Joomla\"", + "html:\"Joomla! - Open Source Content Management\"" + ] + } + ] + }, + { + "name": "wn575a4_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Wi-Fi APP Login\"" + ] + } + ] + }, + { + "name": "aptus_web", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Intellian Aptus Web\"" + ] + } + ] + }, + { + "name": "vigorconnect", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"VigorConnect\"" + ] + } + ] + }, + { + "name": "workspace_one_uem_console", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "banner=\"/AirWatch/default.aspx\" || header=\"/AirWatch/default.aspx\"" + ] + } + ] + }, + { + "name": "superset", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:1582430156", + "html:\"Apache Superset\"" + ] + } + ] + }, + { + "name": "masacms", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "Generator: Masa CMS" + ] + } + ] + }, + { + "name": "manageengine_access_manager_plus", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"ManageEngine\"" + ] + } + ] + }, + { + "name": "spip", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"spip.php?page=backend\"" + ] + } + ] + }, + { + "name": "minio", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Minio Console\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "app=\"Minio\"" + ] + } + ] + }, + { + "name": "zip_attachments", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/zip-attachments\"" + ] + } + ] + }, + { + "name": "stageshow", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/stageshow/\"" + ] + } + ] + }, + { + "name": "fusion_middleware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Weblogic Application Server\"" + ] + } + ] + }, + { + "name": "voipmonitor", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"VoIPmonitor\"" + ] + } + ] + }, + { + "name": "thinkphp", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"ThinkPHP\"", + "title:\"Thinkphp\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "header=\"think_lang\"" + ] + } + ] + }, + { + "name": "wl-wn530h4_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-1350437236" + ] + } + ] + }, + { + "name": "jeecg-boot", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:1380908726" + ] + } + ] + }, + { + "name": "wp_custom_pages", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/wp-custom-pages/\"" + ] + } + ] + }, + { + "name": "tivoli_common_reporting", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"IBM WebSphere Portal\"" + ] + } + ] + }, + { + "name": "opsview", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Opsview\"" + ] + } + ] + }, + { + "name": "big-ip_access_policy_manager", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"BIG-IP®-+Redirect\" +\"Server\"" + ] + } + ] + }, + { + "name": "emerge_e3_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Linear eMerge\"" + ] + } + ] + }, + { + "name": "unified_threat_management", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Securepoint UTM\"" + ] + } + ] + }, + { + "name": "sharefile_storagezones_controller", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"ShareFile Storage Server\"" + ] + } + ] + }, + { + "name": "sap_web_application_server", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"SAP Business Server Pages Team\"" + ] + } + ] + }, + { + "name": "siteengine", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"SiteEngine\"" + ] + } + ] + }, + { + "name": "divi", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:/wp-content/plugins/revslider" + ] + } + ] + }, + { + "name": "hospital_management_system", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Hospital Management System\"" + ] + } + ] + }, + { + "name": "nagios_xi", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Nagios XI\"" + ] + } + ] + }, + { + "name": "impresscms", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"ImpressCMS\"" + ] + } + ] + }, + { + "name": "reqlogic", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"ReQlogic\"" + ] + } + ] + }, + { + "name": "servicedesk", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"ManageEngine\"" + ] + } + ] + }, + { + "name": "usg20-vpn_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"USG FLEX 100\"" + ] + } + ] + }, + { + "name": "keycloak", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"Keycloak\"" + ] + } + ] + }, + { + "name": "kkfileview", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"kkFileView\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "app=\"kkFileView\"" + ] + } + ] + }, + { + "name": "fortios", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "port:10443 http.favicon.hash:945408572", + "http.html:\"/remote/login\" \"xxxxxxxx\"" + ] + } + ] + }, + { + "name": "influxdb", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "InfluxDB" + ] + } + ] + }, + { + "name": "usg_flex_100w_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"USG FLEX 100\",\"USG FLEX 100w\",\"USG FLEX 200\",\"USG FLEX 500\",\"USG FLEX 700\",\"USG FLEX 50\",\"USG FLEX 50w\",\"ATP100\",\"ATP200\",\"ATP500\",\"ATP700\"" + ] + } + ] + }, + { + "name": "omnia_mpx_node_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Omnia MPX Node | Login\"" + ] + } + ] + }, + { + "name": "resin", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"Resin\"" + ] + } + ] + }, + { + "name": "jobsearch_wp_job_board", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"wp-content/plugins/wp-jobsearch\"" + ] + } + ] + }, + { + "name": "intouch_access_anywhere", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"InTouch Access Anywhere\"" + ] + } + ] + }, + { + "name": "webcenter_content", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/cs/idcplg\"" + ] + } + ] + }, + { + "name": "dokuwiki", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"DokuWiki\"" + ] + } + ] + }, + { + "name": "zywall_2_plus_internet_security_appliance_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Zywall2Plus\"" + ] + } + ] + }, + { + "name": "photo_station", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"QNAP\"" + ] + } + ] + }, + { + "name": "traggo", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "html:\"traggo\"" + ] + } + ] + }, + { + "name": "manageengine_adaudit_plus", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"ADAudit Plus\" || http.title:\"ManageEngine - ADManager Plus\"" + ] + } + ] + }, + { + "name": "tera-charts", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/tera-charts\"" + ] + } + ] + }, + { + "name": "dukapress", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/dukapress\"" + ] + } + ] + }, + { + "name": "heat-trackr", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/heat-trackr\"" + ] + } + ] + }, + { + "name": "evolved_programmable_network_manager", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"prime infrastructure\"" + ] + } + ] + }, + { + "name": "zzcms", + "type": "product", + "engines": [ + { + "platform": "fofa", + "queries": [ + "zzcms" + ] + } + ] + }, + { + "name": "colibri_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"Franklin Fueling Systems\"" + ] + } + ] + }, + { + "name": "sfos", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.title:\"Sophos\"" + ] + } + ] + }, + { + "name": "control_panel", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.favicon.hash:-476299640" + ] + } + ] + }, + { + "name": "se_html5_album_audio_player", + "type": "product", + "engines": [ + { + "platform": "google", + "queries": [ + "inurl:\"/wp-content/plugins/se-html5-album-audio-player\"" + ] + } + ] + }, + { + "name": "lgate-902_firmware", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "http.html:\"LGATE-902\"" + ] + } + ] + }, + { + "name": "web_appliance", + "type": "product", + "engines": [ + { + "platform": "shodan", + "queries": [ + "title:\"Sophos Web Appliance\"" + ] + }, + { + "platform": "fofa", + "queries": [ + "title=\"Sophos Web Appliance\"" + ] + } + ] + } +] \ No newline at end of file diff --git a/QUERIES.yaml b/QUERIES.yaml new file mode 100644 index 0000000..43e44eb --- /dev/null +++ b/QUERIES.yaml @@ -0,0 +1,2632 @@ +- name: clickdesk_live_support-live_chat_plugin + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/clickdesk-live-support-chat/" + +- name: reprise_license_manager + type: product + engines: + - platform: shodan + queries: + - http.html:"Reprise License Manager" + - http.html:"Reprise License" + - platform: google + queries: + - inurl:"/goforms/menu" + +- name: endpoint_manager_cloud_services_appliance + type: product + engines: + - platform: shodan + queries: + - title:"LANDesk(R) Cloud Services Appliance" + +- name: hoteldruid + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-1521640213 + +- name: nexusphp + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-582931176 + +- name: trafficanalyzer + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/trafficanalyzer" + +- name: mongo-express + type: product + engines: + - platform: shodan + queries: + - http.title:"Mongo Express" + +- name: openemr + type: product + engines: + - platform: shodan + queries: + - title:"OpenEMR" + +- name: 11n_firmware + type: product + engines: + - platform: fofa + queries: + - product=="Tenda-11N-Wireless-AP" + - platform: shodan + queries: + - http.title:"Tenda 11N" + +- name: spacelogic_c-bus_home_controller_firmware + type: product + engines: + - platform: shodan + queries: + - html:"SpaceLogic C-Bus" + +- name: sysaid + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:1540720428 + +- name: phpcollab + type: product + engines: + - platform: shodan + queries: + - http.title:"PhpCollab" + +- name: 74cms + type: product + engines: + - platform: fofa + queries: + - app="74cms" + - platform: shodan + queries: + - http.html:"74cms" + +- name: flatpress + type: product + engines: + - platform: shodan + queries: + - http.html:"Flatpress" + +- name: hd-network_real-time_monitoring_system + type: product + engines: + - platform: google + queries: + - intitle:"HD-Network Real-time Monitoring System V2.0" + +- name: mcms + type: product + engines: + - platform: fofa + queries: + - icon_hash="1464851260" + - platform: shodan + queries: + - http.favicon.hash:1464851260 + +- name: terramaster_operating_system + type: product + engines: + - platform: shodan + queries: + - TerraMaster + +- name: ssl_vpn + type: product + engines: + - platform: shodan + queries: + - http.html_hash:510586239 + +- name: artica_proxy + type: product + engines: + - platform: shodan + queries: + - http.html:"Artica" + +- name: ios + type: product + engines: + - platform: shodan + queries: + - product:"Cisco IOS http config" && 200 + +- name: dapr_dashboard + type: product + engines: + - platform: shodan + queries: + - http.title:"Dapr Dashboard" + +- name: webpanel + type: product + engines: + - platform: shodan + queries: + - http.title:"Login | Control WebPanel" + +- name: activehelper_livehelp_live_chat + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/activehelper-livehelp" + +- name: monstra_cms + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:419828698 + +- name: metabase + type: product + engines: + - platform: fofa + queries: + - app="Metabase" + - platform: shodan + queries: + - http.title:"Metabase" + +- name: kavita + type: product + engines: + - platform: shodan + queries: + - title:"kavita" + +- name: aspera_faspex + type: product + engines: + - platform: shodan + queries: + - html:"Aspera Faspex" + +- name: academy_learning_management_system + type: product + engines: + - platform: google + queries: + - intext:"Study any topic, anytime" + +- name: jboss_enterprise_application_platform + type: product + engines: + - platform: shodan + queries: + - title:"JBoss" + +- name: featurific-for-wordpress + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/featurific-for-wordpress" + +- name: anti-plagiarism + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/anti-plagiarism" + +- name: jenkins + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:81586312 + +- name: qdpm + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:762074255 + +- name: cobranca + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:876876147 + +- name: http_server + type: product + engines: + - platform: shodan + queries: + - Apache 2.4.49 + +- name: candidats + type: product + engines: + - platform: shodan + queries: + - http.html:"CandidATS" + +- name: gibbon + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-165631681 + - platform: fofa + queries: + - icon_hash="-165631681" + +- name: infusionsoft_gravity_forms + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/infusionsoft/Infusionsoft/" + +- name: maximo_asset_management + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-399298961 + +- name: r-seenet + type: product + engines: + - platform: shodan + queries: + - http.html:"R-SeeNet" + +- name: geoserver + type: product + engines: + - platform: shodan + queries: + - title:"GeoServer" + - title:"geoserver" + - platform: fofa + queries: + - app="GeoServer" + +- name: avideo + type: product + engines: + - platform: shodan + queries: + - http.html:"AVideo" + +- name: h-sphere + type: product + engines: + - platform: shodan + queries: + - title:"Parallels H-Sphere + - title:"h-sphere" + +- name: swim_team + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/wp-swimteam" + +- name: dotcms + type: product + engines: + - platform: shodan + queries: + - http.title:"dotCMS" + +- name: high_cms + type: product + engines: + - platform: shodan + queries: + - title:"HighMail" + - platform: fofa + queries: + - title="HighMail" + +- name: workforce_optimization + type: product + engines: + - platform: shodan + queries: + - title:"Verint Sign-in" + +- name: copyright_proof + type: product + engines: + - platform: google + queries: + - inurl:/wp-content/plugins/digiproveblog + +- name: essential_addons_for_elementor + type: product + engines: + - platform: google + queries: + - inurl:/wp-content/plugins/essential-addons-for-elementor-lite + +- name: lightdash + type: product + engines: + - platform: shodan + queries: + - title:"Lightdash" + +- name: tikiwiki_cms\/groupware + type: product + engines: + - platform: shodan + queries: + - http.html:"tiki wiki" + +- name: advanced_dewplayer + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/advanced-dewplayer/" + +- name: icinga_web_2 + type: product + engines: + - platform: shodan + queries: + - title:"Icinga" + +- name: mlflow + type: product + engines: + - platform: fofa + queries: + - app="MLflow" + - platform: shodan + queries: + - http.title:"mlflow" + +- name: forget_about_shortcode_buttons + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/forget-about-shortcode-buttons" + +- name: opendreambox + type: product + engines: + - platform: shodan + queries: + - title:"Dreambox WebControl" + +- name: rv160_firmware + type: product + engines: + - platform: shodan + queries: + - http.html:"Cisco rv340" + +- name: appliance_base_software + type: product + engines: + - platform: google + queries: + - '"BeyondTrust" "Redistribution Prohibited"' + - platform: shodan + queries: + - 'set-cookie: nsbase_session' + +- name: cliniccases + type: product + engines: + - platform: shodan + queries: + - http.title:"ClinicCases",html:"/cliniccases/" + +- name: identity_manager + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-1250474341 + - platform: fofa + queries: + - app="vmware-Workspace-ONE-Access" || app="vmware-Identity-Manager" || app="vmware-vRealize" + +- name: zk_framework + type: product + engines: + - platform: shodan + queries: + - http.title:"Server backup manager" + +- name: page-layout-builder + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/page-layout-builder" + +- name: show_all_comments + type: product + engines: + - platform: publicwww + queries: + - /wp-content/plugins/show-all-comments-in-one-page + +- name: vrealize_network_insight + type: product + engines: + - platform: fofa + queries: + - title="VMware vRealize Network Insight" + - platform: shodan + queries: + - title:"VMware vRealize Network Insight" + - title:"VMware Aria Operations" + +- name: obsidian + type: product + engines: + - platform: fofa + queries: + - title="Plesk Obsidian" + - platform: shodan + queries: + - title:"Plesk Obsidian" + +- name: atutor + type: product + engines: + - platform: shodan + queries: + - http.html:"Atutor" + +- name: weiphp + type: product + engines: + - platform: shodan + queries: + - http.html:"WeiPHP5.0" + +- name: atmail + type: product + engines: + - platform: shodan + queries: + - http.html:"Powered by Atmail" + - http.html:"atmail" + +- name: e-business_suite + type: product + engines: + - platform: shodan + queries: + - http.title:"Login" "X-ORACLE-DMS-ECID" 200 + +- name: apisix + type: product + engines: + - platform: fofa + queries: + - title="Apache APISIX Dashboard" + - platform: shodan + queries: + - title:"Apache APISIX Dashboard" + +- name: energy_communication_unit_firmware + type: product + engines: + - platform: shodan + queries: + - title:"Altenergy Power Control Software" + - platform: google + queries: + - intitle:"Altenergy Power Control Software" + +- name: powerjob + type: product + engines: + - platform: fofa + queries: + - app="PowerJob" + - platform: shodan + queries: + - html:"PowerJob" + +- name: robotcpa + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/robotcpa" + +- name: zedna_ebook_download + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/ebook-download" + +- name: spotweb + type: product + engines: + - platform: shodan + queries: + - title:"SpotWeb - overview" + +- name: jai-ext + type: product + engines: + - platform: shodan + queries: + - /geoserver/ + +- name: basic_pdu_firmware + type: product + engines: + - platform: shodan + queries: + - http.html:"Powertek" + +- name: netweaver + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-266008933 + +- name: dedecms + type: product + engines: + - platform: shodan + queries: + - http.html:"DedeCms" + - platform: fofa + queries: + - app="DedeCMS" + +- name: opentsdb + type: product + engines: + - platform: shodan + queries: + - html:"OpenTSDB" + +- name: jellyfin + type: product + engines: + - platform: fofa + queries: + - title="Jellyfin" || body="http://jellyfin.media" + - platform: shodan + queries: + - http.html:"Jellyfin" + - http.title:"Jellyfin" + +- name: node-red-dashboard + type: product + engines: + - platform: shodan + queries: + - title:"Node-RED" + - platform: fofa + queries: + - title="Node-RED" + +- name: api_manager + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:1398055326 + - platform: google + queries: + - inurl:"carbon/admin/login" + +- name: fortinac + type: product + engines: + - platform: shodan + queries: + - title:"FortiNAC" + +- name: grand_flagallery + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/flash-album-gallery" + +- name: flexible_custom_post_type + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/flexible-custom-post-type/" + +- name: dashboard + type: product + engines: + - platform: shodan + queries: + - product:"Kubernetes" + +- name: timesheet_next_gen + type: product + engines: + - platform: google + queries: + - inurl:"/timesheet/login.php" + +- name: erxes + type: product + engines: + - platform: shodan + queries: + - http.title:"erxes" + +- name: dir-615_firmware + type: product + engines: + - platform: shodan + queries: + - http.title:"Roteador Wireless" + +- name: ghost + type: product + engines: + - platform: shodan + queries: + - http.component:"Ghost" + +- name: yousaytoo + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/yousaytoo-auto-publishing-plugin" + +- name: compact_5500r_firmware + type: product + engines: + - platform: fofa + queries: + - '"auerswald"' + +- name: i3geo + type: product + engines: + - platform: shodan + queries: + - http.html:"i3geo" + +- name: spark + type: product + engines: + - platform: shodan + queries: + - title:"Spark Master at" + +- name: free5gc + type: product + engines: + - platform: shodan + queries: + - http.title:"free5GC Web Console" + +- name: sg200-50_firmware + type: product + engines: + - platform: shodan + queries: + - /config/log_off_page.htm + - platform: censys + queries: + - 'services.http.response.headers.location: /config/log_off_page.htm' + +- name: gitlab_hook + type: product + engines: + - platform: shodan + queries: + - http.title:"GitLab" + +- name: aurall_rec_monitor + type: product + engines: + - platform: shodan + queries: + - html:"AURALL" + +- name: cachet + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-1606065523 + +- name: shardingsphere_elasticjob-ui + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:816588900 + +- name: kubeview + type: product + engines: + - platform: shodan + queries: + - http.title:"KubeView" + +- name: cpanel + type: product + engines: + - platform: shodan + queries: + - title:"cPanel" + +- name: struts + type: product + engines: + - platform: shodan + queries: + - html:"Struts Problem Report" + - html:"Apache Struts" + +- name: wordpress + type: product + engines: + - platform: shodan + queries: + - http.component:"WordPress" + +- name: node-red-contrib-huemagic + type: product + engines: + - platform: shodan + queries: + - title:"NODE-RED" + +- name: car_rental_management_system + type: product + engines: + - platform: shodan + queries: + - http.html:"Car Rental Management System" + +- name: appwrite + type: product + engines: + - platform: shodan + queries: + - title:"Sign In - Appwrite" + +- name: count_per_day + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/count-per-day" + +- name: magmi + type: product + engines: + - platform: shodan + queries: + - http.component:"Magento" + +- name: quixplorer + type: product + engines: + - platform: google + queries: + - intitle:"My Download Server" + - platform: shodan + queries: + - http.title:"My Download Server" + +- name: ofbiz + type: product + engines: + - platform: shodan + queries: + - OFBiz.Visitor= + - platform: fofa + queries: + - app="Apache_OFBiz" + +- name: central_authentication_service + type: product + engines: + - platform: shodan + queries: + - http.title:'CAS - Central Authentication Service' + +- name: casdoor + type: product + engines: + - platform: shodan + queries: + - http.title:"Casdoor" + +- name: opencats + type: product + engines: + - platform: shodan + queries: + - title:"OpenCATS" + - title:"opencats" + +- name: pyload + type: product + engines: + - platform: shodan + queries: + - html:"pyload" + +- name: wp-planet + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/wp-planet" + +- name: uag2100_firmware + type: product + engines: + - platform: shodan + queries: + - http.title:"ZyWall" + +- name: cute_editor + type: product + engines: + - platform: shodan + queries: + - http.component:"ASP.NET" + +- name: webctrl + type: product + engines: + - platform: shodan + queries: + - html:"/_common/lvl5/dologin.jsp" + +- name: ind780_firmware + type: product + engines: + - platform: google + queries: + - inurl:excalweb.dll + - platform: shodan + queries: + - IND780 + +- name: experience_platform + type: product + engines: + - platform: shodan + queries: + - http.title:"SiteCore" + +- name: appcms + type: product + engines: + - platform: shodan + queries: + - http.html:"Powerd by AppCMS" + +- name: livezilla + type: product + engines: + - platform: shodan + queries: + - http.html:LiveZilla + +- name: pypiserver + type: product + engines: + - platform: shodan + queries: + - html:"pypiserver" + +- name: microweber + type: product + engines: + - platform: shodan + queries: + - http.html:"microweber" + - http.favicon.hash:780351152 + +- name: metersphere + type: product + engines: + - platform: shodan + queries: + - html:"metersphere" + - platform: fofa + queries: + - title="MeterSphere" + +- name: drawio + type: product + engines: + - platform: shodan + queries: + - http.title:"Flowchart Maker" + +- name: open_edx + type: product + engines: + - platform: shodan + queries: + - http.html:"Open edX" + +- name: cacti + type: product + engines: + - platform: shodan + queries: + - title:"Login to Cacti" + +- name: stagil_navigation + type: product + engines: + - platform: shodan + queries: + - title:Jira + +- name: dolibarr_erp\/crm + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:440258421 + +- name: wsecure + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/wsecure" + +- name: git + type: product + engines: + - platform: shodan + queries: + - X-Jenkins + +- name: dispatcher + type: product + engines: + - platform: shodan + queries: + - http.component:"Adobe Experience Manager" + +- name: kylin + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-186961397 + +- name: ispy + type: product + engines: + - platform: shodan + queries: + - http.html:"iSpy is running" + +- name: goanywhere_managed_file_transfer + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:1484947000 + +- name: woocs + type: product + engines: + - platform: google + queries: + - inurl:"wp-content/plugins/woocommerce-currency-switcher" + +- name: manageengine_desktop_central + type: product + engines: + - platform: fofa + queries: + - app="ZOHO-ManageEngine-Desktop" + +- name: mobile + type: product + engines: + - platform: fofa + queries: + - title="Sophos Mobile" + - platform: shodan + queries: + - http.favicon.hash:-1274798165 + +- name: category-grid-view-gallery + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/category-grid-view-gallery" + +- name: ds-2cd2026g2-iu\/sl_firmware + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:999357577 + +- name: papercut_mf + type: product + engines: + - platform: shodan + queries: + - http.html:"PaperCut" + +- name: gitlab + type: product + engines: + - platform: shodan + queries: + - title:"Gitlab" + +- name: video_gallery + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/dzs-videogallery" + +- name: cockpit + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:688609340 + +- name: fudforum + type: product + engines: + - platform: shodan + queries: + - 'http.html:"Powered by: FUDforum"' + - html:"FUDforum" + +- name: serv-u + type: product + engines: + - platform: shodan + queries: + - product:"Rhinosoft Serv-U httpd" + +- name: webmin + type: product + engines: + - platform: shodan + queries: + - title:"Webmin" + +- name: sassy_social_share + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/sassy-social-share" + +- name: gogs + type: product + engines: + - platform: shodan + queries: + - title:"Sign In - Gogs" + +- name: confluence + type: product + engines: + - platform: shodan + queries: + - http.component:"Atlassian Confluence" + +- name: hdw-tube + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/hdw-tube" + +- name: infusionsoft + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/infusionsoft" + +- name: wn530hg4_firmware + type: product + engines: + - platform: shodan + queries: + - http.html:"Wavlink" + +- name: teampass + type: product + engines: + - platform: shodan + queries: + - http.html:"teampass" + +- name: extreme_management_center + type: product + engines: + - platform: shodan + queries: + - title:"Extreme Management Center" + +- name: roxy-wi + type: product + engines: + - platform: shodan + queries: + - http.html:"Roxy-WI" + +- name: laravel_filemanager + type: product + engines: + - platform: shodan + queries: + - http.html:"Laravel Filemanager" + +- name: imgproxy + type: product + engines: + - platform: shodan + queries: + - 'Server: imgproxy' + +- name: uploader + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/uploader" + +- name: http_file_server + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:2124459909 + +- name: mail_server + type: product + engines: + - platform: shodan + queries: + - title:"icewarp" + - platform: google + queries: + - Powered By IceWarp 10.4.4 + +- name: tomcat + type: product + engines: + - platform: shodan + queries: + - title:"Apache Tomcat" + - html:"Apache Tomcat" + +- name: e1_zoom_firmware + type: product + engines: + - platform: shodan + queries: + - http.title:"Reolink" + +- name: sv-cpt-mc310_firmware + type: product + engines: + - platform: shodan + queries: + - http.html:"SolarView Compact" + +- name: mura_cms + type: product + engines: + - platform: shodan + queries: + - 'Generator: Musa CMS' + +- name: phpmyadmin + type: product + engines: + - platform: shodan + queries: + - title:"phpmyadmin" + - http.component:"phpmyadmin" + - platform: fofa + queries: + - body="pma_servername" && body="4.8.4" + - platform: hunter + queries: + - app.name="phpMyAdmin"&&web.body="pma_servername"&&web.body="4.8.4" + +- name: glpi + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:"-1474875778" + +- name: syncserver_s650_firmware + type: product + engines: + - platform: shodan + queries: + - html:"Symmetricom SyncServer" + +- name: repetier-server + type: product + engines: + - platform: shodan + queries: + - title:"Repetier-Server" + - platform: fofa + queries: + - title="Repetier-Server" + +- name: advanced_text_widget_plugin + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/advanced-text-widget" + +- name: ninja + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/shortcode-ninja" + +- name: superwebmailer + type: product + engines: + - platform: shodan + queries: + - title:"SuperWebMailer" + +- name: thruk + type: product + engines: + - platform: shodan + queries: + - http.html:"Thruk" + +- name: web_to_print_shop\ + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/udraw" + +- name: gallery + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/gallery-album/" + +- name: simple_ajax_chat + type: product + engines: + - platform: google + queries: + - inurl:/wp-content/plugins/simple-ajax-chat/ + +- name: wp-symposium + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/wp-symposium" + +- name: gitea + type: product + engines: + - platform: shodan + queries: + - html:"Powered by Gitea Version" + - title:"Gitea" + +- name: weblogic_server + type: product + engines: + - platform: shodan + queries: + - title:"Oracle PeopleSoft Sign-in" + +- name: opensis + type: product + engines: + - platform: shodan + queries: + - http.title:"openSIS" + +- name: trilium + type: product + engines: + - platform: shodan + queries: + - title:"Trilium Notes" + +- name: oauth + type: product + engines: + - platform: shodan + queries: + - http.component:"Atlassian Jira" + +- name: roxy_fileman + type: product + engines: + - platform: google + queries: + - intitle:"Roxy file manager" + +- name: revive_adserver + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:106844876 + +- name: paid_memberships_pro + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/paid-memberships-pro" + +- name: datepicker_calendar + type: product + engines: + - platform: google + queries: + - intitle:TriConsole.com - PHP Calendar Date Picker + +- name: testrail + type: product + engines: + - platform: shodan + queries: + - http.html:"TestRail" + +- name: ex1200t_firmware + type: product + engines: + - platform: shodan + queries: + - title:"TOTOLINK" + +- name: wpb_show_core + type: product + engines: + - platform: google + queries: + - inurl:wp-content/plugins/wpb-show-core/modules/jplayer_new/jplayer_twitter_ver_1.php + +- name: navis_documentcloud + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/navis-documentcloud" + +- name: tl-wr841n_\(9.0\)_firmware + type: product + engines: + - platform: shodan + queries: + - http.title:"TP-LINK" + +- name: bibliopac + type: product + engines: + - platform: shodan + queries: + - title:"Bibliopac" + +- name: blogengine.net + type: product + engines: + - platform: shodan + queries: + - http.html:"Blogengine.net" + +- name: pcoweb_card_firmware + type: product + engines: + - platform: shodan + queries: + - http.html:"pCOWeb" + +- name: openam + type: product + engines: + - platform: shodan + queries: + - http.title:"OpenAM" + +- name: wpqa_builder + type: product + engines: + - platform: google + queries: + - inurl:/wp-content/plugins/wpqa + +- name: ruckus_wireless_admin + type: product + engines: + - platform: shodan + queries: + - title:"ruckus wireless" + - platform: fofa + queries: + - title="ruckus wireless" + +- name: supervisor + type: product + engines: + - platform: shodan + queries: + - http.title:"Supervisor Status" + +- name: kentico_cms + type: product + engines: + - platform: google + queries: + - intitle:"kentico database setup" + +- name: orchid_core_vms + type: product + engines: + - platform: shodan + queries: + - http.title:"Orchid Core VMS" + +- name: gitblit + type: product + engines: + - platform: shodan + queries: + - http.html:"Gitblit" + +- name: ethos_identity + type: product + engines: + - platform: shodan + queries: + - html:"Ellucian Company" + - platform: google + queries: + - login with ellucian ethos identity + +- name: securitygateway + type: product + engines: + - platform: google + queries: + - inurl:"/SecurityGateway.dll" + +- name: drupal + type: product + engines: + - platform: shodan + queries: + - http.component:"drupal" + +- name: defa-online-image-protector + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/defa-online-image-protector" + +- name: tooltip_glossary + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/enhanced-tooltipglossary" + +- name: linear_emerge_essential_firmware + type: product + engines: + - platform: shodan + queries: + - http.title:"eMerge" + - title:"eMerge" + +- name: vantara_pentaho + type: product + engines: + - platform: shodan + queries: + - Pentaho + +- name: jeecg + type: product + engines: + - platform: shodan + queries: + - title:"Jeecg-Boot" + - platform: fofa + queries: + - title="JeecgBoot 企业级低代码平台" + +- name: zabbix + type: product + engines: + - platform: fofa + queries: + - app="ZABBIX-监控系统" && body="saml" + - platform: shodan + queries: + - http.favicon.hash:892542951 + +- name: rpcms + type: product + engines: + - platform: shodan + queries: + - http.html:"RPCMS" + +- name: ilias + type: product + engines: + - platform: shodan + queries: + - http.html:"ILIAS" + +- name: sonicos + type: product + engines: + - platform: google + queries: + - inurl:"auth.html" intitle:"SonicWall" + +- name: sdt-cs3b1_firmware + type: product + engines: + - platform: shodan + queries: + - html:"SDT-CW3B1" + +- name: wp_visitor_statistics + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/wp-stats-manager" + +- name: pmb + type: product + engines: + - platform: shodan + queries: + - http.html:"PMB Group" + - http.favicon.hash:1469328760 + +- name: openfire + type: product + engines: + - platform: shodan + queries: + - title:"openfire" + +- name: axis2 + type: product + engines: + - platform: shodan + queries: + - http.html:"Apache Axis" + +- name: cocoon + type: product + engines: + - platform: shodan + queries: + - http.html:"Apache Cocoon" + +- name: dir-816l_firmware + type: product + engines: + - platform: shodan + queries: + - html:"DIR-816L" + - http.html:"DIR-816L" + +- name: aria_operations_for_logs + type: product + engines: + - platform: shodan + queries: + - title:"vRealize Log Insight" + +- name: squidex + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:1099097618 + +- name: active_management_technology_firmware + type: product + engines: + - platform: shodan + queries: + - title:"Active Management Technology" + +- name: knowledge_warehouse + type: product + engines: + - platform: zoomeye + queries: + - +app:"SAP NetWeaver Application Server httpd + +- name: dt80_dex_firmware + type: product + engines: + - platform: shodan + queries: + - http.title:"datataker" + +- name: phpmychat-plus + type: product + engines: + - platform: google + queries: + - inurl:"/plus/pass_reset.php" + +- name: fancy_product_designer + type: product + engines: + - platform: google + queries: + - inurl:“/wp-content/plugins/fancy-product-designer” + +- name: gateway + type: product + engines: + - platform: shodan + queries: + - title:"Citrix Gateway" + +- name: moveit_cloud + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:989289239 + +- name: vantara_pentaho_business_analytics_server + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:1749354953 + +- name: adminimize + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/adminimize/" + +- name: vmg1312-b10d_firmware + type: product + engines: + - platform: shodan + queries: + - http.html:"VMG1312-B10D" + +- name: netscaler_sd-wan + type: product + engines: + - platform: shodan + queries: + - http.title:"Citrix SD-WAN" + +- name: php_curl_class + type: product + engines: + - platform: google + queries: + - inurl:"/php-curl-test/post_file_path_upload.php" + +- name: genieacs + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-2098066288 + +- name: u8\+ + type: product + engines: + - platform: google + queries: + - inurl:/u8sl/WebHelp + +- name: nvrsolo_firmware + type: product + engines: + - platform: shodan + queries: + - http.html:"NVRsolo" + +- name: e-search + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/e-search" + +- name: indexisto + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/indexisto" + +- name: tew-827dru_firmware + type: product + engines: + - platform: shodan + queries: + - http.html:"TEW-827DRU" + +- name: mautic + type: product + engines: + - platform: shodan + queries: + - title:"Mautic" + +- name: sma1000_firmware + type: product + engines: + - platform: shodan + queries: + - title:"Appliance Management Console Login" + +- name: phppgadmin + type: product + engines: + - platform: shodan + queries: + - http.title:"phpPgAdmin" + +- name: alert_before_you_post + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/alert-before-your-post" + +- name: duplicator + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/duplicator" + - inurl:/backups-dup-lite/dup-installer/ + +- name: mail-masta + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/mail-masta" + +- name: sugarcrm + type: product + engines: + - platform: shodan + queries: + - http.html:"SugarCRM Inc. All Rights Reserved" + - platform: google + queries: + - intext:"SugarCRM Inc. All Rights Reserved" + +- name: redash + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:698624197 + +- name: eshop_-_ecommerce_\/_store_website + type: product + engines: + - platform: shodan + queries: + - http.html:"eShop - Multipurpose Ecommerce" + +- name: woocommerce_payments + type: product + engines: + - platform: google + queries: + - inurl:/wp-content/plugins/woocommerce-payments + - platform: publicwww + queries: + - /wp-content/plugins/woocommerce-payments + +- name: laravel + type: product + engines: + - platform: fofa + queries: + - app="Laravel-Framework" + - platform: shodan + queries: + - Laravel-Framework + +- name: rocket.chat + type: product + engines: + - platform: shodan + queries: + - http.title:"Rocket.Chat" + +- name: access_manager + type: product + engines: + - platform: fofa + queries: + - body="/oam/pages/css/login_page.css" + - platform: shodan + queries: + - http.title:"Oracle Access Management" + +- name: wapples + type: product + engines: + - platform: shodan + queries: + - http.title:"Intelligent WAPPLES" + +- name: servicenow + type: product + engines: + - platform: shodan + queries: + - http.title:"ServiceNow" + +- name: bitbucket + type: product + engines: + - platform: shodan + queries: + - http.component:"BitBucket" + +- name: 2-click-social-media-buttons + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/2-click-socialmedia-buttons" + +- name: next.js + type: product + engines: + - platform: shodan + queries: + - html:"/_next/static" + +- name: linear_emerge_e3_access_control_firmware + type: product + engines: + - platform: shodan + queries: + - http.html:"Linear eMerge" + +- name: arc + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:163538942 + - platform: fofa + queries: + - icon_hash="163538942" + +- name: exchange_server + type: product + engines: + - platform: shodan + queries: + - http.title:"Outlook" + - vuln:CVE-2021-26855 + +- name: admin-font-editor + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/admin-font-editor" + +- name: vbulletin + type: product + engines: + - platform: shodan + queries: + - title:"Powered By vBulletin" + - http.component:"vBulletin" + - platform: google + queries: + - intext:"Powered By vBulletin" + +- name: listserv + type: product + engines: + - platform: shodan + queries: + - http.html:"LISTSERV" + +- name: jd_edwards_enterpriseone_tools + type: product + engines: + - platform: shodan + queries: + - port:8999 product:"Oracle WebLogic Server" + +- name: metform_elementor_contact_form_builder + type: product + engines: + - platform: google + queries: + - inurl:/wp-content/plugins/metform + +- name: bigant_server + type: product + engines: + - platform: shodan + queries: + - http.html:"BigAnt" + - http.html:"bigant" + +- name: wp_content_source_control + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/wp-source-control" + +- name: rukovoditel + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-1499940355 + +- name: wl-wn530hg4_firmware + type: product + engines: + - platform: shodan + queries: + - http.html:"WN530HG4" + +- name: collaboration + type: product + engines: + - platform: fofa + queries: + - app="zimbra-邮件系统" + - platform: shodan + queries: + - http.favicon.hash:"1624375939" + +- name: nocodb + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-2017596142 + +- name: home-assistant + type: product + engines: + - platform: shodan + queries: + - title:"Home Assistant" + +- name: coldfusion + type: product + engines: + - platform: shodan + queries: + - http.component:"Adobe ColdFusion" + +- name: labkey_server + type: product + engines: + - platform: shodan + queries: + - 'Server: Labkey' + +- name: adminer + type: product + engines: + - platform: shodan + queries: + - title:"Login - Adminer" + - platform: fofa + queries: + - app="Adminer" && body="4.7.8" + - platform: hunter + queries: + - app.name="Adminer"&&web.body="4.7.8" + +- name: gocd + type: product + engines: + - platform: shodan + queries: + - http.title:"Create a pipeline - Go",html:"GoCD Version" + +- name: tlr-2005ksh_firmware + type: product + engines: + - platform: shodan + queries: + - http.html:"TLR-2005KSH" + +- name: mojoportal + type: product + engines: + - platform: shodan + queries: + - html:"mojoPortal" + +- name: phpipam + type: product + engines: + - platform: shodan + queries: + - html:"phpIPAM IP address management" + +- name: mypixs + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/mypixs" + +- name: grafana + type: product + engines: + - platform: shodan + queries: + - title:"Grafana" + - platform: fofa + queries: + - app="Grafana" + +- name: airflow + type: product + engines: + - platform: shodan + queries: + - http.html:"Apache Airflow" || title:"Airflow - DAGs" + - title:"Airflow - DAGs" || http.html:"Apache Airflow" + - title:"Sign In - Airflow" + - platform: fofa + queries: + - Apache Airflow + +- name: junos + type: product + engines: + - platform: shodan + queries: + - title:"Juniper Web Device Manager" + +- name: msnswitch_firmware + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-2073748627 || http.favicon.hash:-1721140132 + +- name: dhtmlxspreadsheet + type: product + engines: + - platform: google + queries: + - inurl:/wp-content/plugins/dhtmlxspreadsheet + +- name: contao + type: product + engines: + - platform: shodan + queries: + - title:"Contao" + +- name: solarview_compact_firmware + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:"-244067125" + - platform: fofa + queries: + - body="SolarView Compact" && title="Top" + +- name: skysa_app_bar_integration_plugin + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/skysa-official/" + +- name: joomla\! + type: product + engines: + - platform: shodan + queries: + - http.component:"Joomla" + - html:"Joomla! - Open Source Content Management" + +- name: wn575a4_firmware + type: product + engines: + - platform: shodan + queries: + - http.title:"Wi-Fi APP Login" + +- name: aptus_web + type: product + engines: + - platform: shodan + queries: + - http.title:"Intellian Aptus Web" + +- name: vigorconnect + type: product + engines: + - platform: shodan + queries: + - http.html:"VigorConnect" + +- name: workspace_one_uem_console + type: product + engines: + - platform: fofa + queries: + - banner="/AirWatch/default.aspx" || header="/AirWatch/default.aspx" + +- name: superset + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:1582430156 + - html:"Apache Superset" + +- name: masacms + type: product + engines: + - platform: shodan + queries: + - 'Generator: Masa CMS' + +- name: manageengine_access_manager_plus + type: product + engines: + - platform: shodan + queries: + - title:"ManageEngine" + +- name: spip + type: product + engines: + - platform: shodan + queries: + - html:"spip.php?page=backend" + +- name: minio + type: product + engines: + - platform: shodan + queries: + - title:"Minio Console" + - platform: fofa + queries: + - app="Minio" + +- name: zip_attachments + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/zip-attachments" + +- name: stageshow + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/stageshow/" + +- name: fusion_middleware + type: product + engines: + - platform: shodan + queries: + - http.html:"Weblogic Application Server" + +- name: voipmonitor + type: product + engines: + - platform: shodan + queries: + - http.title:"VoIPmonitor" + +- name: thinkphp + type: product + engines: + - platform: shodan + queries: + - title:"ThinkPHP" + - title:"Thinkphp" + - platform: fofa + queries: + - header="think_lang" + +- name: wl-wn530h4_firmware + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-1350437236 + +- name: jeecg-boot + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:1380908726 + +- name: wp_custom_pages + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/wp-custom-pages/" + +- name: tivoli_common_reporting + type: product + engines: + - platform: shodan + queries: + - http.html:"IBM WebSphere Portal" + +- name: opsview + type: product + engines: + - platform: shodan + queries: + - title:"Opsview" + +- name: big-ip_access_policy_manager + type: product + engines: + - platform: shodan + queries: + - http.title:"BIG-IP®-+Redirect" +"Server" + +- name: emerge_e3_firmware + type: product + engines: + - platform: shodan + queries: + - http.title:"Linear eMerge" + +- name: unified_threat_management + type: product + engines: + - platform: shodan + queries: + - title:"Securepoint UTM" + +- name: sharefile_storagezones_controller + type: product + engines: + - platform: shodan + queries: + - title:"ShareFile Storage Server" + +- name: sap_web_application_server + type: product + engines: + - platform: shodan + queries: + - html:"SAP Business Server Pages Team" + +- name: siteengine + type: product + engines: + - platform: shodan + queries: + - html:"SiteEngine" + +- name: divi + type: product + engines: + - platform: google + queries: + - inurl:/wp-content/plugins/revslider + +- name: hospital_management_system + type: product + engines: + - platform: shodan + queries: + - http.html:"Hospital Management System" + +- name: nagios_xi + type: product + engines: + - platform: shodan + queries: + - title:"Nagios XI" + +- name: impresscms + type: product + engines: + - platform: shodan + queries: + - http.html:"ImpressCMS" + +- name: reqlogic + type: product + engines: + - platform: shodan + queries: + - http.html:"ReQlogic" + +- name: servicedesk + type: product + engines: + - platform: shodan + queries: + - http.title:"ManageEngine" + +- name: usg20-vpn_firmware + type: product + engines: + - platform: shodan + queries: + - title:"USG FLEX 100" + +- name: keycloak + type: product + engines: + - platform: shodan + queries: + - html:"Keycloak" + +- name: kkfileview + type: product + engines: + - platform: shodan + queries: + - http.html:"kkFileView" + - platform: fofa + queries: + - app="kkFileView" + +- name: fortios + type: product + engines: + - platform: shodan + queries: + - port:10443 http.favicon.hash:945408572 + - http.html:"/remote/login" "xxxxxxxx" + +- name: influxdb + type: product + engines: + - platform: shodan + queries: + - InfluxDB + +- name: usg_flex_100w_firmware + type: product + engines: + - platform: shodan + queries: + - title:"USG FLEX 100","USG FLEX 100w","USG FLEX 200","USG FLEX 500","USG FLEX 700","USG FLEX 50","USG FLEX 50w","ATP100","ATP200","ATP500","ATP700" + +- name: omnia_mpx_node_firmware + type: product + engines: + - platform: shodan + queries: + - http.title:"Omnia MPX Node | Login" + +- name: resin + type: product + engines: + - platform: shodan + queries: + - html:"Resin" + +- name: jobsearch_wp_job_board + type: product + engines: + - platform: google + queries: + - inurl:"wp-content/plugins/wp-jobsearch" + +- name: intouch_access_anywhere + type: product + engines: + - platform: shodan + queries: + - http.html:"InTouch Access Anywhere" + +- name: webcenter_content + type: product + engines: + - platform: google + queries: + - inurl:"/cs/idcplg" + +- name: dokuwiki + type: product + engines: + - platform: shodan + queries: + - http.title:"DokuWiki" + +- name: zywall_2_plus_internet_security_appliance_firmware + type: product + engines: + - platform: shodan + queries: + - http.title:"Zywall2Plus" + +- name: photo_station + type: product + engines: + - platform: shodan + queries: + - title:"QNAP" + +- name: traggo + type: product + engines: + - platform: shodan + queries: + - html:"traggo" + +- name: manageengine_adaudit_plus + type: product + engines: + - platform: shodan + queries: + - http.title:"ADAudit Plus" || http.title:"ManageEngine - ADManager Plus" + +- name: tera-charts + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/tera-charts" + +- name: dukapress + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/dukapress" + +- name: heat-trackr + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/heat-trackr" + +- name: evolved_programmable_network_manager + type: product + engines: + - platform: shodan + queries: + - http.title:"prime infrastructure" + +- name: zzcms + type: product + engines: + - platform: fofa + queries: + - zzcms + +- name: colibri_firmware + type: product + engines: + - platform: shodan + queries: + - http.html:"Franklin Fueling Systems" + +- name: sfos + type: product + engines: + - platform: shodan + queries: + - http.title:"Sophos" + +- name: control_panel + type: product + engines: + - platform: shodan + queries: + - http.favicon.hash:-476299640 + +- name: se_html5_album_audio_player + type: product + engines: + - platform: google + queries: + - inurl:"/wp-content/plugins/se-html5-album-audio-player" + +- name: lgate-902_firmware + type: product + engines: + - platform: shodan + queries: + - http.html:"LGATE-902" + +- name: web_appliance + type: product + engines: + - platform: shodan + queries: + - title:"Sophos Web Appliance" + - platform: fofa + queries: + - title="Sophos Web Appliance" diff --git a/README.md b/README.md new file mode 100644 index 0000000..7471e1c --- /dev/null +++ b/README.md @@ -0,0 +1,92 @@ +

Awesome Search Queries

+ + +

Community curated list of search queries for various categories across multiple search engines.

+ +

+ + + + +

+ +Welcome to Awesome Search Queries, a community-driven project to create an index of search queries for various categories across multiple search engines. This project is inspired by [awesome-hacker-search-engines](https://github.com/edoardottt/awesome-hacker-search-engines) and uses the same search engines supported by [uncover](https://github.com/projectdiscovery/uncover). + +This project aims to create a comprehensive, community-curated list of search queries for various categories across multiple search engines. These queries can be used to find instances of specific products, identify potential security vulnerabilities, and gather information for research purposes. + +## Understanding the YAML Format + +Each product in [QUERIES.yaml](QUERIES.yaml) is represented as a YAML entry. Here's a breakdown of the structure: + +```yaml +- name: jira + type: product + category: productivity + engines: + - platform: shodan + queries: + - '"Jira" http.title' + - platform: censys + queries: + - services.software.product=`Jira` + - platform: fofa + queries: + - title="Jira" + - platform: hunterhow + queries: + - product.name=="Jira" +``` + +- `name`: This is the name of the product. In this case, it's "jira". +- `type`: This is the type of the item. In this case, it's "product". Other possible types could be "vendor", "honeypot", etc. +- `category`: This is optional field to define type category. +- `engines`: This is a list of search engines that can be used to find instances of the product. Each search engine has its own entry in the list. + - `platform`: This is the name of the search engine. + - `queries`: This is a list of search queries that can be used on the search engine to find instances of the product. single or multiple queries are supported. + + +## Contributing + +We welcome contributions! There are a couple of ways you can help: + +1. **Add New Search Queries for Existing Products:** If you know of a search query that's relevant to an existing product in this project, but isn't currently listed, we'd appreciate if you added it. This will help increase the coverage of this project. + +2. **Add New Products with Search Queries:** If there's a product missing in this project that you think should be included, please add it! Be sure to also include a relevant search query for the new product. + +See the [CONTRIBUTING.md](CONTRIBUTING.md) file for more information on how to contribute. + +Your contributions will be reviewed and, if accepted, merged into the main project. We're looking forward to your input! + + +## Future Ideas + +1. **[uncover](https://github.com/projectdiscovery/uncover) Integration:** support for searching for specific product across all search engines. +2. **[nuclei-templates](https://github.com/projectdiscovery/nuclei-templates) Integration:** auto populate search query metadata in nuclei templates for related products. + + +Of course! It's important to write clear and understandable documentation. Here's a revised version of your note: + +## Important Information + +- The file `QUERIES.json` is automatically generated through a GitHub Action workflow. Manual updates to this file are not recommended or necessary. + +- The `name` field in all `QUERIES.*` files is formatted to be compatible with the [Common Platform Enumeration](https://csrc.nist.gov/projects/security-content-automation-protocol/specifications/cpe) (CPE) standard. It is highly recommended to maintain this format when available for consistent data representation and to ensure compatibility with systems and services that may use these files. + +## Code of Conduct + +Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. See the [CODE_OF_CONDUCT.md](https://github.com/projectdiscovery/.github/blob/main/CODE_OF_CONDUCT.md) file for more information. + +## License + +This project is licensed under the terms of the MIT license. See the [LICENSE](LICENSE.md) file for more information. + +------- + +
+ +We greatly appreciate your contributions and your efforts in keeping our community dynamic and engaging. ❤️ + +Join Discord + +
+