Difference between revisions of "SQLMap: Instalasi DVWA"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (New page: DVWA (Damn Vurnelabel Web App) dapat digunakan untuk belajar SQL Injection / SQLmap untuk melakukan serangan ke Web & Database-nya ==Download== wget https://github.com/RandomStorm/DVWA/...) |
Onnowpurbo (talk | contribs) |
||
Line 54: | Line 54: | ||
Click here to setup the database. | Click here to setup the database. | ||
Create / Reset Database | Create / Reset Database | ||
+ | |||
+ | |||
+ | Atau ke | ||
+ | |||
+ | http://ip-server/DVWA-1.0.8/setup.php | ||
+ | |||
+ | Create / Reset Database | ||
+ | |||
+ | |||
+ | ==Login ke DVWA== | ||
+ | |||
+ | username admin | ||
+ | password password |
Revision as of 07:37, 13 November 2014
DVWA (Damn Vurnelabel Web App) dapat digunakan untuk belajar SQL Injection / SQLmap untuk melakukan serangan ke Web & Database-nya
Download
wget https://github.com/RandomStorm/DVWA/archive/v1.0.8.zip
Instalasi Aplikasi Pendukung
sudo apt-get install apache2 php5 php5-xmlrpc php5-mysql php5-gd php5-cli php5-curl \ mysql-client mysql-server libphp-adodb libgd2-xpm-dev \ php5-curl php-pear unzip
Extract
mkdir /var/www/dvwa mv DVWA-1.0.8.zip /var/www/ cd /var/www/ unzip DVWA-1.0.8.zip
Edit konfigurasi Database
vi /var/www/DVWA-1.0.8/config/config.inc.php
Edit
$_DVWA = array(); $_DVWA[ 'db_server' ] = 'localhost'; $_DVWA[ 'db_database' ] = 'dvwa'; $_DVWA[ 'db_user' ] = 'root'; $_DVWA[ 'db_password' ] = 'p@ssw0rd';
Pastikan sesuai dengan password root yang ada, misalnya
$_DVWA[ 'db_password' ] = '123456';
Lakukan di shell
mysql -u root -p123456
create database dvwa; grant ALL on root.* to dvwa@localhost; exit
Akses ke DVWA
http://ip-server/DVWA-1.0.8/
Klik
Click here to setup the database. Create / Reset Database
Atau ke
http://ip-server/DVWA-1.0.8/setup.php
Create / Reset Database
Login ke DVWA
username admin password password