-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (105 loc) · 3.8 KB
/
Copy pathindex.html
File metadata and controls
116 lines (105 loc) · 3.8 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>BloomBit</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="BloomBit: Collection of content regarding program analysis, reverse engineering and bug hunting."
/>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="page">
<header>
<div class="brand">
<div class="logo" aria-hidden="true"></div>
<div>
<div class="brand-text-main">BloomBit</div>
<div class="brand-text-sub">program analysis & reverse engineering</div>
</div>
</div>
<nav>
<a href="https://www.bloombit.dev">home</a>
<a href="https://github.com/bloombit-dev">github</a>
</nav>
</header>
<main>
<section class="hero" aria-labelledby="hero-title">
<h1 id="hero-title">
<u>Find</u> <span>bugs</span><br>
<u>with</u> <span>program analysis</span>
</h1>
<section id="posts" class="posts-section" aria-label="Latest posts">
<div class="posts-heading">Blog</div>
<div class="posts-list">
<!-- Post 1 -->
<article class="post-card">
<h2 class="post-title">
<a href="./documentation/beluga/index.html">Beluga Documentation</a>
</h2>
<div class="post-meta">
Haskell · Binary Ninja · Documentation
</div>
<p class="post-summary">
Documentation for Beluga: Haskell bindings and program analysis for binary ninja.
</p>
<!-- Post 2 -->
<article class="post-card">
<h2 class="post-title">
<a href="./blog/haskell_binja_ffi.html">Notes on Haskell bindings for Binja</a>
</h2>
<div class="post-meta">
FFI · Haskell · Binary Ninja
</div>
<p class="post-summary">
Notes on writing bindings in Haskell for binary ninja.
</p>
</article>
</section>
<section id="projects" class="posts-section" aria-label="Open source projects">
<div class="posts-heading">Open Source Projects</div>
<div class="posts-list">
<article class="post-card">
<h2 class="post-title">
<a href="https://github.com/bloombit-dev/beluga">beluga</a>
</h2>
<div class="post-meta">
Binary Ninja FFI · program analysis · Haskell
</div>
<p class="post-summary">
Haskell bindings and program analysis for binary ninja.
<img src="./assets/beluga.png" alt="logo, ninja beluga whale" class="transparent-img"
width="127.5" height="133.3"
style="opacity: 0.95; display: block; margin: 0.6rem auto 0;"
>
</p>
</article>
</div>
</section>
</section>
<aside class="sidebar">
<section id="about" class="sidebar-block">
<div class="sidebar-title">About BloomBit</div>
<p class="sidebar-body">
I'm a vulnerability researcher. The theme of this site is
auditing software, reverse engineering and documentation.
</p>
</section>
<section class="sidebar-block contact-mini" id="contact">
<div class="sidebar-title">Contact</div>
<div class="sidebar-body">
</div>
<div class="sidebar-body">
Email: <code>hello@bloombit.dev</code>
</div>
<div class="sidebar-body">
Signal: <code>bloombit.33</code>
</div>
</section>
</aside>
</main>
</div>
</body>
</html>