🤑
hacking-methodology
Github
  • README
  • Reconnaissance
    • Web
    • Web attacks
      • CRLF Injection
      • IDOR
      • File Inclusion
      • File Upload
      • SSRF
      • CSRF
      • XSS
    • Databases
    • DBMS
      • MySQL
      • MSSQL
      • ORACLE
      • REDIS
      • MongoDB
      • SQLite
    • Windows
    • Other technologies
  • Privilege Escalation
    • Linux
      • Path Hijacking
      • Shared Library Misconfigurations
      • USBCreator D-Bus
    • Windows
      • Active Directory Enumeration
      • Services & Features
  • Binary Exploitation
    • Format String Vulnerability
  • Miscellaneous
    • Universal Tools and Resources
    • Methodology, Tricks & Common sense
  • Language Specific Exploits
    • Python
      • Data Model Parsing (pytorch / pickle)
Powered by GitBook
On this page
  • Redis
  • Data Types and Retrieve Commands
  • Connection
  • References
  1. Reconnaissance
  2. DBMS

REDIS

PreviousORACLENextMongoDB

Last updated 5 months ago

Redis

Data Types and Retrieve Commands

String      GET <key>
HASH        HGETALL <key>
LIST        lrange <key> <start> <end>
SET         smembers <key>
SORTED SETS ZRANGEBYSCORE <key> <min> <max>

Connection

# After Redis 6.0
redis-cli -h <ip> -a <password> 

References

https://redis.io/docs/