first commit
This commit is contained in:
parent
985a5c928c
commit
f40a84879c
551 changed files with 72374 additions and 24 deletions
79
dvwa/setup.php
Normal file
79
dvwa/setup.php
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
<?php
|
||||
|
||||
define( 'DVWA_WEB_PAGE_TO_ROOT', '' );
|
||||
require_once DVWA_WEB_PAGE_TO_ROOT . 'dvwa/includes/dvwaPage.inc.php';
|
||||
|
||||
dvwaPageStartup( array( 'phpids' ) );
|
||||
|
||||
$page = dvwaPageNewGrab();
|
||||
$page[ 'title' ] = 'Setup' . $page[ 'title_separator' ].$page[ 'title' ];
|
||||
$page[ 'page_id' ] = 'setup';
|
||||
|
||||
if( isset( $_POST[ 'create_db' ] ) ) {
|
||||
// Anti-CSRF
|
||||
checkToken( $_REQUEST[ 'user_token' ], $_SESSION[ 'session_token' ], 'setup.php' );
|
||||
|
||||
if( $DBMS == 'MySQL' ) {
|
||||
include_once DVWA_WEB_PAGE_TO_ROOT . 'dvwa/includes/DBMS/MySQL.php';
|
||||
}
|
||||
elseif($DBMS == 'PGSQL') {
|
||||
// include_once DVWA_WEB_PAGE_TO_ROOT . 'dvwa/includes/DBMS/PGSQL.php';
|
||||
dvwaMessagePush( 'PostgreSQL is not yet fully supported.' );
|
||||
dvwaPageReload();
|
||||
}
|
||||
else {
|
||||
dvwaMessagePush( 'ERROR: Invalid database selected. Please review the config file syntax.' );
|
||||
dvwaPageReload();
|
||||
}
|
||||
}
|
||||
|
||||
// Anti-CSRF
|
||||
generateSessionToken();
|
||||
|
||||
$page[ 'body' ] .= "
|
||||
<div class=\"body_padded\">
|
||||
<h1>Database Setup <img src=\"" . DVWA_WEB_PAGE_TO_ROOT . "dvwa/images/spanner.png\" /></h1>
|
||||
|
||||
<p>Click on the 'Create / Reset Database' button below to create or reset your database.</br>
|
||||
If you get an error make sure you have the correct user credentials in: <em>" . realpath( getcwd() ) . "/config/config.inc.php</em></p>
|
||||
|
||||
<p>If the database already exists, <em>it will be cleared and the data will be reset</em>.<br />
|
||||
You can also use this to reset the administrator credentials (\"<em>admin</em> // <em>password</em>\") at any stage.</p>
|
||||
<hr />
|
||||
<br />
|
||||
|
||||
<h2>Setup Check</h2>
|
||||
|
||||
{$DVWAOS}<br />
|
||||
Backend database: <em>{$DBMS}</em><br />
|
||||
PHP version: <em>" . phpversion() . "</em><br />
|
||||
<br />
|
||||
{$SERVER_NAME}<br />
|
||||
<br />
|
||||
{$phpDisplayErrors}<br />
|
||||
{$phpSafeMode}<br/ >
|
||||
{$phpURLInclude}<br/ >
|
||||
{$phpURLFopen}<br />
|
||||
{$phpMagicQuotes}<br />
|
||||
{$phpGD}<br />
|
||||
<br />
|
||||
{$DVWARecaptcha}<br />
|
||||
<br />
|
||||
{$DVWAUploadsWrite}<br />
|
||||
{$DVWAPHPWrite}<br />
|
||||
<br />
|
||||
<i><span class=\"failure\">Status in red</span>, indicate there will be an issue when trying to complete some modules.</i><br />
|
||||
<br /><br /><br />
|
||||
|
||||
<!-- Create db button -->
|
||||
<form action=\"#\" method=\"post\">
|
||||
<input name=\"create_db\" type=\"submit\" value=\"Create / Reset Database\">
|
||||
" . tokenField() . "
|
||||
</form>
|
||||
<br />
|
||||
<hr />
|
||||
</div>";
|
||||
|
||||
dvwaHtmlEcho( $page );
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue