-
Notifications
You must be signed in to change notification settings - Fork 2
/
write-up.html
63 lines (50 loc) · 3.47 KB
/
write-up.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
<!DOCTYPE html>
<html>
<head>
<title>archX</title>
<meta charset="utf-8">
<link rel="stylesheet" href = "css/index.css">
<link rel="stylesheet" href="css/label.css">
</head>
<body>
<header>
<!-- Toolbar -->
<nav>
<a href="index.html">Home</a>
<a href="news.html">News</a>
<a href="open-source.html">Open Source</a>
<a href="forum.html">Forum</a>
<a href="article.html">Articles</a>
<a href="write-up.html">Write-up</a>
<a href="ressources.html">Ressources</a>
<button id="dark-mode-toggle" class="btn" style="background: none; border: none; cursor: pointer; font-size: 1.5em;">
<span id="theme-icon">🌙</span>
</button>
</nav>
</header>
<h1 class="page-title">Write-up</h1>
<p>The first three write-ups are mine, the others are some interesting ones I've found.</p>
<!-- Write-up -->
<div class=article>
<hr>
<h2><a href="https://github.com/Bl4omArchie/Write-Up/blob/main/crypto/RsaBookCTF.md" target="_blank">RSA book CTF</a> </h2>I participated to the second edition of the bookCTF, there is two simple challenge with RSA</p>
<hr>
<h2><a href="https://github.com/Bl4omArchie/Write-Up/blob/main/crypto/dvCTF-utCTF.md" target="_blank">DaVinci CTF and utCTF</a> </h2> Two write-up that I've made on two CTF at the same time. The first challenge is about RSA and the second one DH</p>
<hr>
<h2><a href="https://ret2school.github.io/post/writeuprsa/" target="_blank">Frank, recovering a full RSA private key </a> </h2> a good challenge that I'v done with a friend at the Midnight Sun CTF. We get a privet key with hidden part and from the clear part, we need to recover the entire key</p>
<hr>
<h2><a href="https://siben.eu/xoring-networks.html" target="_blank">Xoring Network </a> </h2> an hard challenge that I tryied at the 2020 FCSC. This challenge is really hard and the code solution is in C and python </p>
<hr>
<h2><a href="https://www.hackademint.org/Baby_Xoring_Networks" target="_blank">Baby Xoring Network</a> </h2> Same challenge from the same CTF but less hard and you only need python</p>
<hr>
<h2><a href="https://hackmd.io/@jack4818/B1RXIH_ZD" target="_blank">2020 CryptoCTF </a> </h2> All the write-up from the 2020 CryptoCTF by the Cryptohack team</p>
<hr>
<h2><a href="https://hackmd.io/DBUeU7cMQlihBUVSYPhJlQ" target="_blank">2021 CryptoCTF </a>, <a href="https://hackmd.io/81k7HZi1QVCcxT0rksbGAA" target="_blank">2021 CryptoCTF </a>, <a href="https://hackmd.io/p0CTvBKbSpSfFmLLoNjw0Q#Wolf" target="_blank">2021 CryptoCTF </a>, <a href="https://blog.cryptohack.org/cryptoctf2021-hard#tiny-ecc">2021 CryptoCTF unsolved flag</a></h2> All the write-up from the 2021 CryptoCTF by the Cryptohack team (i was into it ! but they were too fast for me xD )</p>
<hr>
<h2><a href="https://bitsdeep.com/write-ups/fcsc-2021-write-ups-for-the-crypto-challenges/" target="_blank">2021 FCSC</a> </h2> you can find all the write-up about crypto of the 2021 FCSC ctf made by Enoent</p>
<hr>
<h2><a href="https://jsur.in/posts/2021-08-29-cakectf-2021-writeups#party-ticket" target="_blank">CakeCTF 2021 Writeups</a> </h2> Nice write-up about coppersmith</p>
</div>
<script src="scripts/general_util.js"></script>
</body>
</html>