Compare commits

..

No commits in common. "live" and "main" have entirely different histories.
live ... main

View File

@ -1,15 +0,0 @@
<?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();
}
?>