Go to file
Kevin Froman 17ef138c21 bump version 2020-09-07 05:49:13 +00:00
.github Create stale.yml 2020-02-21 03:32:31 -06:00
.vscode added sneakernet auto importing 2020-03-30 20:52:04 -05:00
docs Removed Windows specific code 2020-08-12 17:21:11 -05:00
install added install readme disclaimer and don't log max thread messages to terminal 2019-10-17 17:04:57 -05:00
scripts Fixing block syncing quirks 2020-08-25 15:02:13 -05:00
src bump version 2020-09-07 05:49:13 +00:00
static-data update runtime test 2020-09-07 05:47:58 +00:00
tests bump version 2020-09-07 05:49:13 +00:00
.dockerignore Removed Windows specific code 2020-08-12 17:21:11 -05:00
.env change env to 3.8 2019-12-29 14:35:08 -06:00
.gitignore bump version 2020-09-07 05:49:13 +00:00
.gitlab-ci.yml added helium test deps to ci 2020-03-04 17:02:03 -06:00
.onionr.yml Rename AUR package to onionr-git 2019-07-22 17:04:02 -07:00
AUTHORS.MD * started endpoint for non-app specific control of direct connections 2019-08-15 03:36:05 -05:00
CHANGELOG.md bumped requirements versions 2020-08-08 00:11:45 -05:00
CODE_OF_CONDUCT.md fixed everything being executable permission 2019-06-16 02:04:32 -05:00
CONTRIBUTING.md fixed some bugs 2019-08-06 00:49:31 -05:00
Dockerfile change dockerfile to python image, remove unnecessary apt installs 2019-12-19 03:30:30 -06:00
ISSUE_TEMPLATE.md fixed everything being executable permission 2019-06-16 02:04:32 -05:00
LICENSE.txt Update LICENSE.txt 2019-07-12 17:58:46 +00:00
Makefile moved to niceware from mnemonic 2019-09-29 21:14:43 -05:00
README.md Removed Windows specific code 2020-08-12 17:21:11 -05:00
SECURITY.md moved tests to parent directory 2019-09-12 21:22:25 -05:00
make-release.sh added site lister 2020-02-05 01:49:24 -06:00
onionr.sh renamed onionr dir and bugfixes/linting progress 2019-11-21 02:23:58 -06:00
requirements-dev.in Bump pdoc3 from 0.8.3 to 0.9.1 2020-08-27 23:12:01 +00:00
requirements-dev.txt Bump pdoc3 from 0.8.3 to 0.9.1 2020-08-27 23:12:01 +00:00
requirements-notifications.in added sound notification support and forward secery setting finished 2020-02-17 06:13:57 -06:00
requirements-notifications.txt boards now load async 2019-09-06 00:18:25 -05:00
requirements.in bumped requirements versions 2020-08-08 00:11:45 -05:00
requirements.txt bumped requirements versions 2020-08-08 00:11:45 -05:00
run-windows-dev.bat renamed onionr dir and bugfixes/linting progress 2019-11-21 02:23:58 -06:00
run-windows.bat renamed onionr dir and bugfixes/linting progress 2019-11-21 02:23:58 -06:00
run_tests.sh finishd tests for multicast lan service discovery 2020-03-14 00:56:10 -05:00
setprofile.sh fixed everything being executable permission 2019-06-16 02:04:32 -05:00
start-daemon.sh added restart command 2019-09-20 11:25:12 -05:00
start-many-nodes.py added script to start many nodes 2020-04-04 00:58:49 -05:00
start-ram.sh improve start ram script to use quotes 2020-03-24 03:17:40 -05:00

README.md

Privacy Respecting Communication Network 📡

Anonymous social platform, mail, file sharing.

Install Features Screenshots
Docs/web copy Get involved Onionr.net/.onion

The main repository for this software is at https://git.VoidNet.tech/kev/onionr/

Mirrors: Github, Gitlab

Onionr ("Onion Relay") is a decentralized/distributed peer-to-peer communication network, designed to be anonymous and resistant to (meta)data analysis, spam, and corruption.

Onionr stores data in independent packages referred to as 'blocks'. The blocks are distributed to all interested nodes. Blocks and user IDs cannot be easily proven to have been created by a particular user. Even if there is enough evidence to believe that a specific user created a block, nodes still operate behind Tor and as such cannot be trivially unmasked. Anonymity is achieved by a stateless network, with no given indication of what node a block originates from. Through message mixing and key privacy, it is intended to be nigh impossible to discover the identity of a message creator or recipient.

