mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
86 lines
2.4 KiB
HTML
86 lines
2.4 KiB
HTML
<html>
|
|
<head>
|
|
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet" />
|
|
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
|
|
/>
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Noto+Sans+SC&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<style>
|
|
body {
|
|
/* background: rgb(221, 208, 208); */
|
|
/* background:#333; */
|
|
font-family: 'Arial';
|
|
/* font-size: 18px !important; */
|
|
}
|
|
h1 {
|
|
color: grey;
|
|
}
|
|
.mermaid2 {
|
|
display: none;
|
|
}
|
|
.mermaid svg {
|
|
/* font-size: 18px !important; */
|
|
}
|
|
.malware {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 150px;
|
|
background: red;
|
|
color: black;
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-family: monospace;
|
|
font-size: 72px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>Security check</div>
|
|
<div class="flex">
|
|
<div id="diagram" class="mermaid"></div>
|
|
<div id="graph-div"></div>
|
|
<div id="res" class=""></div>
|
|
</div>
|
|
<script type="module">
|
|
import mermaid from './mermaid.esm.mjs';
|
|
mermaid.parseError = function (err, hash) {
|
|
// console.error('Mermaid error: ', err);
|
|
};
|
|
mermaid.initialize({
|
|
theme: 'base',
|
|
startOnLoad: false,
|
|
flowcharts: { htmlLabels: true },
|
|
});
|
|
function callback() {
|
|
alert('It worked');
|
|
}
|
|
function xssAttack() {
|
|
const div = document.createElement('div');
|
|
div.id = 'the-malware';
|
|
div.className = 'malware';
|
|
div.innerHTML = 'XSS Succeeded';
|
|
document.getElementsByTagName('body')[0].appendChild(div);
|
|
throw new Error('XSS Succeeded');
|
|
}
|
|
|
|
let diagram = `graph TD
|
|
A[["a marker-end=#quot;url(<s title='#<style>*{background:red}</style>'>b"]]
|
|
`;
|
|
const el = document.querySelector('#graph-div');
|
|
console.log(diagram);
|
|
const { svg } = await mermaid.render('graph-div', diagram);
|
|
document.querySelector('#res').innerHTML = svg;
|
|
window.rendered = true;
|
|
</script>
|
|
</body>
|
|
</html>
|