Compare commits

...

22 Commits
main ... live

Author SHA1 Message Date
André Wahlberg
e790e6ede0 Merge branch 'main' into live 2020-12-15 10:53:44 +01:00
André Wahlberg
0296baaaf2 Merge branch 'main' into live 2020-12-11 19:16:06 +01:00
williameriksson126
25977e6600 Merge branch 'main' into live 2020-12-11 10:20:54 +01:00
williameriksson126
8bf47b9292 Attempted merge to live branch 2020-12-11 10:20:21 +01:00
Thefeli73
acf35a85b7 . 2020-12-08 19:48:09 +01:00
Thefeli73
29abac7a46 test push 2020-12-08 19:36:52 +01:00
Thefeli73
ea2296f77f move payload to sub folder 2020-12-08 19:36:02 +01:00
Thefeli73
4e2273f558 fix payload 2020-12-08 19:35:40 +01:00
André Wahlberg
a56c68e60f Remove irrelevant button errors in console 2020-12-04 12:04:55 +01:00
André Wahlberg
2ea7a8d701 Updated class changes in TrafficEntry 2020-12-04 12:04:54 +01:00
André Wahlberg
1c80983caf Format TrafficInfo.js 2020-12-04 12:04:54 +01:00
André Wahlberg
00208f9f86 Add and update classes for client-side data management 2020-12-04 12:04:52 +01:00
André Wahlberg
ca4a6bd011 Add possibility of closing popups 2020-12-04 12:04:34 +01:00
André Wahlberg
09b16e52a7 Add misc CSS 2020-12-04 12:04:34 +01:00
André Wahlberg
c59f331965 Add generalized button class 2020-12-04 12:04:33 +01:00
André Wahlberg
7e841cfaeb Add popup class 2020-12-04 12:04:33 +01:00
André Wahlberg
6eaa79493e Add user name to navigation drawer 2020-12-04 12:04:33 +01:00
André Wahlberg
69a1ea55ff Add global data variable 2020-12-04 12:04:32 +01:00
Thefeli73
7108727ed9 TEST CI 2020-12-04 11:38:02 +01:00
Thefeli73
c7aae0766d update content header 2020-12-04 11:37:00 +01:00
Server (Felix)
4e37c80a36 payload done 2020-12-04 11:30:31 +01:00
Server (Felix)
df8e4ad01c payload php 2020-12-04 10:54:05 +01:00

15
payload/payload.php Normal file
View 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();
}
?>