Via long-term traffic analysis, a well funded adversary may discover the most probable node(s) to be creating a set of related blocks, however doing so would only lead them to a node behind Tor. As the first node that a block appears on is almost always not the creator of the block, there is plausible deniability regarding the true creator of the block.

Onionr gives the individual the ability to speak freely, without fear of surveillance and censorship.

Users are identified by ed25519/curve25519 public keys, which can be used to sign blocks or send encrypted data.

Onionr can be used for mail, as a social network, instant messenger, file sharing software, or for encrypted group discussion.

The whitepaper is available here.

Tor stinks slide image

Main Features

  • 🌐 Fully p2p/decentralized, no trackers or other single points of failure
  • 🔒 End to end encryption of user data
  • 📢 Optional non-encrypted blocks, useful for blog posts or public file sharing
  • 💻 Easy HTTP API for integration to websites
  • 🕵️ Metadata analysis resistance and anonymity
  • 📡 Transport agnosticism (no internet required)

Onionr ships with various application plugins ready for use out of the box:

Currently usable:

  • Mail
  • Public anonymous chat/message board
  • Simple webpage hosting - Will be greatly extended
  • File sharing (Work in progress)

Not yet usable:

  • Instant messaging

Watch the talk from BSidesPDX 2019

improving anonymous networking talk link

Screenshots

Node statistics page screenshot

Home screen

Friend/contact manager screenshot

Friend/contact manager

Encrypted, metadata-masking mail application screenshot

Encrypted, metadata-masking mail application. One of the first distributed mail systems to have basic forward secrecy.

Documentation

More docs coming soon.

Install and Run on Linux

The following applies to Ubuntu Bionic. Other distributions may have different package or command names.

Master may be unstable, you should use the latest release tag. (checkout via git: $ git checkout release-latest)

$ sudo apt install python3-pip python3-dev tor

  • Have python3.7+, python3-pip, Tor (daemon, not browser) installed. python3-dev is recommended.
  • Clone the git repo: $ git clone https://gitlab.com/beardog/onionr
  • cd into install direction: $ cd onionr/
  • Install the Python dependencies (virtualenv strongly recommended): $ pip3 install --require-hashes -r requirements.txt
  • (Optional): Install desktop notification dependencies: $ pip3 install --require-hashes -r requirements-notifications.txt

(--require-hashes is intended to prevent exploitation via compromise of PyPi/CA certificates)

Run Onionr

  • Run Onionr normally: $ ./onionr.sh start
  • Run Onionr in background as daemon: $ ./start-daemon.sh
  • Open Onionr web interface $ ./onionr.sh openhome
  • Gracefully stop Onionr from CLI $ ./onionr.sh stop

Contact

Email: beardog [ at ] mailbox.org

Onionr Mail: particularizing-zabaione-defuze-iodizer-saucepan-patientest-sell-waken-chifforobe-embonpoint-aquanaut-chambermaid-barky-fumer-jolt-biotic

Help out

Everyone is welcome to contribute. Help is wanted for the following:

  • Development (Get in touch first)
    • Creation of a shared lib for use from other languages and faster proof-of-work
    • Android and IOS development
    • Mac support (already partially supported, testers needed)
    • Bug fixes and development of new features
  • Testing
  • Translations/localizations
  • UI/UX design
  • Running stable nodes
  • Security review/audit
  • I2P support

Contribute money:

Donating at least $3 gets you cool Onionr stickers. Get in touch if you want them.

sticker

Bitcoin: 1onion55FXzm6h8KQw3zFw2igpHcV7LPq (Contact us for a unique address or for other coins)

Monero: 4B5BA24d1P3R5aWEpkGY5TP7buJJcn2aSGBVRQCHhpiahxeB4aWsu15XwmuTjC6VF62NApZeJGTS248RMVECP8aW73Uj2ax

USD (Card/Paypal): Ko-Fi

Note: probably not tax deductible

Security

Onionr is alpha software. This means it is unstable, probably insecure, and experimental.

No matter how good Onionr and other software gets, there will always be ways for clever or well-funded adversaries to break your security.

Onionr does not protect your identity if you associate your user ID with your name either on Onionr or elsewhere.

Do not rely on Onionr or any other software to hold up if your life or liberty are at stake.

Licenses and Branding

Onionr is published under the GNU GPL v3 license, except for the logo.

The Tor Project and I2P developers do not own, create, or endorse this project, and are not otherwise involved.

Tor is a trademark for the Tor Project. We do not own it.

The Onionr logo was created by Anhar Ismail under the Creative Commons Attribution 4.0 International License.

If you modify and redistribute our code ("forking"), please use a different logo and project name to avoid confusion. Please do not use the project name or logo in a way that makes it seem like we endorse you without our permission.