78 lines
7.2 KiB
HTML
78 lines
7.2 KiB
HTML
<!DOCTYPE HTML>
|
||
<html>
|
||
<head>
|
||
<meta charset='utf-8'>
|
||
<!-- Snow10 - Whitespace steganography. electronic invisible ink.
|
||
Copyright (C) 2017 Kevin Froman https://ChaosWebs.net/
|
||
This program is free software: you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation, either version 3 of the License, or
|
||
(at your option) any later version.
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program. If not, see <http://www.gnu.org/licenses/>. -->
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
||
<meta name='description' content="Perform Whitespace steganography with encryption and zero width characters">
|
||
<meta name='author' content='Kevin Froman'>
|
||
<title>Snow10</title>
|
||
<link rel="stylesheet" href="./bootstrap.min.css">
|
||
<link rel="stylesheet" href="./bootstrap-theme.min.css">
|
||
<link rel="stylesheet" href="./font-awesome.min.css">
|
||
<script src="./jquery.min.js"></script>
|
||
<script src="./bootstrap.min.js"></script>
|
||
<script src="./clipboard.min.js"></script>
|
||
<script src='./aes.min.js'></script>
|
||
<link rel='stylesheet' href='./theme.css'>
|
||
<style>p{ font-family: serif; }</style>
|
||
|
||
</head>
|
||
<body>
|
||
<div class='container'>
|
||
|
||
<div class='page-header'>
|
||
<h1 class='center'>Snow10 ☃</h1>
|
||
</div>
|
||
|
||
<p class='center'><a href='./index.html' class='btn btn-primary'>Go Back</a></p>
|
||
|
||
<h1>About</h1>
|
||
<p>Snow10 is a free and open-source web and Android app for converting messages into invisible whitespace characters and back again.</p>
|
||
<br>
|
||
<img src='./snow.jpg' alt='snow image'>
|
||
<br><br>
|
||
<p><a href='https://github.com/beardog108/snow10/'>It is available on Github</a>.</p>
|
||
<h1>Encoding Basics</h1>
|
||
<p>Snow10 messages are meant to be embedded elsewhere, specifically within or by standard blocks of text.</p>
|
||
<p>Messages with the 'zero width characters' setting work in most places that accept unicode input.</p>
|
||
<p>Simply enter the message you want to hide <b>(waring: larger messages are more noticeable, and really massive messages may be dangerous/not work)</b></p>
|
||
<p>You can uncheck 'use zero width characters' but this is more noticeable in some cases and is more likely to be stripped out.</p>
|
||
<p>Enable encryption to ensure your messages are protected (you must use a good password if you do so).</p>
|
||
<p>Press 'encode' and wait for the output window to show, then, press 'copy to clipboard'.</p>
|
||
<p>You can now paste your message inside Twitter DMs, social media posts, word documents, or elsewhere.</p>
|
||
|
||
<h2>Decoding Basics</h2>
|
||
|
||
<p>To retrieve a Snow10 message, copy paste it into the text field.</p>
|
||
<p>It is important to get the full message, & if not using 'zero width characters', then remove any non-message text. <b>This can be difficult, but failing to do so many result in an incomplete or corrupted message.</b></p>
|
||
<p>If the message is encrypted, enter the password (you only need to enter it into the first field to decode).</p>
|
||
<p>If the message is not encrypted, uncheck 'use encryption'</p>
|
||
<p>Then, press decode.</p>
|
||
<p>If all went right, then you should see the decoded message.</p>
|
||
|
||
<h2>Example</h2>
|
||
|
||
<p>Here is an example of Snow10's use.</p>
|
||
|
||
<input type='text' readonly value='Put this into Snow10' onclick='this.select();'>
|
||
<br><br>
|
||
<p class='center'><a href='./index.html' class='btn btn-primary'>Go Back</a></p>
|
||
|
||
</div>
|
||
<footer class='center'>made with <i class='fa fa-heart'></i> by <a href='https://chaoswebs.net/'>Beardog</a></footer>
|
||
<script src='./main.js'></script>
|
||
</body>
|
||
</html>
|