From 72202156eb16b2734d147e054371febf132cbeec Mon Sep 17 00:00:00 2001 From: Ishan Date: Thu, 12 Mar 2026 10:29:06 +0530 Subject: [PATCH 1/2] Add Pastebins section with CloakBin and PrivateBin Adds a new Pastebins category under Productivity with two entries: - CloakBin: open-source zero-knowledge encrypted pastebin (AES-256-GCM, client-side encryption, key in URL fragment) - PrivateBin: self-hosted zero-knowledge pastebin (256-bit AES) Disclosure: I am the developer of CloakBin. --- awesome-privacy.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/awesome-privacy.yml b/awesome-privacy.yml index 2dd35507..963d36fa 100644 --- a/awesome-privacy.yml +++ b/awesome-privacy.yml @@ -3395,6 +3395,30 @@ categories: ########################### + ########################### + ###### Pastebins ###### + ########################### + - name: Pastebins + alternativeTo: ['pastebin.com', 'hastebin', 'github gist'] + services: + - name: CloakBin + url: https://cloakbin.com + github: Ishannaik/cloakbin-hosted + openSource: true + description: | + Zero-knowledge encrypted pastebin where AES-256-GCM encryption runs entirely in the browser. + The decryption key is stored only in the URL fragment (#key), which browsers never send to servers, + so even with full database access pastes are unreadable. Features syntax highlighting for 40+ languages, + burn-after-reading, custom expiry, and password protection. + + - name: PrivateBin + url: https://privatebin.info + github: PrivateBin/PrivateBin + openSource: true + description: | + A minimalist, open-source online pastebin where the server has zero knowledge of pasted data. + Data is encrypted and decrypted in the browser using 256-bit AES. Requires self-hosting. + ###### Browser Sync ###### ########################## - name: Browser Sync From 65771d4d3f94f287d01db147f659b8cc2a661c8f Mon Sep 17 00:00:00 2001 From: Ishan Date: Thu, 12 Mar 2026 10:53:59 +0530 Subject: [PATCH 2/2] Add CloakBin in Pastebins Adds a new Pastebins subsection under Productivity with CloakBin, an open-source zero-knowledge encrypted pastebin. Disclosure: I am the developer of CloakBin. --- awesome-privacy.yml | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/awesome-privacy.yml b/awesome-privacy.yml index 963d36fa..4e8e219a 100644 --- a/awesome-privacy.yml +++ b/awesome-privacy.yml @@ -3403,21 +3403,13 @@ categories: services: - name: CloakBin url: https://cloakbin.com - github: Ishannaik/cloakbin-hosted + icon: https://cloakbin.com/apple-touch-icon.png + github: Ishannaik/CloakBin openSource: true description: | - Zero-knowledge encrypted pastebin where AES-256-GCM encryption runs entirely in the browser. - The decryption key is stored only in the URL fragment (#key), which browsers never send to servers, - so even with full database access pastes are unreadable. Features syntax highlighting for 40+ languages, - burn-after-reading, custom expiry, and password protection. - - - name: PrivateBin - url: https://privatebin.info - github: PrivateBin/PrivateBin - openSource: true - description: | - A minimalist, open-source online pastebin where the server has zero knowledge of pasted data. - Data is encrypted and decrypted in the browser using 256-bit AES. Requires self-hosting. + Zero-knowledge encrypted pastebin with client-side AES-256-GCM encryption. + The decryption key stays in the URL fragment, never sent to the server. + Features syntax highlighting, burn-after-reading, and password protection. ###### Browser Sync ###### ##########################