forked from digininja/DVWA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
72 lines (48 loc) · 2.8 KB
/
about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
define( 'DVWA_WEB_PAGE_TO_ROOT', '' );
require_once DVWA_WEB_PAGE_TO_ROOT.'dvwa/includes/dvwaPage.inc.php';
dvwaPageStartup( array( 'authenticated', 'phpids' ) );
$page = dvwaPageNewGrab();
$page[ 'title' ] .= $page[ 'title_separator' ].'About';
$page[ 'page_id' ] = 'about';
$page[ 'body' ] .= "
<form style=\"height:90%;\">
<div class=\"body_padded\">
<h1>About</h1>
<p>
Version ".dvwaVersionGet()." (Release date: ".dvwaReleaseDateGet().")
<br /><br />
DVWA is a RandomStorm OpenSource project. All material is copyright 2008/2009/2010 RandomStorm & Ryan Dewhurst.
</p>
<h2>Links</h2>
<ul>
<li>Web site: ".dvwaExternalLinkUrlGet( 'http://www.dvwa.co.uk/' )."</li>
<li>Forum: ".dvwaExternalLinkUrlGet( 'http://www.dvwa.co.uk/forum' )."</li>
<li>SVN: ".dvwaExternalLinkUrlGet( 'http://dvwa.svn.sourceforge.net/svnroot/dvwa' )."</li>
</ul>
<h2>Credits</h2>
<ul>
<li>Craig: ".dvwaExternalLinkUrlGet( 'http://www.youreadmyblog.info/','www.youreadmyblog.info' )."</li>
<li>Jamesr: ".dvwaExternalLinkUrlGet( 'http://www.creativenucleus.com/','www.creativenucleus.com' )." / ".dvwaExternalLinkUrlGet( 'http://www.designnewcastle.co.uk/','www.designnewcastle.co.uk' )."</li>
<li>Ryan Dewhurst: ".dvwaExternalLinkUrlGet( 'http://www.ethicalhack3r.co.uk/','www.ethicalhack3r.co.uk' )."</li>
<li>Paulos Yibelo: ".dvwaExternalLinkUrlGet( 'http://www.paulosyibelo.blogspot.com/','www.paulosyibelo.com' )."</li>
<li>Tedi Heriyanto: ".dvwaExternalLinkUrlGet( 'http://tedi.heriyanto.net/','http://tedi.heriyanto.net' )."</li>
<li>Tom Mackenzie: ".dvwaExternalLinkUrlGet( 'http://www.tmacuk.co.uk/','www.tmacuk.co.uk' )."</li>
<li>RandomStorm: ".dvwaExternalLinkUrlGet( 'http://www.randomstorm.com/','www.randomstorm.com' )."</li>
<li>Jason Jones: ".dvwaExternalLinkUrlGet( 'http://www.linux-ninja.com/','www.linux-ninja.com' )."</li>
</ul>
<ul>
<li>PHPIDS - Copyright (c) 2007 ".dvwaExternalLinkUrlGet( 'http://php-ids.org/', 'PHPIDS group' )."</li>
<h1>License</h1>
<p>Damn Vulnerable Web App (DVWA) is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.</p>
<p>The PHPIDS library is included, in good faith, with this DVWA distribution. The operation of PHPIDS is provided without support from the DVWA team. It is licensed under <a href=\"".DVWA_WEB_PAGE_TO_ROOT."instructions.php?doc=PHPIDS-license\">separate terms</a> to the DVWA code.</p>
<h2>Development</h2>
<p>Everyone is welcome to contribute and help make DVWA as successful as it can be. All contributors can have their name and link (if they wish) placed in the credits section. To contribute join the official DVWA forums.</p>
</div>
";
dvwaHtmlEcho( $page );
exit;
?>