Software:Secure Scuttlebutt

From HandWiki
Short description: Decentralized social network
Secure Scuttlebutt
Hermies.png
Original author(s)Dominic Tarr[1]
Developer(s)Secure Scuttlebutt Consortium[2]
Initial release11 May 2014; 9 years ago (2014-05-11)
Repositorygithub.com/ssbc/ssb-server
Written inJavaScript
Operating systemmacOS, Linux, Windows
Available inEnglish
TypeDistributed social network, protocol, secure communication
LicenseMIT license
Website{{{1}}}

Secure Scuttlebutt (SSB) is a peer-to peer communication protocol, mesh network, and self-hosted social media ecosystem.[3][4] Each user hosts their own content and the content of the peers they follow, which provides fault tolerance and eventual consistency.[5] Messages are digitally signed and added to an append-only list of messages published by an author.[6] SSB is primarily used for implementing distributed social networks, and utilizes cryptography to assure that content remains unforged as it is propagated through the network.[7][8]

In contrast to the major corporate social media platforms, user data and content on Secure Scuttlebutt is not monetized, there are no software design decisions being made in order to maximize user engagement or boost marketing metrics, and there is no paid advertising.[9] According to Forbes, "Scuttlebutt itself isn't supported by venture capital. Instead ... Scuttlebutt is backed by grants that helped jump-start the process ... [and] there are now hundreds of users who personally donate to the cause and an estimated 30,000 people using one of at least six social networks on the protocol".[10]

History

SSB was created by Dominic Tarr in 2014 as part of experimental development in alternative databases and distributed systems.[citation needed] Tarr lived on a sailboat with unreliable internet connection, and became interested in creating an offline-friendly secure gossip protocol for social networking.[6][11] The word scuttlebutt is slang for "water-cooler gossip" among sailors. SSB gained popularity on the wave of privacy controversies raising against the traditional social media.[12][13]

Protocol

Secure Scuttlebutt operates as a database of immutable append-only feeds, which allows resilient replication over the Internet, local area networks, and sneakernets. Messages are hashed with SHA256 and verified with an Ed25519 signature; this makes it impossible to forge a message without the private key of the author.[14] Users only download messages from peers that they follow (and optionally friends of friends), which prevents harassment and spam. This makes the network invite-only, meaning that new peers who join the network aren't visible until someone follows them.[15][16]

User content in SSB is organized as an append-only sequence of immutable messages, where messages cryptographically sign adjacent messages for the purpose of guaranteeing unforgeabilitity of the sequences as they are replicated to other peers. SSB peers exchange asymmetric keys and establish authenticated connections between each other using an Authenticated Key Exchange protocol, Secret Handshake.[17][12]

Applications and documentation

The reference implementation was written using Node.js, as code that runs on a JavaScript engine.[18] There are active implementation efforts in the Go programming language, as well as in Python, and Rust.[19][20][21] Documentation for these implementations can be found at the official SSB development site.

Many independent applications have been implemented on SSB, including a social network, music sharing, chess, a Git subsystem, and an npm registry.[22][23][24][25]

See also

