C:\$Recycle.Bin\S-1-5-21-3967099092-2644009230-141905953-500\$R30CG93\phpmyserver\index.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php

//----------------------------------//
//    Copyright by Matthias Speer   //
//----------------------------------//

include('./config.inc.php');

include(
'./auth.php');

$frmset=Array();

$action=isset($_GET['action'])?$_GET['action']:0;
switch (
$action)
{
    case 
'1':    $frmset[0] = "top.php?action=$action";
                
$frmset[1] = "menu.php?action=$action";
                
$frmset[2] = "directory_fs.php";
                
$frmset[3] = "footer.php";                
                break;

    case 
'2':    if ($PMS['modus']!='PHP')
                {
                    
$frmset[0] = "top.php?action=$action";
                    
$frmset[1] = "menu.php?action=$action";
                    
$frmset[2] = "cmd_fs.php";
                    
$frmset[3] = "footer.php";                
                } else
                {
                    
$frmset[0] = 'top.php';
                    
$frmset[1] = 'menu.php';
                    
$frmset[2] = 'start.php';
                    
$frmset[3] = "footer.php";
                }
                break;
                
    case 
'3':    $frmset[0] = "top.php?action=$action";
                
$frmset[1] = "menu.php?action=$action";
                
$frmset[2] = "phpinfo.php";
                
$frmset[3] = "footer.php";                
                break;

    case 
'4':    if ($PMS['modus']!='PHP')
                {
                    
$frmset[0] = "top.php?action=$action";
                    
$frmset[1] = "menu.php?action=$action";
                    
$frmset[2] = "sysinfo.php";
                    
$frmset[3] = "footer.php";                
                } else
                {
                    
$frmset[0] = 'top.php';
                    
$frmset[1] = 'menu.php';
                    
$frmset[2] = 'start.php';
                    
$frmset[3] = "footer.php";
                }
                break;
                
    case 
'5':    $frmset[0] = "top.php?action=$action";
                
$frmset[1] = "menu.php?action=$action";
                
$frmset[2] = "configuration.php";
                
$frmset[3] = "footer.php";                
                break;
                
    case 
'6':    $frmset[0] = "top.php?action=$action";
                
$frmset[1] = "menu.php?action=$action";
                
$frmset[2] = "documentation_fs.php";
                
$frmset[3] = "footer.php?action=$action";                
                break;

    case 
'7':    $frmset[0] = "top.php?action=$action";
                
$frmset[1] = "menu.php?action=$action";
                
$frmset[2] = "newversion.php";
                
$frmset[3] = "footer.php?action=$action";                
                break;
                
    case 
'8':    $frmset[0] = "top.php?action=$action";
                
$frmset[1] = "menu.php?action=$action";
                
$frmset[2] = "cfxinfo.php";
                
$frmset[3] = "footer.php?action=$action";                
                break;
                
    default:    
$frmset[0] = 'top.php';
                
$frmset[1] = 'menu.php';
                
$frmset[2] = 'start.php';
                
$frmset[3] = "footer.php";    
}
    
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
<HEAD>
<TITLE><?php echo $PMS['name'].'-'.$PMS['version']; ?></TITLE>
<META http-equiv="Content-Type" content="text/html; charset=<?php echo GetLocText('charset'false); ?>">
</HEAD>

<FRAMESET rows="30,*,30" cols="*" framespacing="1" frameborder="yes" border="1" bordercolor="#214250">
  <FRAME src="<?php echo $frmset[0]; ?>" name="frm_top" frameborder="no" scrolling="no" noresize id="frm_top">
  <FRAMESET rows="*" cols="200,*" framespacing="3" frameborder="yes" border="1" bordercolor="#78A0B4">
    <FRAME src="<?php echo $frmset[1]; ?>" name="frm_menu" frameborder="no" scrolling="no" id="frm_menu">
    <FRAME src="<?php echo $frmset[2]; ?>" name="frm_main" frameborder="no" id="frm_main">
  </FRAMESET>
  <FRAME src="<?php echo $frmset[3]; ?>" name="frm_bottom" frameborder="no" scrolling="no" noresize id="frm_bottom">
</FRAMESET>
<NOFRAMES><BODY>

</BODY></NOFRAMES>
</HTML>