This repository has been archived by the owner on Jan 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·314 lines (306 loc) · 13.2 KB
/
index.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
<!DOCTYPE html>
<html>
<head>
<title>Carbonara Project</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet">
<link href="https://unpkg.com/vuetify/dist/vuetify.min.css" rel="stylesheet">
<link href="css/app.css" rel="stylesheet">
</head>
<body>
<div id="app">
<v-app light>
<v-toolbar class="white">
<v-toolbar-title v-text="title"></v-toolbar-title>
<v-spacer></v-spacer>
<v-toolbar-items class="hidden-sm-and-down">
<v-btn href="https://github.com/Carbonara-Project" flat>
GITHUB
</v-btn>
</v-toolbar-items>
</v-toolbar>
<v-content>
<section>
<v-parallax src="https://images.unsplash.com/photo-1477244075012-5cc28286e465?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=76ae2034864198c0b4daf6117ba25e72&auto=format&fit=crop&w=668&q=80" height="600">
<v-layout
column
align-center
justify-center
class="white--text"
>
<h1 name="motto" id="motto" class="white--text mb-2 display-3 text-xs-center">The front window of malware research.</h1>
<h3 class="subheading mb-3 text-xs-center">We are creating an environment for security researchers to thrive.</h3>
<v-btn
class="mt-5 primary-btn"
dark
large
href="https://carbonaraproject.com/"
>
Get Started
</v-btn>
<v-btn
class="mt-5 primary-btn whitepaper-btn"
dark
large
href="assets/Carbonaraproject_paper.pdf"
>
Whitepaper
</v-btn>
</v-layout>
</v-parallax>
</section>
<section>
<v-layout
column
wrap
class="my-5"
align-center
>
<v-flex xs12 sm4 class="my-3">
<div class="text-xs-center">
<h2 class="headline primary-color">What is Carbonara?</h2>
<span class="subheading">
Carbonara is a web platform designed for reverse engineers and malware analysts to improve their work.
</span>
</div>
</v-flex>
<v-flex xs12>
<v-container grid-list-xl>
<v-layout row wrap align-center>
<v-flex xs12 md4>
<v-card class="elevation-0 transparent">
<v-card-text class="text-xs-center">
<v-icon class="main-icon text--lighten-2 primary-color">desktop_windows</v-icon>
</v-card-text>
<v-card-title primary-title class="layout justify-center">
<div class="headline text-xs-center">Retrieve info about
procedures</div>
</v-card-title>
<v-card-text>
Upload your .idb or binary file and retrieve useful comments
and tips on every single procedure. Oh, and don't forget to
include yours when uploading.
</v-card-text>
</v-card>
</v-flex>
<v-flex xs12 md4>
<v-card class="elevation-0 transparent">
<v-card-text class="text-xs-center">
<v-icon class="main-icon text--lighten-2 primary-color">flash_on</v-icon>
</v-card-text>
<v-card-title primary-title class="layout justify-center">
<div class="headline">Speed up your
analysis</div>
</v-card-title>
<v-card-text>
Does your executable file contain functions from other binaries? Well, now through Carbonara
you can untangle the puzzle and easily recognize what every procedure does.
</v-card-text>
</v-card>
</v-flex>
<v-flex xs12 md4>
<v-card class="elevation-0 transparent">
<v-card-text class="text-xs-center">
<v-icon class="main-icon primary-color text--lighten-2">people</v-icon>
</v-card-text>
<v-card-title primary-title class="layout justify-center">
<div class="headline text-xs-center">Connect with other
reverse engineers</div>
</v-card-title>
<v-card-text>
If you need some help during your reversing process, you can connect
with colleagues all around the world and instantly share or inquire about information.
</v-card-text>
</v-card>
</v-flex>
</v-layout>
</v-container>
</v-flex>
</v-layout>
</section>
<section>
<v-parallax src="https://images.unsplash.com/photo-1484807352052-23338990c6c6?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=6f3cb0473315ed1eca1b47d280bb2ab1&auto=format&fit=crop&w=1500&q=80" height="380">
<v-layout column align-center justify-center>
<div class="headline white--text mb-3 text-xs-center">Join the community.</div>
<em>Join our community of security researchers.</em>
<v-btn
class="mt-5 primary-btn"
dark
large
href="https://carbonaraproject.com/"
>
Get Started
</v-btn>
</v-layout>
</v-parallax>
</section>
<section>
<div class="text-xs-center">
<h2 class="headline primary-color team-header">Our Team</h2>
</div>
<v-layout style="margin-top:60px;">
<v-flex xs12 sm6 md2 offset-md2>
<v-card>
<v-card-media src="img/avatar-paliotta.jpg" height="350px">
</v-card-media>
<v-card-title primary-title>
<div>
<h3 class="headline mb-0">Daniele Paliotta</h3>
</div>
</v-card-title>
<v-card-actions>
<v-btn href="http://github.com/dpstart" flat class="primary-color">Github</v-btn>
<v-btn href="https://www.linkedin.com/in/daniele-paliotta-455139a2/" flat class="primary-color">Linkedin</v-btn>
</v-card-actions>
</v-card>
</v-flex>
<v-flex xs12 sm6 md2 offset-md1>
<v-card>
<v-card-media src="img/avatar-tulimiero.jpeg" height="350px">
</v-card-media>
<v-card-title primary-title>
<div>
<h3 class="headline mb-0">Andrea Tulimiero</h3>
</div>
</v-card-title>
<v-card-actions>
<v-btn href="https://github.com/andreatulimiero" flat class="primary-color">Github</v-btn>
<v-btn href="https://it.linkedin.com/in/andrea-tulimiero-78448482" flat class="primary-color">Linkedin</v-btn>
</v-card-actions>
</v-card>
</v-flex>
<v-flex xs12 sm6 md2 offset-md1>
<v-card>
<v-card-media src="img/avatar-fioraldi.jpg" height="350px">
</v-card-media>
<v-card-title primary-title>
<div>
<h3 class="headline mb-0">Andrea Fioraldi</h3>
</div>
</v-card-title>
<v-card-actions>
<v-btn href="https://github.com/andreafioraldi" flat class="primary-color">Github</v-btn>
<v-btn href="https://it.linkedin.com/in/andrea-fioraldi" flat class="primary-color">Linkedin</v-btn>
</v-card-actions>
</v-card>
</v-flex>
</v-layout>
<v-layout style="margin-top:60px;">
<v-flex xs12 sm6 md2 offset-md2>
<v-card>
<v-card-media src="img/avatar-pileggi.jpg" height="350px">
</v-card-media>
<v-card-title primary-title>
<div>
<h3 class="headline mb-0">Luigi Paolo Pileggi</h3>
</div>
</v-card-title>
<v-card-actions>
<v-btn href="https://github.com/rop2bash" flat class="primary-color">Github</v-btn>
<v-btn href="https://it.linkedin.com/in/luigi-paolo-pileggi-53ab9913a" flat class="primary-color">Linkedin</v-btn>
</v-card-actions>
</v-card>
</v-flex>
<v-flex xs12 sm6 md2 offset-md1>
<v-card>
<v-card-media src="img/avatar-ferrera.jpg" height="350px">
</v-card-media>
<v-card-title primary-title>
<div>
<h3 class="headline mb-0">Luca Ferrera</h3>
</div>
</v-card-title>
<v-card-actions>
<v-btn href="https://github.com/Luca-Ferrera" flat class="primary-color">Github</v-btn>
<v-btn href="https://it.linkedin.com/in/luca-ferrera-6a0b86138" flat class="primary-color">Linkedin</v-btn>
</v-card-actions>
</v-card>
</v-flex>
<v-flex xs12 sm6 md2 offset-md1>
<v-card>
<v-card-media src="img/avatar-cappuccio.jpg" height="350px">
</v-card-media>
<v-card-title primary-title>
<div>
<h3 class="headline mb-0">Daniele Cappuccio</h3>
</div>
</v-card-title>
<v-card-actions>
<v-btn href="https://github.com/daniele-cappuccio" flat class="primary-color">Github</v-btn>
<v-btn href="https://www.linkedin.com/in/daniele-cappuccio" flat class="primary-color">Linkedin</v-btn>
</v-card-actions>
</v-card>
</v-flex>
</v-layout>
</section>
<section>
<v-container grid-list-xl>
<v-layout row wrap justify-center class="my-5">
<v-flex xs12 sm4>
<v-card class="elevation-0 transparent">
<v-card-title primary-title class="layout justify-center">
<div class="headline">Company info</div>
</v-card-title>
<v-card-text>
Carbonara is a malware analysis/reverse engineering platform
whose main focus is to create a community of contributors.
</v-card-text>
</v-card>
</v-flex>
<v-flex xs12 sm4 offset-sm1>
<v-card class="elevation-0 transparent">
<v-card-title primary-title class="layout justify-center">
<div class="headline">Contact us</div>
</v-card-title>
<v-list class="transparent">
<v-list-tile>
<v-list-tile-action>
<v-icon class="text--lighten-2 primary-color">place</v-icon>
</v-list-tile-action>
<v-list-tile-content>
<v-list-tile-title>Rome, Italy</v-list-tile-title>
</v-list-tile-content>
</v-list-tile>
<v-list-tile>
<v-list-tile-action>
<v-icon class="text--lighten-2 primary-color">email</v-icon>
</v-list-tile-action>
<v-list-tile-content>
<v-list-tile-title>[email protected]</v-list-tile-title>
</v-list-tile-content>
</v-list-tile>
</v-list>
</v-card>
</v-flex>
</v-layout>
</v-container>
</section>
<v-footer class="primary-btn">
<v-layout row wrap align-center>
<v-flex xs12>
<div class="white--text ml-3">
© 2018 Carbonara Project
</div>
</v-flex>
</v-layout>
</v-footer>
</v-content>
</v-app>
</div>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vuetify/dist/vuetify.js"></script>
<script>
new Vue({
el: '#app',
data () {
return {
title: 'Carbonara Project'
}
},
methods: {
}
})
</script>
</body>
</html>