-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 3.13 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
<html>
<head>
<title>Steganosaurus: The world's greatest image stegonography tool.</title>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" type="text/css" href="res/styles.css" />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/titler.js"></script>
<script type="text/javascript" src="js/mime.js"></script>
<script type="text/javascript" src="js/bloburl.js"></script>
<script type="text/javascript" src="js/functions.js"></script>
<script type="text/javascript" src="js/magic.js"></script>
<script type="text/javascript" src="js/stego.js"></script>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Steganosaurus</a>
</div>
<div>
<ul class="nav navbar-nav">
<li><a href="https://github.com/jjsullivan5196/stegonet">Web Source</a></li>
<li><a href="https://github.com/jjsullivan5196/steganosaurus">Python Version</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="col-lg-12" id="appContainer">
<div class="row" style="padding-bottom:15px"><canvas id="stegoImage" width="0" height="0">Image</canvas></div>
<div id="appButtons" class="row">
<div class="input-group col-lg-4">
<div class="input-group-btn">
<span class="btn btn-primary btn-file"><input id="inImage" type="file" accept="image/*">Image</span>
<span class="btn btn-primary btn-file"><input id="inFile" type="file">File</span>
<button class="btn btn-primary" id="stegoInject" type="button" >Inject</button>
<button class="btn btn-primary" id="stegoRetrieve" type="button">Retrieve</button>
</div>
<input class="form-control" id="xthPixel" type="number" size="1" maxlength="2" value="5" min="2" max="20"/>
</div>
<br>
<a id="stegoFile" href="" download=""></a>
<p id="stegoErr"></p>
</div>
<div class="row">
<h3>For simple operation:</h3>
<ul>
<li>Click "Image" to select a picture to use</li>
<li>Click "File" to open a file to hide</li>
<li>Click "Inject", a new image will be made in the canvas and a download link will be given</li>
<li>Send the new picture to a friend, give them the number you used (somehow) and they can retrieve the file on the other end.</li>
</ul>
</div>
</div>
</div>
</body>
</html>