References

  1. "Initial commit". GitHub. 11 May 2014. https://github.com/ssbc/ssb-db/commit/d8420a185439587990c8b752780096e3f6373c28. 
  2. "Secure Scuttlebutt Consortium". GitHub. 2019. https://github.com/ssbc/. 
  3. Tarr, Dominic; Lavoie, Erick; Meyer, Aljoscha; Tschudin, Christian (September 2019). "Secure Scuttlebutt: An Identity-Centric Protocol for Subjective and Decentralized Applications". Proceedings of the 6th ACM Conference on Information-Centric Networking. ICN '19. pp. 1–11. doi:10.1145/3357150.3357396. ISBN 9781450369701. 
  4. "Dweb: Social Feeds with Secure Scuttlebutt – Mozilla Hacks - the Web developer blog" (in en-US). https://hacks.mozilla.org/2018/08/dweb-social-feeds-with-secure-scuttlebutt. 
  5. "Scuttlebutt Protocol Guide". https://ssbc.github.io/scuttlebutt-protocol-guide/. 
  6. 6.0 6.1 Bogost, Ian (2017-05-22). "The Nomad Who's Exploding the Internet Into Pieces" (in en-US). https://www.theatlantic.com/technology/archive/2017/05/meet-the-counterantidisintermediationists/527553/. 
  7. "Introduction · GitBook". https://www.scuttlebutt.nz/. 
  8. "In The Mesh - Scuttlebutt, A Decentralized Alternative To Facebook" (in en). 2018-04-19. https://www.inthemesh.com/archive/secure-scuttlebutt-facebook-alternative/. 
  9. Mannell, Kate; Smith, Eden T. (September 14, 2022). "It's hard to imagine better social media alternatives, but Scuttlebutt shows change is possible". https://theconversation.com/its-hard-to-imagine-better-social-media-alternatives-but-scuttlebutt-shows-change-is-possible-190351. 
  10. del Castillo, Michael (September 11, 2022). "Jack Dorsey's Former Boss Is Building A Decentralized Twitter". https://www.forbes.com/sites/michaeldelcastillo/2022/09/11/jack-dorseys-former-boss-is-building-a-decentralized-twitter/. 
  11. Anadiotis, George. "Manyverse and Scuttlebutt: a human-centric technology stack for social applications". https://www.zdnet.com/article/manyverse-and-scuttlebutt-a-human-centric-technology-stack-for-social-applications/. 
  12. 12.0 12.1 "Secure Scuttlebutt - Scuttlebot". https://scuttlebot.io/more/protocols/secure-scuttlebutt.html. 
  13. "Open-source alternative to Facebook called Scuttlebutt gaining prominence" (in en-US). https://www.facebookcollapse.com/2018-05-22-open-source-alternative-to-facebook-called-scuttlebutt-gaining-prominence.html. 
  14. Tschudin, Christian F. (May 2019). "A Broadcast-Only Communication ModelBased on Replicated Append-Only Logs". ACM Computer Communication Review 49 (2): 37–43. doi:10.1145/3336937.3336943. https://ccronline.sigcomm.org/wp-content/uploads/2019/05/acmdl19-295.pdf. 
  15. "Getting Started with Secure Scuttlebutt (SSB) » Miguel Mota | Software Developer". https://miguelmota.com/blog/getting-started-with-secure-scuttlebutt/. 
  16. Ryabitsev, Konstantin (2019-07-05). "Patches carved into developer sigchains" (in en). https://people.kernel.org/monsieuricon/patches-carved-into-developer-sigchains. 
  17. Tarr, Dominic. "Designing a Secret Handshake: Authenticated Key Exchange as a Capability System". https://dominictarr.github.io/secret-handshake-paper/shs.pdf. 
  18. The gossip and replication server for Secure Scuttlebutt: a distributed social network, Secure Scuttlebutt Consortium, 2019-07-16, https://github.com/ssbc/ssb-server, retrieved 2019-07-16 
  19. A full-stack implementation of secure-scuttlebutt using the Go programming language., cryptoscope, 2019-07-15, https://github.com/cryptoscope/ssb, retrieved 2019-07-16 
  20. Ferreira, Pedro (2019-06-14), Secure Scuttlebutt protocol suite implementation in Python: pferreir/pyssb, https://github.com/pferreir/pyssb, retrieved 2019-07-16 
  21. meta information about the Sunrise Choir, Sunrise Choir, 2019-06-18, https://github.com/sunrise-choir/meta, retrieved 2019-07-16 
  22. "Applications · GitBook". https://www.scuttlebutt.nz/applications. 
  23. "André Staltz - An off-grid social network". https://staltz.com/an-off-grid-social-network.html. 
  24. noffle (2019-07-03), Installing & using npm with secure scuttlebutt, https://github.com/noffle/ssb-npm-101, retrieved 2019-07-16 
  25. "Whitepaper In Four Minutes - Secure Scuttlebutt (SSB)". https://infourminutes.co/whitepaper/scuttlebutt. 

Further reading

  • Mannell, Kate; Smith, Eden T. (July–September 2022). "Alternative Social Media and the Complexities of a More Participatory Culture: A View From Scuttlebutt". Social Media + Society (SAGE Publications Ltd) 8 (3). doi:10.1177/20563051221122448. 

External links