109 lines
3.4 KiB
HTML
109 lines
3.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
|
|
<title>Sécurité informatique</title>
|
|
|
|
<link rel="stylesheet" href="reveal.js/dist/reset.css">
|
|
<link rel="stylesheet" href="reveal.js/dist/reveal.css">
|
|
<link rel="stylesheet" href="reveal.js/dist/theme/black.css">
|
|
|
|
<!-- Theme used for syntax highlighted code -->
|
|
<link rel="stylesheet" href="reveal.js/plugin/highlight/monokai.css">
|
|
</head>
|
|
<body>
|
|
<div class="reveal">
|
|
<div class="slides">
|
|
<section data-markdown data-separator="^\n---\n$" data-separator-vertical="^\n--\n$">
|
|
<script type="text/template">
|
|
# Sécurité informatique
|
|
### Comprendre les enjeux et déjouer les pièges
|
|
Ou comment être (un peu) parano peut parfois aider
|
|
![make_logo](images/make_logo.png)<!-- .element height="15%" width="15%"
|
|
position="absolute" bottom="0" right="0"-->
|
|
![make__foundation_logo](images/make_foundation_logo.png)<!-- .element height="15%" width="15%"
|
|
position="absolute" bottom="0" right="0"-->
|
|
|
|
---
|
|
|
|
## Sommaire
|
|
<span style="font-size:70%">
|
|
|
|
1. Contexte
|
|
2. Types d'attaque
|
|
* Phishing
|
|
* Exploitation d'absence de chiffrement
|
|
* Fichier malicieux
|
|
3. Bonnes pratiques
|
|
* Identifiants et MFA
|
|
* Connection aux services
|
|
* Protection des données
|
|
* Moyen de communication (?)
|
|
* Chiffrement
|
|
4. Potentiels impacts
|
|
5. Ressources
|
|
* En amont
|
|
* Après une attaque
|
|
|
|
</span>
|
|
|
|
---
|
|
|
|
## Contexte
|
|
* ~ 90 comptes Make.org actif
|
|
* Autant d'ordinateurs
|
|
* ~ 1000 mails reçus/jour
|
|
* \> 1,2 To de données sur le Drive
|
|
* Travail en itinérance
|
|
|
|
---
|
|
|
|
## Types d'attaque
|
|
À quoi vous attendre
|
|
|
|
--
|
|
|
|
### Phishing
|
|
Pratique qui consiste à contacter une victime en se faisant passer pour une source légitime afin de lui soutirer des informations sensibles
|
|
|
|
</script>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="reveal.js/dist/reveal.js"></script>
|
|
<script src="reveal.js/plugin/notes/notes.js"></script>
|
|
<script src="reveal.js/plugin/markdown/markdown.js"></script>
|
|
<script src="reveal.js/plugin/highlight/highlight.js"></script>
|
|
<script src="reveal.js/plugin/zoom/zoom.js"></script>
|
|
<script src="custom_plugins/mermaid/mermaid.js"></script>
|
|
<script src="custom_plugins/pdfexport/pdfexport.js"></script>
|
|
<script>
|
|
// More info about initialization & config:
|
|
// - https://revealjs.com/initialization/
|
|
// - https://revealjs.com/config/
|
|
Reveal.initialize({
|
|
hash: true,
|
|
controls: true,
|
|
progres: true,
|
|
history: true,
|
|
center: true,
|
|
slideNumber: true,
|
|
overview: true,
|
|
|
|
// mermaid initialize config
|
|
mermaid: {
|
|
// flowchart: {
|
|
// curve: 'linear',
|
|
// },
|
|
},
|
|
|
|
// Learn about reveal.js/plugins: https://revealjs.com/reveal.js/plugins/
|
|
plugins: [ RevealMarkdown, RevealMermaid, RevealHighlight, RevealNotes, RevealZoom, PdfExport ],
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|