This repository has been archived by the owner on Dec 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreversinglabs_template.html
159 lines (145 loc) · 4.15 KB
/
reversinglabs_template.html
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{% extends 'widgets/widget_template.html' %}
{% load custom_template %}
{% block custom_title_prop %}{% if title_logo %}style="background-size: auto 60%; background-position: 50%; background-repeat: no-repeat; background-image: url('/app_resource/{{ title_logo }}');"{% endif %}{% endblock %}
{% block widget_content %}
<style>
.widget-container {
width: 1170px !important;
}
body,
html {
margin:0;
padding:0;
}
#nav ul {
margin:0;
padding:0;
list-style:none;
}
#nav li {
display:inline;
margin:0;
padding:0;
}
#header {
padding:5px 10px;
}
h1 {
margin:0;
}
#wrap {
width:1060px;
margin:0 auto;
padding-top: 30px;
}
p {
font-weight: 300;
margin-bottom: 20px;
white-space: normal;
}
#main {
float: left;
width: 540px;
padding: 0 30px 10px 0;
}
#sidebar {
width: 500px;
float: right;
padding: 0 0 0 10px;
}
.rl-data-label {
display: inline-block;
width: 170px;
font-weight: 500;
}
.rl-data-label-util {
padding-bottom: 50px;
float: left;
}
.tb-cell {
border-bottom: 1px solid #eaeaea;
padding: 6px 0px;
font-weight: 300;
}
.tb-cell:last-child {
border-bottom: none;
}
.rl-app-logo {
width: 48px;
height: 48px;
float: left;
margin-right: 10px;
margin-bottom: 10px;
}
#wrap a {
}
.head {
position: relative;
margin: 0 0 25px;
font-weight: 300;
font-size: 22px;
}
.head:after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 50px;
height: 1px;
}
.subhead {
position: relative;
margin: 0 0 18px 0;
padding-bottom: 2px;
font-size: 20px;
font-weight: 300;
}
.subhead:after {
content: "";
position: absolute;
bottom: -8px;
left: 0;
width: 35px;
height: 1px;
}
.highlight {
font-weight: 500;
}
#footer {
clear:both;
padding:5px 10px;
}
#footer p {
margin:0;
}
</style>
<div id="reversinglabs">
</div>
<div id="wrap">
<div id="main">
<h2 class="head">ReversingLabs Advanced Malware Analysis Platform</h2>
<div class="tb-cell ellipsis rl-result-hash">
<span class="rl-data-label">Status:</span>
{{ parameters.status }}
</div>
<div class="tb-cell ellipsis rl-result-hash">
<span class="rl-data-label">Trust Factor: </span>
{{ parameters.trust_factor }}
</div>
<div class="tb-cell ellipsis rl-result-hash">
<span class="rl-data-label">Threat Level (5 - highest): </span>
{{ parameters.threat_level }}
</div>
<div class="tb-cell rl-result-hash">
<span class="rl-data-label rl-data-label-util">Classification results:</span>{{ parameters.scanners }}
</div>
</div>
<div id="sidebar">
<p><a href={{ parameters.a1000_link }} target="_blank">Click here to receive the detailed report on the file uploaded to the ReversingLabs A1000 Malware Analysis Platform ↗</a></p>
<p><img class="rl-app-logo" src="https://www.reversinglabs.com/sites/files/new/a1000-logo_0.svg" alt="A1000">The ReversingLabs A1000 Malware Analysis Platform analyzes over 3,500 format families and maintains a curated and private repository of over 3.0 Billion goodware and malware samples with over 3,000 meta-data indicators per file. The A1000 is a powerful platform for SOC/CERTs to analyze, pivot, hunt and collaborate on unknown or identified threats.</p>
<p class="highlight">For more information on ReversingLabs solutions, please visit <a class="highlight" href="https://www.reversinglabs.com/products/malware-analysis-appliance.html">A1000</a> or email <a class="highlight" href="mailto:[email protected]">Sales.</a></p>
</div>
<div id="footer">
</div>
</div>
{% endblock %}