updated debian to 9.2 and migrated to mariadb

This commit is contained in:
OPSXCQ 2018-10-12 17:44:03 +00:00
parent dba6e6179a
commit 67fb5939f7
No known key found for this signature in database
GPG Key ID: 9AD730FE9CDE5661
3 changed files with 14 additions and 9 deletions

View File

@ -1,4 +1,4 @@
FROM debian:jessie
FROM debian:9.2
LABEL maintainer "opsxcq@strm.sh"
@ -6,15 +6,16 @@ RUN apt-get update && \
apt-get upgrade -y && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
debconf-utils && \
echo mysql-server-5.5 mysql-server/root_password password vulnerables | debconf-set-selections && \
echo mysql-server-5.5 mysql-server/root_password_again password vulnerables | debconf-set-selections && \
echo mariadb-server mysql-server/root_password password vulnerables | debconf-set-selections && \
echo mariadb-server mysql-server/root_password_again password vulnerables | debconf-set-selections && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
apache2 \
mysql-server \
php5 \
php5-mysql \
mariadb-server \
php \
php-mysql \
php-pgsql \
php-pear \
php5-gd \
php-gd \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
@ -27,6 +28,10 @@ COPY config.inc.php /var/www/html/config/
RUN chown www-data:www-data -R /var/www/html && \
rm /var/www/html/index.html
RUN service mysql start && \
sleep 3 && \
mysql -uroot -pvulnerables -e "CREATE USER app@localhost IDENTIFIED BY 'vulnerables';CREATE DATABASE dvwa;GRANT ALL privileges ON dvwa.* TO 'app'@localhost;"
EXPOSE 80
COPY main.sh /

View File

@ -17,7 +17,7 @@ $DBMS = 'MySQL';
$_DVWA = array();
$_DVWA[ 'db_server' ] = '127.0.0.1';
$_DVWA[ 'db_database' ] = 'dvwa';
$_DVWA[ 'db_user' ] = 'root';
$_DVWA[ 'db_user' ] = 'app';
$_DVWA[ 'db_password' ] = 'vulnerables';
# Only used with PostgreSQL/PGSQL database selection.

View File

@ -41,7 +41,7 @@ file_uploads = On
upload_max_filesize = 2M
max_file_uploads = 20
allow_url_fopen = On
allow_url_include = On
allow_url_include = 1
default_socket_timeout = 60
[CLI Server]
cli_server.color = On