# Oracle SQL Server
> [!note]
> Adapted from [slyth11907 / Cheatsheets / Cheatsheet_Oracle.txt](https://github.com/slyth11907/Cheatsheets/blob/master/Cheatsheet_Oracle.txt)
```bash
# Ping an Oracle server, get version information, etc.
#
tnscmd10g $COMMAND -h $IP_ADDRESS
# Enumerate information about an Oracle server
#
oscanner -s $IP_ADDRESS -P $PORT
# Dictionary enumeration of Oracle server SIDs
#
sidguess -i $IP_ADDRESS -d $WORDLIST_FILE
```
More information about the above tools:
- [tnscmd10g](https://www.kali.org/tools/tnscmd10g/)
- [oscanner](https://www.kali.org/tools/oscanner/)
- [sidguesser](https://www.kali.org/tools/sidguesser/)