2016-05-28 04:34:52 +00:00
<!DOCTYPE HTML>
< html >
< head >
< meta charset = 'utf-8' >
2017-03-28 17:03:42 +00:00
<!-- Copyright (c) 2017 Kevin Froman MIT (expat) license -->
2016-05-28 04:34:52 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1.0, user-scalable=no" >
2017-03-28 17:03:42 +00:00
< meta name = 'description' content = "Perform Whitespace steganography with encryption and zero width characters" >
< meta name = 'author' content = 'Kevin Froman' >
< title > Snow2< / title >
2017-03-28 16:09:11 +00:00
< 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 >
2016-08-05 11:08:47 +00:00
< script src = './aes.min.js' > < / script >
2016-05-28 04:34:52 +00:00
< link rel = 'stylesheet' href = './theme.min.css' >
< / head >
< body >
2017-03-28 17:03:42 +00:00
< a href = "https://github.com/beardog108/snow2/" > < img style = "position: absolute; top: 0; right: 0; border: 0;" src = "https://camo.githubusercontent.com/e7bbb0521b397edbd5fe43e7f760759336b5e05f/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677265656e5f3030373230302e706e67" alt = "Fork me on GitHub" data-canonical-src = "https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png" > < / a >
2016-05-28 04:34:52 +00:00
< div class = "modal fade" id = "outputModal" tabindex = "-1" role = "dialog" aria-labelledby = "myModalLabel" >
< div class = "modal-dialog" role = "document" >
< div class = "modal-content" >
< div class = "modal-header" >
< button type = "button" class = "close" data-dismiss = "modal" aria-label = "Close" > < span aria-hidden = "true" > × < / span > < / button >
< h4 class = "modal-title center" id = "myModalLabel" > Your Text Is Ready!< / h4 >
< / div >
< div class = "modal-body" >
< br >
< div class = 'center' > < input type = 'text' readonly id = 'output' > < button class = "btn btn-success" data-clipboard-action = "copy" data-clipboard-target = "#output" > Copy to Clipboard< / button > < / div >
< div id = 'copyFeedback' class = 'center' > < / div >
< / div >
< div class = "modal-footer" >
< button type = "button" class = "btn btn-default" data-dismiss = "modal" id = 'modalClose' > Close< / button >
< / div >
< / div >
< / div >
< / div >
< div class = 'container' >
< div class = 'page-header' >
2017-03-28 05:06:01 +00:00
< h1 class = 'center' > Snow2 ☃< / h1 >
2016-05-28 04:34:52 +00:00
< / div >
2017-03-28 18:56:33 +00:00
< p > Snow2 is a simple web app for converting text to whitespace characters, which can be hidden in normal messages.< / p >
< p > It is inspired by the < a href = 'http://darkside.com.au/snow/' > original program< / a > published in 1998.< / p >
2016-05-28 04:34:52 +00:00
< div id = 'dataArea' >
< textarea id = 'text' placeholder = '' > < / textarea >
2017-03-28 16:40:00 +00:00
< / div >
< div class = 'center' > < button class = 'btn btn-sm btn-default dataItem' id = 'clearInputButton' > Clear Input < i class = 'fa fa-cross' > < / i > < / button > < / div >
< br > < br >
2016-05-28 04:34:52 +00:00
< div class = 'center' >
2017-03-28 04:36:51 +00:00
< label > Use Zero-Width Characters < input type = 'checkbox' id = 'useZeroWidthCharacters' checked > < / label >
< br > < br >
2016-08-05 11:08:47 +00:00
< label > Use Encryption < input type = 'checkbox' id = 'useEncrypt' checked > < / label >
< br > < br >
2017-03-28 16:40:00 +00:00
< div id = 'one' > < button id = 'toggle' class = 'btn btn-primary' > Encode Mode < i class = 'fa fa-lock' > < / i > < / button > < / div >
2016-08-05 11:08:47 +00:00
< span id = 'encryptArea' >
< input type = 'password' id = 'password' placeholder = 'Encryption password' class = 'dataItem' >
< br >
< input type = 'password' id = 'confirmPass' placeholder = 'Confirm password' class = 'dataItem' >
< br >
< / span >
2016-05-28 04:34:52 +00:00
< button id = 'go' class = 'btn btn-success btn-lg dataItem' > Go< / button >
< / div >
< / div >
2017-03-28 19:06:35 +00:00
< footer class = 'center' > made with < i class = 'fa fa-heart' > < / i > by < a href = 'https://chaoswebs.net/' > Beardog< / a > < / footer >
2016-08-05 11:08:47 +00:00
< script src = './main.js' > < / script >
2016-05-28 04:34:52 +00:00
< / body >
2017-03-28 04:36:51 +00:00
< / html >