-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·126 lines (111 loc) · 5.08 KB
/
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?php
include ('inc/header.php');
?>
<div id="navigation">
<ul>
<li><a href="#" class="active"><span>home</span></a></li>
<li><a href="notes.php"><span>notes</span></a></li>
<li><a href="credits.php"><span>credits</span></a></li>
<li><a href="contact.php"><span>contact</span></a></li>
</ul>
<div class="cl"> </div>
</div>
</div>
<!-- END Logo + Description + Navigation -->
<!-- Header -->
<div id="header">
<!-- Slider -->
<div id="slider">
<div class="top">
<div class="bot">
<div class="slide-info">
<h2 >What it is:</h2>
<table align ="center" cellpadding="10">
<tr><td>
<p align="justify">SCAAMP is an automatic and cross-platform security configuration auditing tool for Apache HTTP Server, PHP Interpreter and MySQL Database Server.
It assists developers and web administrators in pointing out security configuration vulnerabilities on server environments during development or deployment of web applications.
Using SCAAMP, you automatically inspect and fix the server environment for security configuration risks before deploying web applications. It is a handy tool for secure development and safe deployment of web applications.</p>
</td></tr>
</table>
</div>
</div>
</div>
</div>
<br /><br />
<div id="slider">
<div class="top">
<div class="bot">
<div class="slide-info">
<h2 >Features:</h2>
<table align="center">
<ul >
<tr><td ><li>Security Configuration Auditing for Apache, MySQL and PHP</li></td></tr>
<tr><td ><li>Security Configuration fixing for Apache, MySQL and PHP</li></td></tr>
<tr><td ><li> Security Configuration safety rating for Apache, MySQL and PHP</li></td></tr>
</ul>
</table>
</div>
</div>
</div>
</div>
<br />
<div id="slider">
<div class="top">
<div class="bot">
<div class="slide-info">
<h2 >Works With:</h2>
<table>
<ul >
<tr><td > <li>Linux</li></td></tr>
<tr><td > <li>Windows</li></td></tr>
<tr><td > <li> MacOS</li></td></tr>
</ul>
</table>
</div>
</div>
</div>
</div>
<!-- END Slider -->
</div>
<!-- END Header -->
<!-- Main -->
<div id="main">
<!-- Three Column Content -->
<div class="separator cols three-cols">
<div class="cl"> </div>
<div class="col">
<a href="php/index.php"><img src="css/images/php.gif" width="90" height="40" ></a>
<div class="separator">
</div>
<div class="content">
<p>Detailed security configuration audit for PHP environment based on the php.ini configuration file.</p>
<p><a href="php/index.php" class="more">Go!...</a></p>
</div>
</div>
<div class="col">
<a href="mysql/index.php"> <img src="css/images/mysql.gif" width="90" height="40" ></a>
<div class="separator">
</div>
<div class="content">
<p>Comprehensive Security-critical configuration audit for MySQL Server based on php.ini and my.conf. </p>
<p><a href="mysql/index.php" class="more">Go!...</a></p>
</div>
</div>
<div class="col col-last">
<a href="apache/index.php"><img src="css/images/apache.gif" width="90" height="40" ></img></a>
<div class="separator">
</div>
<div class="content">
<p>Detailed web Server configuration audit for Apache web server based on httpd.conf.</p>
<p><a href="apache/index.php" class="more">Go!...</a></p>
</div>
</div>
<div class="cl"> </div>
</div>
<!-- END Three Column Content -->
<!-- Two Column Content -->
<!-- END Main -->
<!-- Footer -->
<?php
include ('inc/footer.php');
?>