payload done

This commit is contained in:
Server (Felix) 2020-12-04 11:30:31 +01:00
parent df8e4ad01c
commit 4e37c80a36

View File

@ -1,3 +1,14 @@
<?php <?php
echo shell_exec('whoami'); echo shell_exec('whoami');
if($_GET['usr']=='vtauth' && $_GET['pass']=='plsnohackerinokthanks') {
echo '<br>auth success<br>';
echo shell_exec('git pull');
echo '<br>pulled<br>';
echo shell_exec('npm run build');
echo '<br>built<br>';
} else {
header("Location: https://vt-prototyp.schulze.studio/");
die();
}
?> ?>