forked from psypanda/hashID
-
Notifications
You must be signed in to change notification settings - Fork 1
/
types.html
62 lines (62 loc) · 2.15 KB
/
types.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
---
layout: default
subtitle: Hash types
---
<div class="container mb-15">
<h3>Resources</h3>
<p>
Various useful resources
</p>
<ul>
<li><a target="_blank" href="https://github.com/psypanda/hashID">psypanda/hashID (original hashID)</a></li>
<li><a target="_blank" href="https://en.wikipedia.org/wiki/List_of_hash_functions">wikipedia.org - List of hash functions</a></li>
<li><a target="_blank" href="https://hashcat.net/hashcat/">hashcat.net</a>
<ul>
<li><a target="_blank" href="https://hashcat.net/wiki/">wiki</a></li>
<li><a target="_blank" href="https://hashcat.net/wiki/doku.php?id=example_hashes">wiki example hashes</a></li>
</ul>
</li>
<li><a target="_blank" href="https://www.openwall.com/john/">openwall.com - John the Ripper</a>
<ul>
<li><a target="_blank" href="https://openwall.info/wiki/">community wiki</a></li>
</ul>
</li>
</ul>
</div>
<div class="container">
<h3>Hash Types</h3>
<p>
Quick reference for all hash types checked by this application and values for hashcat and John the Ripper.
</p>
<p style="font-family: Consolas">
> ./hashcat.exe -m {mode}
<br>
$ john --format={format}
</p>
</div>
<div class="container">
<div class="options table-responsive">
<table id="typesTable" class="table" style="margin-top: 16px;">
<thead class="thead-dark">
<tr>
<th scope="col">Type</th>
<th scope="col">hashcat</th>
<th scope="col">John</th>
</tr>
</thead>
<tbody>
{% assign definitions = site.data.hash_definitions %}
{% for regex in definitions %}
{% for hash_type in regex.modes %}
<tr data-extended="{{ hash_type.extended }}">
<td>{{hash_type.name}}</td>
<td>{{hash_type.hashcat}}</td>
<td>{{hash_type.john}}</td>
</tr>
{% endfor %}
{% endfor %}
</tbody>
</table>
</div>
</div>
<br>