-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
215 lines (195 loc) · 8.5 KB
/
index.html
File metadata and controls
215 lines (195 loc) · 8.5 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="TermuxVoid APT Repository - 100+ advanced security tools excluded from official Termux repos, compiled and optimized for Android. Browse, search, and install.">
<meta name="keywords" content="termux, security tools, pentesting, apt repository, termuxvoid">
<meta name="theme-color" content="#0d1117">
<title>TermuxVoid APT Repository</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- ========== Header ========== -->
<header class="header">
<a class="header__logo" href="#">
<img src="https://termuxvoid.github.io/repo/img/termuxvoid_logo.png" alt="TermuxVoid Logo">
TermuxVoid
</a>
<button class="menu-btn" id="menuBtn" aria-label="Toggle menu">☰</button>
<nav class="header__nav" id="navLinks">
<a href="#overview">Overview</a>
<a href="#tools">Tools</a>
<a href="#installation">Installation</a>
<a href="#faq">FAQ</a>
<a href="#support">Support</a>
</nav>
</header>
<!-- ========== Hero ========== -->
<section class="hero">
<h1 class="hero__title">TermuxVoid APT Repository</h1>
<p class="hero__subtitle">Extra Security Tools for Termux — Ethical Hacking, Bug Bounty & More</p>
<div class="hero__badges">
<a href="https://github.com/TermuxVoid/repo/stargazers">
<img src="https://img.shields.io/github/stars/TermuxVoid/repo?style=for-the-badge&logo=github&color=ffd700&labelColor=0d1117" alt="GitHub Stars">
</a>
<a href="https://github.com/TermuxVoid/repo/blob/main/LICENSE">
<img src="https://img.shields.io/badge/License-BSD_3--Clause-blue?style=for-the-badge&logo=opensourceinitiative" alt="License">
</a>
</div>
<a class="hero__cta" href="https://github.com/termuxvoid/repo">View Repo →</a>
</section>
<!-- ========== Overview ========== -->
<div class="section" id="overview">
<div class="section__card">
<h2 class="section__title"><span class="icon">🔍</span> What is TermuxVoid?</h2>
<p>Extra tools not available in official Termux repos or excluded from it. Covers ethical hacking, bug bounty, cyber security, reverse engineering, and more. Compiled natively for Android. Includes root packages — see <a href="https://github.com/TermuxVoid/repo/blob/main/assets/root-repo.md">root-repo.md</a>.</p>
<div class="stats">
<div class="stat">
<div class="stat__number" id="toolCount">--</div>
<div class="stat__label">Tools Available</div>
</div>
<div class="stat">
<div class="stat__number">24/7</div>
<div class="stat__label">Auto Updates</div>
</div>
<div class="stat">
<div class="stat__number">100%</div>
<div class="stat__label">Open Source</div>
</div>
</div>
</div>
</div>
<!-- ========== Search & Tools ========== -->
<div class="section search-section" id="tools">
<div class="section__card">
<h2 class="section__title"><span class="icon">⚡</span> Browse Tools</h2>
<div class="search-wrapper">
<span class="search__icon">🔍</span>
<input
type="text"
class="search__input"
id="searchInput"
placeholder="Search tools by name, description, or category..."
autocomplete="off"
spellcheck="false"
>
<button class="search__clear" id="searchClear" aria-label="Clear search">×</button>
</div>
<p class="search__meta" id="searchMeta">Loading tools...</p>
<div class="tools-grid" id="toolsGrid">
<!-- JS populates this -->
</div>
</div>
</div>
<!-- ========== Installation ========== -->
<div class="section" id="installation">
<div class="section__card">
<h2 class="section__title"><span class="icon">🚀</span> Quick Start</h2>
<p style="color: var(--text-secondary); margin-bottom: 1rem;">Get started in two simple commands:</p>
<div class="code-block">
<button class="copy-btn">Copy</button>
<pre><code># Add repository
curl -sL https://termuxvoid.github.io/repo/install.sh | bash</code></pre>
</div>
<div class="code-block">
<button class="copy-btn">Copy</button>
<pre><code># Install any tool
pkg install <tool-name></code></pre>
</div>
<div class="code-block">
<button class="copy-btn">Copy</button>
<pre><code># Example
pkg install metasploit-framework</code></pre>
</div>
</div>
</div>
<!-- ========== FAQ ========== -->
<div class="section" id="faq">
<div class="section__card">
<h2 class="section__title"><span class="icon">❓</span> FAQ</h2>
<details class="faq-item">
<summary>Are these tools legal to use?</summary>
<div class="faq-item__content">
<p>All tools are for <strong>legal security research and ethical hacking purposes only</strong>. Always obtain proper authorization before testing systems you do not own.</p>
</div>
</details>
<details class="faq-item">
<summary>How often are tools updated?</summary>
<div class="faq-item__content">
<ul>
<li>Security patches within 24 hours</li>
<li>Version updates every Sunday</li>
<li>Emergency fixes as needed</li>
</ul>
</div>
</details>
<details class="faq-item">
<summary>Can I request new tools?</summary>
<div class="faq-item__content">
<p>Yes! Submit requests via:</p>
<ul>
<li><a href="https://github.com/TermuxVoid/repo/issues">GitHub Issues</a></li>
<li>Telegram <a href="https://t.me/nullxvoid">@nullxvoid</a></li>
<li>Email: <a href="mailto:termuxvoid@gmail.com">termuxvoid@gmail.com</a></li>
</ul>
</div>
</details>
<details class="faq-item">
<summary>How do I report a broken package?</summary>
<div class="faq-item__content">
<p>Open an issue on <a href="https://github.com/TermuxVoid/repo/issues">GitHub</a> with the tool name and error output. We aim to fix reported issues within 24 hours.</p>
</div>
</details>
</div>
</div>
<!-- ========== Support ========== -->
<div class="section" id="support">
<div class="section__card community">
<h2 class="section__title" style="justify-content: center;"><span class="icon">🌐</span> Support & Community</h2>
<div class="community__links">
<a class="community__link" href="https://t.me/nullxvoid">💬 Telegram</a>
<a class="community__link" href="https://youtube.com/@alienkrishnorg">🎥 YouTube</a>
<a class="community__link" href="https://github.com/TermuxVoid/repo/issues">📄 GitHub Issues</a>
</div>
<p class="community__note">Star the repo · Report issues responsibly · Share with the community</p>
</div>
</div>
<!-- ========== Footer ========== -->
<footer class="footer">
<div>
<h3>TermuxVoid</h3>
<p>Security tools excluded from official Termux repos, plus custom builds. Built for security researchers.</p>
</div>
<div>
<h3>Quick Links</h3>
<ul>
<li><a href="#overview">Overview</a></li>
<li><a href="#tools">Tools</a></li>
<li><a href="#installation">Installation</a></li>
<li><a href="#faq">FAQ</a></li>
</ul>
</div>
<div>
<h3>Resources</h3>
<ul>
<li><a href="https://github.com/termuxvoid/repo">GitHub Repo</a></li>
<li><a href="https://github.com/TermuxVoid/repo/blob/main/assets/PACKAGES.md">Package List</a></li>
<li><a href="https://github.com/TermuxVoid/repo/blob/main/LICENSE">License</a></li>
</ul>
</div>
<div class="footer__credits">
© 2026 TermuxVoid. Maintained by the Void Team.
</div>
</footer>
<!-- ========== Back to Top ========== -->
<button class="back-to-top" id="backToTop" aria-label="Back to top">↑</button>
<!-- ========== Scripts ========== -->
<script src="js/packages.js"></script>
<script src="js/search.js"></script>
<script src="js/app.js"></script>
</body>
</html>