I'm building (over half done) an open source social network / template secure web platform that favors privacy over scalability, I already built a central encrypted AJAX (post) API that uses RSA (server side decryption) with CryptoJS implemented with single use keys derived from user input entropy, and a cryptographic filesystem that mixes uniform chunks of encrypted data to offer un-attackable filesystem which can safely be made public for redundancy. No cookies are used either.
Looking for contributors that would benefit to have a turnkey template platform for making any HTML/JS/GO web app that has a focus on having critical security. I built the web app framework from scratch, choosing no active external storage so far, just loading mostly everything (including all resources for security) into RAM for speed and dumping backups to firebase every 300 seconds.
This project would have two uses: for people who want to go indie with their email and cloud / website hosting / social networks, and for web developers who want to bootstrap projects wordpress style but with a fraction of the code, but with way more useful features. Maybe a nice gui for windows noob installation/initial config. Coding should not be necessary on the user's behalf to choose which features they need and operate an instance with a default or available theme. It will soon have an internal admin suite to manage all aspects of it's deployment instance. It can host multiple domain names in parallel and host them from within the platform entirely.
At the moment its one big page of 7000 lines of go code for 'convenience' and so I de-bloat as I go.. I need help with basic project structure, good crypto practice, while less important is feature development. This one page downloads UI resources from webhost location of it's default theme and then it's good to go... Interface is simple but flexible.
So far there is:
https default
central fully encrypted AJAX system
Websockets IM
encrypted email (encrypted with the user's RSA key (priv key encrypted with their passphrase) when reaching the server)
website builder/hosting including css editor
blog editor
chatrooms
user profile
private messages
advertising
rss news reader
file hosting
encrypted file storage
forums
planned:
further attack surface reduction
blockchain explorer for arbitrary cryptocurrencies
fully end to end encrypted chat (RSA keygen in client browser)
ability to interface with other mail api than MailGun, or implement mail server
but the main feature is the abstraction of the various functions allowing rapid prototyping of complicated sites without ever having to worry about sanitization & transport security, whilst being OWASP compliant. Can call the framework GOWASP