-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
219 lines (181 loc) · 6.65 KB
/
index.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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
---
layout: default
---
<script type="text/javascript">
const randomRoninCLIExamples = [
"ronin_http",
"ronin_grep_extract",
"ronin_dns_enum"
];
(() => {
const ready = (callback) => {
if (document.readyState != "loading") callback();
else document.addEventListener("DOMContentLoaded", callback);
}
ready(() => {
let newRoninCLIObject = document.createElement("object");
let randomRoninCLIExample = randomRoninCLIExamples[Math.floor(Math.random() * randomRoninCLIExamples.length)];
newRoninCLIObject.setAttribute("class","demo");
newRoninCLIObject.setAttribute("data",`/images/demos/${randomRoninCLIExample}_js.svg`);
let roninCLIDemo = document.querySelector("#ronin-cli-demo");
roninCLIDemo.prepend(newRoninCLIObject);
});
})();
</script>
<main id="key-points">
<div class="key-point">
<section class="container content">
<div class="columns is-vcentered">
<div class="column">
<h1>A Security Toolkit</h1>
{% capture description %}{% include description.md %}{% endcapture %}
{{ description | markdownify }}
</div>
<div class="column">
<object class="demo" data="/images/demos/ronin_help.svg" type="image/svg+xml"></object>
</div>
</div>
</section>
</div>
<div id="ruby" class="key-point">
<section class="container content">
<div class="columns is-vcentered">
<div class="column is-half has-text-centered">
<img id="ruby-logo" src="/images/ruby.svg" height="30%" width="30%" />
</div>
<div class="column is-half">
<h1>Ruby Supercharged</h1>
<p>Ronin builds on top of Ruby and adds even more libraries, classes, and methods to make Ruby even easier to use and more powerful!</p>
</div>
</div>
</section>
</div>
<div id="cli" class="key-point">
<section class="container content">
<div class="columns is-vcentered">
<div class="column">
<h1>Powerful CLI</h1>
<p>Ronin provides many powerful CLI commands.</p>
</div>
<div id="ronin-cli-demo" class="column">
<noscript>
<object class="demo" data="/images/demos/ronin_http.svg" type="image/svg+xml"></object>
<div class="notification is-warning">
<p>You have JavaScript disabled.</p>
</div>
</noscript>
</div>
</div>
</section>
</div>
<div id="scriptable" class="key-point">
<section class="container content">
<div class="columns is-vcentered">
<div class="column">
{% include examples/dns_enum.rb.html %}
</div>
<div class="column">
<h1>Fully Scriptable</h1>
<p>Ronin is made up of different Ruby <a href="https://github.com/ronin-rb">libraries</a> and <a href="/docs/#api">powerful APIs</a> that you can use in Ruby scripts or in the Ruby console.</p>
</div>
</div>
</section>
</div>
<div id="install" class="key-point">
<section class="container content">
<h1>Easy To Install</h1>
<p>Installing Ronin is as easy as copy/pasting the following command into your terminal:</p>
{% capture install_script %}{% include install_script.md %}{% endcapture %}
{{ install_script | markdownify }}
</section>
</div>
<div id="docker" class="key-point">
<section class="container content">
<div class="columns is-vcentered">
<div class="column is-half has-text-centered">
{% include images/docker.svg %}
</div>
<div class="column is-half">
<h1>Dockerized</h1>
<p>Ronin also has <a href="https://hub.docker.com/r/roninrb/ronin">Docker images</a>.</p>
{% capture docker_install %}{% include docker_install.md %}{% endcapture %}
{{ docker_install | markdownify }}
</div>
</div>
</section>
</div>
<div id="high-quality" class="key-point">
<section class="container content">
<div class="columns is-vcentered">
<div class="column is-on-half">
<h1>High Quality</h1>
<p>
Ronin strives to have at least 90% test coverage and 80% documentation
coverage.
</p>
</div>
<div class="column is-on-half has-text-centered">
{% include images/green_a.svg %}
</div>
</div>
</section>
</div>
<div id="ecosystem" class="key-point">
<section class="container content">
<h1>Rich Ecosystem</h1>
<table class="table">
<tbody>
{% for library in site.libraries %}
<tr>
<td>
<a href="https://github.com/ronin-rb/{{ library[0] }}#readme">{{ library[0] }}</a>
</td>
<td>
<a href="https://rubygems.org/gems/{{ library[0] }}/versions/{{ library[1].version }}">{{ library[1].version }}</a>
</td>
<td>{{ library[1].description }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
</div>
<div class="chevron-down"></div>
<section id="contact" class="container has-text-centered">
<div class="content">
<h1 class="hero">Get Involved</h1>
</div>
<div id="social-media-links" class="columns">
<div class="column is-one-fifth social-media-link is-vcentered">
<a class="button is-multiline is-large has-text-weight-bold" href="https://github.com/ronin-rb" title="GitHub">
{% include images/github.svg %}
<p>GitHub</p>
</a>
</div>
<div class="column is-one-fifth social-media-link is-vcentered">
<a class="button is-multiline is-large has-text-weight-bold" href="{{ site.discord_link }}" title="Discord">
{% include images/discord.svg %}
<p>Discord</p>
</a>
</div>
<div class="column is-one-fifth social-media-link is-vcentered">
<a class="button is-multiline is-large has-text-weight-bold" href="https://infosec.exchange/@ronin_rb" title="Mastodon">
{% include images/mastodon.svg %}
<p>Mastodon</p>
</a>
</div>
<div class="column is-one-fifth social-media-link is-vcentered">
<a class="button is-multiline is-large has-text-weight-bold" href="https://github.com/sponsors/ronin-rb" title="Mastodon">
{% include images/donate.svg %}
<p>Donate</p>
</a>
</div>
<div class="column is-one-fifth social-media-link is-vcentered">
<a class="button is-multiline is-large has-text-weight-bold" href="https://merch.ronin-rb.dev/" title="Merch">
{% include images/merch.svg %}
<p>Merch</p>
</a>
</div>
</div>
</div>
</main>