forked from EvandroMohr/in-secure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·84 lines (78 loc) · 3.4 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
<?php include 'header.php'; ?>
<div class="container">
<div class="row">
<!-- NEWS PANEL WRAPPER -->
<div class="col-md-8" id="news" >
<div class="page-title">
<h2>
<span class="fa fa-file-o"></span> Notícias
</h2>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title-box">
<a href="noticia.php?id=2" title="Ver detalhes"><h3>Investimento ou Gasto em Segurança da Informação?</h3></a>
<span>Orçamento x Execução (2014)</span>
</div>
</div>
<div class="panel-body ">
<div class="chart-holder" id="dashboard-bar-1" >
<a href="noticia.php?id=2" title="Ver detalhes"><img src="img/graph.png" class="img-responsive"/></a>
<p>Muito se fala sobre segurança da informação em todo o mundo, mas até que ponto estamos realmente preocupados (todos) e interessados em fazer bons investimentos e não apenas gastos? <a href="noticia.php?id=2">Leia mais...</a></p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title-box">
<a href="noticia.php?id=3" title="Ver detalhes"><h3>Engenharia social</h3></a>
</div>
</div>
<div class="panel-body ">
<div class="chart-holder" id="dashboard-bar-1" >
<p>A engenharia social, no contexto de segurança da informação, refere-se a manipulação psicológica de pessoas para a execução de ações ou divulgar informações confidenciais. Este é um termo que descreve um tipo psicotécnico de intrusão que depende fortemente de interação humana e <a href="noticia.php?id=3">Leia mais...</a></p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title-box">
<a href="noticia.php?id=1" title="Ver detalhes"><h3>Sempre considere a segurança</h3></a>
</div>
</div>
<div class="panel-body padding-0">
<a href="noticia.php?id=1" title="Ver detalhes"><img src="img/quote.png" class="img-responsive"/></a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="page-title">
<h2>
<span class="fa fa-warning"></span> Security Report
</h2>
</div>
<div class="panel panel-danger">
<div class="panel-heading">
<h3 class="panel-title"><span class="fa fa-tasks"></span> TOP 10 Ameaças (OWASP)</h3>
</div>
<div class="panel-body">
<p>The OWASP Top 10 - 2013 is as follows:</p>
<ul>
<li>A1 Injection</li>
<li>A2 Broken Authentication and Session Management</li>
<li>A3 Cross-Site Scripting (XSS)</li>
<li>A4 Insecure Direct Object References</li>
<li>A5 Security Misconfiguration</li>
<li>A6 Sensitive Data Exposure</li>
<li>A7 Missing Function Level Access Control</li>
<li>A8 Cross-Site Request Forgery (CSRF)</li>
<li>A9 Using Components with Known Vulnerabilities</li>
<li>A10 Unvalidated Redirects and Forwards</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</body>
</html>