Path: blob/dev/integration_tests/protocols/javascript/redis-pass-brute.yaml
2070 views
id: redis-pass-brute1info:2name: redis password bruteforce3author: tarunKoyalwar4severity: high5description: |6This template bruteforces passwords for protected redis instances.7If redis is not protected with password. it is also matched8metadata:9shodan-query: product:"redis"101112javascript:13- pre-condition: |14isPortOpen(Host,Port)1516code: |17var m = require("nuclei/redis");18m.GetServerInfoAuth(Host,Port,Password);1920args:21Host: "{{Host}}"22Port: "6379"23Password: "{{passwords}}"2425payloads:26passwords:27- ""28- root29- password30- admin31- iamadmin32stop-at-first-match: true3334matchers-condition: and35matchers:36- type: word37words:38- "redis_version"39- type: word40negative: true41words:42- "redis_mode:sentinel"434445