-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
58 lines (48 loc) · 2.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Like a Rubber Ducky, but with barcodes">
<meta name="author" content="Astra West and ">
<!-- <link rel="shortcut icon" type="image/png" href="images/favicon.png"/> -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/barcOwned.css">
<title>barcOwned - Like a Rubber Ducky, but with barcodes</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light sticky-top">
<a class="navbar-brand" href="">barcOwned</a>
<ul class="navbar-nav navbar-nav-row mr-auto">
<li class="nav-item active">
<a class="nav-link" href="/app"><i class="fa fa-barcode" aria-hidden="true"></i> Tool</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="https://github.com/T3hUb3rK1tten/barcowned/wiki" target="_blank"><i class="fa fa-book" aria-hidden="true"></i> Docs</a>
</li>
</ul>
</nav>
<main class="container-fluid">
<section class="jumbotron">
<h1 class="display-4">barcOwned</h1>
<p class="lead">Like a Rubber Ducky, but with barcodes</p>
<hr class="my-4">
<p>The humble barcode scanner is used in virtually every industry that deals with physical products. While it may look simple, these devices actually have a surprising amount of features and complexity hidden inside. Using esoteric programming barcodes, one can instruct a scanner to type special keys and gain keyboard-like access to a machine. This allows one to execute attacks like running commands in a shell, manipulating system objects, or even editing/creating files on disk.</p>
<p>This tool, barcOwned (pronounced "barc-owned" or "bar-coned") provides a simple web tool to program a barcode scanner with certain rules, or "setup scripts", that can be used to deliver a payload. The tool is easy to customize with a minimal amount of Javascript knowledge and pull requests are welcome. Different manufacturers and models of barcode scanners use different programming barcodes, but after the baseline work of adding a new model is complete, existing scripts can be ported easily.</p>
<div>
<a class="btn btn-primary btn-lg" href="app" role="button">
<i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> Launch Tool
</a>
</div>
<div class="my-4">
<a href="https://github.com/T3hUb3rK1tten/barcowned" role="button">GitHub Project</a>
</div>
</section>
</main>
<!-- UI dependencies -->
<script src="js/lib/jquery-3.2.1.min.js"></script>
<script src="js/lib/popper.min.js"></script>
<script src="js/lib/bootstrap.min.js"></script>
</body>
</html>