summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2014-05-20 19:43:32 +0000
committerMicah Lee <micah@micahflee.com>2014-05-20 19:43:32 +0000
commit65123d8b7ea4e77b3af0339b4ae5ea4613a3fa47 (patch)
treed4e865ffed573987ca5894691beb224e2ca3eb9d /README.md
parent6246b838821ac0de79902f44c7a670e6c53d2c5b (diff)
downloadonionshare-65123d8b7ea4e77b3af0339b4ae5ea4613a3fa47.tar.gz
onionshare-65123d8b7ea4e77b3af0339b4ae5ea4613a3fa47.zip
updated readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md39
1 files changed, 38 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1409c488..cfcac4d9 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,40 @@
-# DarkShare
+# OnionShare
A program to securely share a file of any size with someone, designed to be run in Tails. It works by starting a web server, making it accessible as a Tor hidden service, and making it require a password to access and download the file. It doesn't require setting up a server on the internet somewhere or using a third party filesharing service. It all just runs inside Tails and uses the Tor network.
+
+## Quick Start
+
+Boot to Tails, setting an administrator password. Clone this repository. Install the dependencies:
+
+ sudo apt-get install python-flask
+
+Then run onionshare.py, and pass it a filename. It will look something like this:
+
+ amnesia@amnesia:~/Persistent/code/onionshare$ sudo ./onionshare.py ~/Persistent/file_to_send.gpg
+ [sudo] password for amnesia:
+ Modifying torrc to configure hidden service on port 41710
+ Reloading tor daemon configuration... [ DONE ]
+ Punching a hole in the firewall
+ Waiting 10 seconds for hidden service to get configured...
+
+ Give this information to the person youre sending the file to:
+ URL: http://b6vgwkuo77qieguy.onion/
+ Username: 5eebeba8b70cfdfc
+ Password: f5a7fa91c294479a
+
+ Press Ctrl-C to stop server
+
+ * Running on http://127.0.0.1:41710/
+ 127.0.0.1 - - [20/May/2014 19:41:19] "GET / HTTP/1.1" 401 -
+ 127.0.0.1 - - [20/May/2014 19:41:28] "GET / HTTP/1.1" 200 -
+ 127.0.0.1 - - [20/May/2014 19:41:31] "GET /favicon.ico HTTP/1.1" 404 -
+ 127.0.0.1 - - [20/May/2014 19:41:31] "GET /favicon.ico HTTP/1.1" 404 -
+
+Securely send the URL, username, and password to the person you are sending the file to (like by using Jabber and OTR). When they load the website, they will be connecting directly to your computer. They'll need the username and password to authenticate. You can watch all the web requests that are getting made.
+
+Once you confirm that they have downloaded the file you're sending (ask them), press Ctrl-C to shut down the server and clean up your Tails setup.
+
+ Restoring original torrc
+ Reloading tor daemon configuration... [ DONE ]
+ Closing hole in firewall
+