commit
4d8e2e30eb
5 changed files with 13 additions and 13 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
**NOTE**: httpaste is publicly hosted at [httpaste.it](http://httpaste.it) and as a hidden Tor service ([https://paste77ubkwxy4fqezffsmthxdh3xerwi72tlsw2mch7ecjhw2xn7iyd.onion](https://paste77ubkwxy4fqezffsmthxdh3xerwi72tlsw2mch7ecjhw2xn7iyd.onion)).
|
**NOTE**: httpaste is publicly hosted at [httpaste.it](http://httpaste.it) and as a [Tor Onion Service](https://community.torproject.org/onion-services/overview/) ([http://paste77ubkwxy4fqezffsmthxdh3xerwi72tlsw2mch7ecjhw2xn7iyd.onion](http://paste77ubkwxy4fqezffsmthxdh3xerwi72tlsw2mch7ecjhw2xn7iyd.onion)).
|
||||||
Both services are to be considered evaluatory, as long as the source code
|
Both services are to be considered evaluatory, as long as the source code
|
||||||
is in pre-release. Regarding voidance of pre-release status, see [Open Issues](https://victorykit.atlassian.net/issues/?jql=project%20%3D%20HTTPASTE%20AND%20fixVersion%20in%20(1.1.0-beta%2C%201.2.0-beta%2C%201.3.0)), for more information.
|
is in pre-release. Regarding voidance of pre-release status, see [Open Issues](https://victorykit.atlassian.net/issues/?jql=project%20%3D%20HTTPASTE%20AND%20fixVersion%20in%20(1.1.0-beta%2C%201.2.0-beta%2C%201.3.0)), for more information.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ httpaste - versatile HTTP pastebin
|
||||||
.. image:: _assets/images/favpng_parrot-royalty-free-cartoon.png
|
.. image:: _assets/images/favpng_parrot-royalty-free-cartoon.png
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
httpaste is publicly hosted at `httpaste.it`_ and as a hidden Tor service (`<https://paste77ubkwxy4fqezffsmthxdh3xerwi72tlsw2mch7ecjhw2xn7iyd.onion>`_).
|
httpaste is publicly hosted at `httpaste.it`_ and as a `Tor Onion Service`_ (`<http://paste77ubkwxy4fqezffsmthxdh3xerwi72tlsw2mch7ecjhw2xn7iyd.onion>`_).
|
||||||
Both services are to be considered evaluatory, as long as the source code
|
Both services are to be considered evaluatory, as long as the source code
|
||||||
is in pre-release. Regarding voidance of pre-release status, see `Open Issues`_, for more information.
|
is in pre-release. Regarding voidance of pre-release status, see `Open Issues`_, for more information.
|
||||||
|
|
||||||
|
|
@ -79,6 +79,8 @@ This program uses licensed third-party software.
|
||||||
ARCHITECTURE
|
ARCHITECTURE
|
||||||
CONTRIBUTING
|
CONTRIBUTING
|
||||||
|
|
||||||
|
|
||||||
|
.. _Tor Onion Service: https://community.torproject.org/onion-services/overview/
|
||||||
.. _ix.io: http://ix.io/
|
.. _ix.io: http://ix.io/
|
||||||
.. _sprunge.us: http://sprunge.us
|
.. _sprunge.us: http://sprunge.us
|
||||||
.. _pygments: https://pygments.org/
|
.. _pygments: https://pygments.org/
|
||||||
|
|
|
||||||
|
|
@ -6,17 +6,17 @@ The backend can be configured within the `[backend]` section of the configuratio
|
||||||
SQLite
|
SQLite
|
||||||
------
|
------
|
||||||
|
|
||||||
.. autoclass:: httpaste.backend.sqlite.Parameters
|
.. autoclass:: httpaste.backend.sqlite.Config
|
||||||
:members:
|
:members:
|
||||||
|
|
||||||
Filesystem
|
Filesystem
|
||||||
----------
|
----------
|
||||||
|
|
||||||
.. autoclass:: httpaste.backend.file.Parameters
|
.. autoclass:: httpaste.backend.file.Config
|
||||||
:members:
|
:members:
|
||||||
|
|
||||||
MySQL
|
MySQL
|
||||||
-----
|
-----
|
||||||
|
|
||||||
.. autoclass:: httpaste.backend.mysql.Parameters
|
.. autoclass:: httpaste.backend.mysql.Config
|
||||||
:members:
|
:members:
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
version: "3.3"
|
version: "3.4"
|
||||||
services:
|
services:
|
||||||
httpaste:
|
httpaste:
|
||||||
build:
|
build:
|
||||||
|
|
@ -37,4 +37,4 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- ./tor/etc/tor/torrc:/etc/tor/torrc
|
- ./tor/etc/tor/torrc:/etc/tor/torrc
|
||||||
volumes:
|
volumes:
|
||||||
system-shared:
|
system-shared:
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,6 @@ SYNOPSIS
|
||||||
|
|
||||||
HTTP [POST|PUT|DELETE|GET] {url}paste/[public|private]
|
HTTP [POST|PUT|DELETE|GET] {url}paste/[public|private]
|
||||||
|
|
||||||
{url}ui
|
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
|
||||||
This program offers an HTTP interface for storing public and private data
|
This program offers an HTTP interface for storing public and private data
|
||||||
|
|
@ -21,7 +19,7 @@ DESCRIPTION
|
||||||
listed on any index, since it isn't technically possible (by design).
|
listed on any index, since it isn't technically possible (by design).
|
||||||
|
|
||||||
All pastes are symetrically encrypted with an HMAC derived key using
|
All pastes are symetrically encrypted with an HMAC derived key using
|
||||||
{hmac_iterations} iterations and SHA-512 hashing, a server-side salt and a
|
{hmac_iterations} iterations and SHA-256 hashing, a server-side salt and a
|
||||||
randomly generated password. Public paste's passwords are derived from
|
randomly generated password. Public paste's passwords are derived from
|
||||||
their ids. Private paste's passwords are randomly generated and stored
|
their ids. Private paste's passwords are randomly generated and stored
|
||||||
inside a symetrically encrypted personal database, with the encryption key
|
inside a symetrically encrypted personal database, with the encryption key
|
||||||
|
|
@ -115,12 +113,12 @@ EXAMPLES
|
||||||
|
|
||||||
SEE ALSO
|
SEE ALSO
|
||||||
|
|
||||||
Documentation <https://victorykit.bitbucket.org/httpaste>
|
Documentation <https://victorykit.bitbucket.io/httpaste>
|
||||||
|
|
||||||
Sources <https://bitbucket.org/victorykit/httpaste>
|
Sources <https://bitbucket.org/victorykit/httpaste>
|
||||||
|
|
||||||
Host (HTTPS) <https://httpaste.it>
|
Host (HTTP) <http://httpaste.it>
|
||||||
(HTTP) <http://httpaste.it>
|
(Onion) <http://http://paste77ubkwxy4fqezffsmthxdh3xerwi72tlsw2mch7ecjhw2xn7iyd.onion>
|
||||||
|
|
||||||
NOTES
|
NOTES
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue