This file is indexed.

/etc/hoteldruid/database.php is in hoteldruid 2.1.4-1ubuntu1.

This file is owned by root:www-data, with mode 0o640.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
# When you insert a value for one of the following variables, it will
# always be used by hoteldruid to connect to the database

# Database type, values can be "sqlite", "mysql" or "postgresql"
$HOTELD_DB_TYPE = "";

# Database name
$HOTELD_DB_NAME = "";

# Database connection host
$HOTELD_DB_HOST = "";

# Database connection port
$HOTELD_DB_PORT = "";

# Username to authenticate with database
$HOTELD_DB_USER = "";

# Password to authenticate with database
$HOTELD_DB_PASS = "";

#  Prefix used in front of all table names
$HOTELD_TAB_PRE = "";


?>