This file is indexed.

/usr/share/htcheck/php/include/mysqldb.inc.php is in htcheck-php 1:2.0.0~rc1-2.

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
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<?php

//    include/mysqldb.inc.php
//    Class definition for interfacing with the MySQL database server
//    Only basic connection features
//
//    Part of the ht://Check package
//
//    Copyright (c) 1999-2002 Comune di Prato - Prato - Italy
//    Author: Gabriele Bartolini - Prato - Italy <angusgb@users.sourceforge.net>
//
//    For copyright details, see the file COPYING in your distribution
//    or the GNU General Public License version 2 or later 
//    <http://www.gnu.org/copyleft/gpl.html>
//
//    $Id: mysqldb.inc.php,v 1.8 2003/04/25 18:06:17 angusgb Exp $

if ( defined( '__MYSQLDB_INC' ) ) return;
define( '__MYSQLDB_INC', 1 );

include ("./include/db.inc.php");

class MySQLDB extends DB
{

   // Class attributes

   var $linkid;   // DB Connection ID
   var $result;   // Result of a query
   var $errno;    // Error number
   var $errmsg;   // Error string

   // Constructor
   function MySQLDB($strhostname, $strusername, $strpassword)
   {
      $this->hostname = $strhostname;
      $this->username = $strusername;
      $this->password = $strpassword;
      $linkid = 0;
      $result = 0;

   }

   // Database dropping
   function Drop($DBName)
   {
      if ($this->Connect())   // Try to connect
         return $this->errno;   // Failed
      if (! $this->result = mysql_query ("DROP DATABASE $DBName"))
      {
         $this->GenerateError(104);
      } else $this->errno = 0;   // Inizializza il codice d'errore
      return $this->errno;
   }

   // Query execution
   function Query($DBName, $StrSQL)
   {
      if ($this->SelectDB($DBName))   // Select the database
         return $this->errno;   // Failed

      if (! $this->result = @mysql_query ($StrSQL))
      {
         $this->GenerateError(103);
      } else $this->errno = 0;   // Inizializza il codice d'errore
      return $this->errno;
   }

   // Function for connecting
   function Connect()
   {

      if (! ($this->linkid = mysql_pconnect ($this->hostname,
         $this->username, $this->password)))
      {
         $this->GenerateError(101);
      } else $this->errno = 0;   // Inizializza il codice d'errore

      return $this->errno;

   }

   // Selection of the database
   function SelectDB($DBName)
   {
      if (! $this->linkid )  // Not connected yet
      {
         if ($this->Connect())   // Try to connect
            return $this->errno;   // Failed
      }

      if (! @mysql_select_db ($DBName, $this->linkid))
      {
         $this->GenerateError(102);
      } else $this->errno = 0;   // Inizializza il codice d'errore

      return $this->errno;
   }

   // Generate
   function GenerateError($errno)
   {
      $this->errmsg = mysql_error();
      $this->errno = $errno;
   }

   function FetchObject()
   {
      return mysql_fetch_object($this->result);
   }

   function FetchRow()
   {
      return mysql_fetch_row($this->result);
   }

   function FetchArray()
   {
      return mysql_fetch_array($this->result);
   }

   function Free()
   {
      return mysql_free_result($this->result);
   }

   function NumRows()
   {
      return mysql_num_rows($this->result);
   }


   // This function retrieves the htcheck database on the MySQL server
   function GetHtCheckDBList()
   {

      unset($this->HtDBs);   // initialize the contents

      if (! $this->linkid )  // Not connected yet
      {
         if ($this->Connect())   // Try to connect
            return $this->errno;   // Failed
      }

      if (! $dbtable = @mysql_list_dbs ())
      {
         $this->GenerateError(102);
      }
      else
      {
         $this->errno = 0;   // Inizializza il codice d'errore
         $numdbs = mysql_num_rows($dbtable);

         for ($i=0; $i < $numdbs; $i++)
         {
            // For every database we look if it's a htcheck one
            $dbname= mysql_tablename ($dbtable, $i);
            $found = false;

            if (! $this->Query($dbname, "show tables"))
            {
               // Fetch every row
               while (!$found && $row = $this->FetchRow())
               {
                  if ($row[0]=="HtmlStatement")
                     $found=true;
               }
            }
            if ($found)
               $this->HtDBs[] = $dbname;
         }
      }

      return $this->errno;

   }


   function CreateHTMLTable($strSQL, $DBName, $Select=false)
   {

      if ($Select && $this->SelectDB($DBName))  // We must select the db first of all
         return -1;  // Error
      
      // Database selected, let's query it
      if ($this->Query($DBName, $strSQL))
         return -2;

      $result=$this->result;
      
      $num=mysql_num_rows($result);
      
      if ($num)
      {
         // Header
         $numfields=mysql_num_fields($result);
         
         echo "<table>\n";
         echo "<tr>\n";
         
         echo " <th> N. </th>\n";
         for ($j=0; $j<$numfields; $j++)
         {
            ?> <th> <?php echo WriteHTML(mysql_field_name($result, $j)); ?> </th>
<?php
         }
         
         echo "</tr>\n";
         
         // Loop
         $i=0;
         
         while ($row = $this->FetchRow())
         {
            $i++;
            echo "<tr>\n";
            echo " <td> $i </td>\n";
            
            for ($j=0; $j<$numfields; $j++)
            {
            ?> <td> <?php echo WriteHTML($row[$j]); ?> </td>
<?php
            }
            
            echo "</tr>";
         }
      
         echo "</table>";
      }

      $this->Free();

      return $num;      
   }
   
   
}

?>