This file is indexed.

/usr/share/httpry/plugins/db_dump.cfg is in httpry-tools 0.1.7-3.

This file is owned by root:root, with mode 0o644.

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
28
29
30
31
32
33
34
35
36
37
#
# Config file for db_dump.pm
#
# $type (required)
#    Type of destination database; currenly only
#    'mysql' is implemented
#
# $db (required)
#    Name of the database to connect to
#
# $host (required)
#    Hostname of machine where database is located;
#    use 'localhost' for the local machine
#
# $port (required)
#    Port database is listening on; default is 3306
#
# $user (not required)
#    Username required by database, if necessary
#
# $pass (not required)
#    Password required by database, if necessary
#
# $rmbefore (not required)
#    Delete all data inserted this many days prior;
#    0 disables removal completely
#

$type     = "mysql";
$db       = "httpry";
$host     = "localhost";
$port     = 3306;
$user     = "";
$pass     = "";
$rmbefore = 0;

1;