]> andersk Git - sql-web.git/blobdiff - tpl/main.php
Fix XSS vulnerabilities
[sql-web.git] / tpl / main.php
index c52a23b6756d809582117a02a5419f270ed8bcf9..89b0432de92fe5ce0030d1d053130558d8e0ac60 100644 (file)
@@ -6,13 +6,13 @@ if (isset($i_dropask)) {
        $dropdbs = array_keys($i_dropask);
        echo '<form method="post" action="', $URI,'">';
        foreach($dropdbs as $dbname) {
-               $msg1[] = 'Are you sure you want to drop `'.$dbname.'`? <input style="position:absolute; right:20px;" type="submit" name="drop['.$dbname.']" value="Yes">';
+               $msg1[] = 'Are you sure you want to drop `'.htmlentities($dbname).'`? <input style="position:absolute; right:20px;" type="submit" name="drop['.htmlentities($dbname).']" value="Yes">';
        }
        echo '</form>';
 }
 
 ?>
-<h2>Databases</h2>
+<h3>Databases</h3>
 
 <form method="post" action="<?=$URI?>">
 <?php printErrors($err1); ?>
@@ -35,7 +35,7 @@ if (isset($i_dropask)) {
                else $percentage = 0;
                echo printBar($percentage, $db['Name'], str_replace(' ', '&nbsp;', sprintSize($db['nBytes'])));
                echo '</td><td>';
-               echo '<input type="submit" name="dropask[',$db['Name'],']" value="drop">';
+               echo '<input type="submit" name="dropask[',htmlentities($db['Name']),']" value="drop">';
                echo '</td></tr>';
        }
        if ($total>0) {
@@ -54,11 +54,11 @@ if (isset($i_dropask)) {
 </table>
 
 <form method="post" action="<?=$URI?>">
-<p align="right"><span style="width: 150px;"><label for="p1">new database:</label></span> <input type="text" name="newdb">
+<p align="right"><span style="width: 150px; font-style: italic;"><label for="p1">new database:</label></span> <?=$Login->getUsername()?>+<input type="text" name="newdb">
 <input type=submit value="add"></p>
 </form>
 
-<h2>Manage Data</h2>
+<h3>Manage Data</h3>
 <p>One interface we recommend for managing SQL data is <a href="https://scripts.mit.edu/~sql/phpMyAdmin/" target="_blank">phpMyAdmin</a>. Feel free to use it after you've created your databases.</p>
 
 <?php
This page took 0.208851 seconds and 4 git commands to generate.