1521 - Oracle DB Server

Theory

The Oracle database server uses TCP port 1521, and the same concepts apply to it as Microsoft SQL Server when it comes to enumeration:

  • Bruteโ€forcing credentials

  • Identifying if the installed version is exploitable


Practical

Basic Nmap Scan

nmap โ€sV โ€O โ€sC โ€p 1521 [IP Address]

Advanced Nmap Scan

nmap โ€sV โ€O โ€p 1521 โ€โ€script=oracle* [IP Address]

Brute Force

Hydra

hydra โ€s 1521 โ€L [users file] โ€P [passwords file] [IP]


REFERENCES

Last updated