7f815276981e366df7e6f3b6ccb92ebeca624fb3
Bernd Wurst Zeige Warnung auf der Start...

Bernd Wurst authored 10 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Zeige Warnung auf der Start...

Bernd Wurst authored 10 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst Zeige Warnung auf der Start...

Bernd Wurst authored 10 years ago

12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
16) 
17) if ($_SESSION['role'] & ROLE_SYSTEMUSER) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

18)     $alert = null;
19)     include_once('modules/webapps/include/freewvs.php');
Bernd Wurst Zeige Warnung auf der Start...

Bernd Wurst authored 10 years ago

20) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

21)     $result = load_results();
22)     $found = 0;
23)     foreach ($result as $app) {
24)         if ($app['state'] == 'vulnerable') {
25)             $found++;
26)         }
Bernd Wurst Zeige Warnung auf der Start...

Bernd Wurst authored 10 years ago

27)     }
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

28)     if ($found > 0) {
29)         $shortcuts[] = array( 'section' => 'Webserver',
30)                           'weight'  => 40,
31)                           'file'    => 'freewvs',
32)                           'icon'    => 'warning.png',
Bernd Wurst Zeige Warnung auf der Start...

Bernd Wurst authored 10 years ago

33)                           'title'   => 'Web-Anwendungen',
34)                           'alert'   => "{$found} unsicher" );
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

35)     }