-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (94 loc) · 3.99 KB
/
Copy pathindex.html
File metadata and controls
100 lines (94 loc) · 3.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blockchain Security Audit Toolkit</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="#">Security Audit Toolkit</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#documentation">Documentation</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/314-hash/securityaudits.github.io">GitHub</a>
</li>
</ul>
</div>
</div>
</nav>
<header class="hero">
<div class="container">
<h1>Blockchain Security Audit Toolkit</h1>
<p class="lead">A comprehensive Python-based toolkit for conducting thorough blockchain and DeFi smart contract security audits</p>
<a href="https://github.com/314-hash/securityaudits.github.io" class="btn btn-primary btn-lg">View on GitHub</a>
</div>
</header>
<section id="features" class="py-5">
<div class="container">
<h2 class="text-center mb-4">Key Features</h2>
<div class="row">
<div class="col-md-4">
<div class="feature-card">
<h3>Signature Analysis</h3>
<p>Advanced pattern matching for detecting high and medium risk function signatures in smart contracts.</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-card">
<h3>Risk Assessment</h3>
<p>Comprehensive risk level determination and detailed security recommendations.</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-card">
<h3>DeFi Focused</h3>
<p>Specialized analysis for DeFi protocols and common attack vectors.</p>
</div>
</div>
</div>
</div>
</section>
<section id="documentation" class="py-5 bg-light">
<div class="container">
<h2 class="text-center mb-4">Documentation</h2>
<div class="row">
<div class="col-md-6">
<h3>Installation</h3>
<pre><code>pip install web3 eth-utils eth-abi
git clone https://github.com/314-hash/securityaudits.github.io
cd securityaudits.github.io</code></pre>
</div>
<div class="col-md-6">
<h3>Quick Start</h3>
<pre><code>from audit_tools.signature_analyzer import SignatureAnalyzer
analyzer = SignatureAnalyzer()
results = analyzer.analyze_signatures([
"transferOwnership(address)",
"delegatecall(bytes)",
"withdraw(uint256)"
])</code></pre>
</div>
</div>
</div>
</section>
<footer class="footer bg-dark text-white py-4">
<div class="container text-center">
<p>Created by <a href="https://github.com/314-hash">314-hash</a></p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>