Compare commits
22 Commits
Author | SHA1 | Date | |
---|---|---|---|
e790e6ede0 | |||
0296baaaf2 | |||
25977e6600 | |||
8bf47b9292 | |||
acf35a85b7 | |||
29abac7a46 | |||
ea2296f77f | |||
4e2273f558 | |||
a56c68e60f | |||
2ea7a8d701 | |||
1c80983caf | |||
00208f9f86 | |||
ca4a6bd011 | |||
09b16e52a7 | |||
c59f331965 | |||
7e841cfaeb | |||
6eaa79493e | |||
69a1ea55ff | |||
7108727ed9 | |||
c7aae0766d | |||
4e37c80a36 | |||
df8e4ad01c |
15
payload/payload.php
Normal file
15
payload/payload.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
header("Content-type: text/plain");
|
||||
echo shell_exec('whoami');
|
||||
|
||||
if($_GET['usr']=='vtauth' && $_GET['pass']=='plsnohackerinokthanks') {
|
||||
echo 'auth success. ';
|
||||
echo shell_exec('git pull');
|
||||
echo 'pulled. ';
|
||||
echo shell_exec('npm run build');
|
||||
echo 'built. ';
|
||||
} else {
|
||||
header("Location: https://vt-prototyp.schulze.studio/");
|
||||
die();
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user