chg: [new] Home page modules

pull/56/head
Christophe Vandeplas 2021-12-24 08:01:23 +01:00
parent 574f8fcc49
commit 2c7eff4a56
17 changed files with 160 additions and 0 deletions

7
data/carousel/art.yaml Normal file
View File

@ -0,0 +1,7 @@
weight: 2
title: "The art of information sharing"
description: "<p>is to
share more, smarter and faster<br/>
with your friends and allies<br/>
than your adversaries would like to.</p>"
image: "img/carousel/art.png"

View File

@ -0,0 +1,4 @@
weight: 1
title: "Open Source Threat Intelligence and Sharing Platform"
description: "<p>Share.Store.Correlate.Analyse.<br>Targeted attacks.Financial Fraud.Counter-terrorism.</p>"
image: "img/carousel/computer-website.png"

View File

@ -0,0 +1,6 @@
weight: 1
name: "The key is Automation"
icon: "fas fa-share-alt"
url: ""
description: "Isn't it sad to have a lot of data and not use it because it's too much work? Thanks to MISP you can store your IOCs in a structured manner, and thus enjoy the correlation, automated exports for IDS, or SIEM, in STIX or OpenIOC and synchronize to other MISPs. You can now leverage the value of your data without effort and in an automated manner.
[Check out MISP features](features)."

View File

@ -0,0 +1,5 @@
weight: 3
name: "By giving you will receive"
icon: "fas fa-users"
url: ""
description: "Sharing is key to fast and effective detection of attacks. Quite often similar organizations are targeted by the same Threat Actor, in the same or different Campaign. MISP will make it easier for you to share with, but also to receive from trusted partners and trust-groups. Sharing also enabled collaborative analysis and prevents you from doing the work someone else already did before. \n [Join one of the existing MISP communities](communities)."

View File

@ -0,0 +1,5 @@
weight: 4
name: "Threat Intelligence"
icon: "fas fa-brain"
url: ""
description: "TODO integration with other tools, analysis, .. "

5
data/features/open.yaml Normal file
View File

@ -0,0 +1,5 @@
weight: 6
name: "Open & Free"
icon: "fas fa-lock-open"
url: ""
description: "TODO no license cost, commercial support available, open model, open format, open API, interoperability blablabla."

View File

@ -0,0 +1,5 @@
weight: 2
name: "Simply Threats"
icon: "fas fa-thumbs-up"
url: ""
description: "The primary goal of MISP is to be used. This is why simplicity is the driving force behind the project. Storing and especially using information about threats and malware should not be difficult. MISP is there to help you get the maximum out of your data without unmanageable complexity."

View File

@ -0,0 +1,5 @@
weight: 5
name: "Visualization"
icon: "fas fa-project-diagram"
url: ""
description: "TODO "

4
data/testimonials/1.yaml Normal file
View File

@ -0,0 +1,4 @@
text: ""
name: "MISP Portal"
position: ""
avatar: "img/testimonials/misp.png"

4
data/testimonials/2.yaml Normal file
View File

@ -0,0 +1,4 @@
text: "Many MISP galaxy clusters are already available like MITRE ATT&CK, Exploit-Kit, Microsoft Activity Group actor, Preventive Measure, Ransomware, TDS, Threat actor or Tool used by adversaries. \n\nTaxonomies provide a set of already defined classifications modeling estimative language, CSIRTs/CERTs classifications, national classifications or threat model classification."
name: "MISP Galaxies & Taxonomies"
position: ""
avatar: "img/testimonials/galaxy.png"

4
data/testimonials/3.yaml Normal file
View File

@ -0,0 +1,4 @@
text: "TODO balblabla training, education, learning, best practices, ... Free & paid courses available"
name: "MISP Docu & Trainings"
position: ""
avatar: "img/testimonials/book.png"

4
data/testimonials/4.yaml Normal file
View File

@ -0,0 +1,4 @@
text: ""
name: "PyMISP"
position: ""
avatar: "img/testimonials/pymisp.png"

4
data/testimonials/5.yaml Normal file
View File

@ -0,0 +1,4 @@
text: "TODO"
name: "MISP Modules"
position: ""
avatar: "img/testimonials/modules.png"

4
data/testimonials/6.yaml Normal file
View File

@ -0,0 +1,4 @@
text: "TODO https://github.com/MISP/misp-stix"
name: "STIX & TAXII"
position: ""
avatar: "img/testimonials/stix.png"

4
data/testimonials/7.yaml Normal file
View File

@ -0,0 +1,4 @@
text: "TODO"
name: "MITRE ATT&CK"
position: ""
avatar: "img/testimonials/mitre_attack.png"

View File

@ -0,0 +1,90 @@
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
{{ partial "headers.html" . }}
{{ partial "custom_headers.html" . }}
</head>
<body>
<div id="all">
{{ partial "nav.html" . }}
{{ partial "breadcrumbs.html" . }}
<div id="content">
<div class="container">
<div class="row">
<!-- *** LEFT COLUMN *** -->
<div class="col-md-9" id="blog-post">
{{ if or .Params.author .Params.date }}
<p class="text-muted text-uppercase mb-small text-right">
{{ if isset .Params "authors" }}
{{ i18n "authorBy" }} {{ range $index, $author := .Params.authors }}{{ if $index }}, {{ end }}<a href="{{ (printf "%s/%s" ("authors" | relLangURL) ($author | urlize)) }}">{{ $author }}</a>{{ end }}
{{ end }}
{{ if and .Params.author .Params.date }} | {{ end }}
{{ if .Params.date }}
{{ $createdAt := .Date.Format .Site.Params.date_format }}
{{ range $index, $month := slice "January" "February" "March" "April" "May" "June" "July" "August" "September" "October" "November" "December" }}
{{ $createdAt = replace $createdAt $month (i18n $month) }}
{{ end }}
{{ $createdAt }}
{{ end }}
</p>
{{ end }}
{{ if isset .Params "banner" }}
<img src="{{ .Params.banner | relURL }}" class="img-responsive" alt="" >
{{ end }}
<div id="post-content">
{{ .Content }}
</div>
<!-- /#post-content -->
{{ if .Site.DisqusShortname }}
<div id="comments">
{{ template "_internal/disqus.html" . }}
</div>
{{ end }}
</div>
<!-- /#blog-post -->
<!-- *** LEFT COLUMN END *** -->
<!-- *** RIGHT COLUMN *** -->
<div class="col-md-3">
<!-- *** MENUS AND WIDGETS *** -->
{{ partial "sidebar.html" . }}
<!-- *** MENUS AND FILTERS END *** -->
</div>
<!-- /.col-md-3 -->
<!-- *** RIGHT COLUMN END *** -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</div>
<!-- /#content -->
{{ partial "footer.html" . }}
</div>
<!-- /#all -->
{{ partial "scripts.html" . }}
</body>
</html>

BIN
static/img/x-isac-logo-small.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB