From 042bc63f9707bafd9b1924f75ff0ac43b591f5f0 Mon Sep 17 00:00:00 2001 From: humanacollaborator Date: Sat, 3 Apr 2021 19:35:17 -0400 Subject: [PATCH] add github & sourceforge --- forge_comparison.md | 6 ++++-- input_data/forges.sql | 31 ++++++++++++++++++------------- tools/gen_forge_table.sh | 2 +- 3 files changed, 23 insertions(+), 16 deletions(-) diff --git a/forge_comparison.md b/forge_comparison.md index e4a32fd..5b6584f 100644 --- a/forge_comparison.md +++ b/forge_comparison.md @@ -20,10 +20,11 @@ The following forges have no significant ethical issues: [gitlab.freedesktop.org](https://gitlab.freedesktop.org)|🟢|Gitlab (CE)|n|n|n|n|possibly restricted to Freedesktop efforts| [gitlab.gnome.org](https://gitlab.gnome.org)|🟢|Gitlab (CE)|n|n|n|n|possibly restricted to Gnome efforts| [gitlab.torproject.org](https://gitlab.torproject.org)|🟢|Gitlab (CE)|n|n|n|n|open registration; repo creation possibly restricted; Google reCAPTCHA is [allegedley](https://lists.gnu.org/archive/html/repo-criteria-discuss/2021-03/msg00000.html) used, but [not at registration time](https://gitlab.onionize.space)| -[launchpad.net](https://launchpad.net)|🟢|Launchpad|n|n|n|n|JavaScript is non-free, but it's [unknown](https://wiki.freephile.org/wiki/Comparison_of_git_hosting_options) whether it functions without JavaScript; no wiki| +[launchpad.net](https://launchpad.net)|🟢|Launchpad|n|n|n|n|It's [unknown](https://wiki.freephile.org/wiki/Comparison_of_git_hosting_options) whether it functions without JavaScript; no wiki| [notabug.org](https://notabug.org)([🧅](http://qs3zumwfci4tntnd.onion))|🟢|Gogs|n|n|n|n|based on [liberated](https://notabug.org/hp/gogs) fork of Gogs; [supports Tor](https://notabug.org/tor) (the *onion* web UI is currently disabled in response to attack but the onion site accepts git connections); supports SSH keys and SSH over Tor to NAB's onion service; no e-voting; NAB doesn't associate PGP keys to users, so PGP signed commits may be unavailable or more manual work needed.| [source.puri.sm](https://source.puri.sm)|🟢|Gitlab (CE)|n|n|n|n|open registration; *not* restricted to puri.sm efforts; no CAPTCHA (confirmed March 2021)| [source.small-tech.org](https://source.small-tech.org)|🔴|Gitlab (CE)|n|n|n|n|| +[sourceforge.net](https://sourceforge.net)|⛔ (exclusive walled garden)|other/unknown|n|n|n|n|**access granted or denied based on national origin**; Important site [functionality does not work without non-free JavaScript](https://www.gnu.org/software/repo-criteria-evaluation.html); access granted or denied based on national origin| [sr.ht](https://sr.ht)|🟢|Sourcehut|n|n|n|n|javascript-free| [yerbamate.dev](https://yerbamate.dev)|💀|Gitea|n|n|n|n|**dead site**| @@ -36,6 +37,7 @@ These forges have severe ethical or trust issues and should be boycotted: bitbucket.org|🟢|Bitbucket Server|n|n|n|☣|**Amazon AWS-hosted**; needs non-free javascript that [clusterfucks uMatrix](https://github.com/privacytoolsIO/privacytools.io/issues/843#issuecomment-483830547); has some relationship with Netlify; access to source code [restricted](https://en.wikipedia.org/wiki/Bitbucket#Bitbucket_Server)| git.feneas.org|🟢|Gitlab (CE)|n|n|⚒|☣|reCAPTCHA impedes registration and imposes non-free s/w| git.openprivacy.ca|⛔ (exclusive walled garden)|other/unknown|👁|n|n|n|Tor users get 404 - suspected botnet; [listed](https://codeberg.org/crimeflare/cloudflare-tor/src/branch/master/cloudflare_users/cloudflare_supporter.txt) as a Cloudflare supporter| -gitlab.com|⛔ (exclusive walled garden)|Gitlab (EE)|n|🌩|⚒|☣|flagship instance running the *Enterprise Edition*; uses both hCAPTCHA & reCAPTCHA; heavily restricted with discriminatory policies| +github.com|⛔ (exclusive walled garden)|other/unknown|n|n|n|☣|**access granted or denied based on national origin**; [copious ethical issues](github.md)| +gitlab.com|⛔ (exclusive walled garden)|Gitlab (EE)|n|🌩|⚒|☣|flagship instance running the *Enterprise Edition*; uses both hCAPTCHA & reCAPTCHA; heavily restricted with discriminatory policies; [copious ethical issues](gitlab-dot-com.md)| libregit.org|🔴|Gitea|n|🌩|n|n|reg by invite only| diff --git a/input_data/forges.sql b/input_data/forges.sql index 35bdb57..5f48c4c 100644 --- a/input_data/forges.sql +++ b/input_data/forges.sql @@ -1,15 +1,16 @@ create table if not exists forgesTbl - (url_clrnet text, - url_onion text, - software text check(software in ('Bitbucket Server', 'Gitea', 'gitlab_ce', 'gitlab_ee', 'Gogs', 'Launchpad', 'Sourcehut', 'other')) not null default 'other', - lst_kind text check(lst_kind in ('black', 'gray', 'white')) not null default 'white', - hrecaptcha text check(hrecaptcha in ('unavoidable', 'non-essential tasks', 'never')) not null default 'never', - dead boolean not null default 0, - openpubreg boolean not null default 1, - cflogin boolean not null default 0, - antitor boolean not null default 0, - forced_nfsw boolean not null default 0, - aws boolean not null default 0, + (url_clrnet text, + url_onion text, + software text check(software in ('Bitbucket Server', 'Gitea', 'gitlab_ce', 'gitlab_ee', 'Gogs', 'Launchpad', 'Sourcehut', 'other')) not null default 'other', + lst_kind text check(lst_kind in ('black', 'gray', 'white')) not null default 'white', + hrecaptcha text check(hrecaptcha in ('unavoidable', 'non-essential tasks', 'never')) not null default 'never', + dead boolean not null default 0, + openpubreg boolean not null default 1, + cflogin boolean not null default 0, + antitor boolean not null default 0, + forced_nfsw boolean not null default 0, + aws boolean not null default 0, + nation_discrimination boolean not null default 0, notes text, primary key (url_clrnet,url_onion)); @@ -17,7 +18,10 @@ insert into forgesTbl (url_clrnet, software, forced_nfsw, aws, notes) values ('h insert into forgesTbl (url_clrnet, url_onion, software, notes) values ('https://notabug.org','http://qs3zumwfci4tntnd.onion','Gogs','based on [liberated](https://notabug.org/hp/gogs) fork of Gogs; [supports Tor](https://notabug.org/tor) (the *onion* web UI is currently disabled in response to attack but the onion site accepts git connections); supports SSH keys and SSH over Tor to NAB''s onion service; no e-voting; NAB doesn''t associate PGP keys to users, so PGP signed commits may be unavailable or more manual work needed.'); -insert into forgesTbl (url_clrnet, software, notes) values ('https://launchpad.net','Launchpad','JavaScript is non-free, but it''s [unknown](https://wiki.freephile.org/wiki/Comparison_of_git_hosting_options) whether it functions without JavaScript; no wiki'); +insert into forgesTbl (url_clrnet, nation_discrimination, notes) values ('https://sourceforge.net',1,'Important site [functionality does not work without non-free JavaScript](https://www.gnu.org/software/repo-criteria-evaluation.html); access granted or denied based on national origin'); +insert into forgesTbl (url_clrnet, forced_nfsw, nation_discrimination, notes) values ('https://github.com',1,1,'[copious ethical issues](github.md)'); + +insert into forgesTbl (url_clrnet, software, notes) values ('https://launchpad.net','Launchpad','It''s [unknown](https://wiki.freephile.org/wiki/Comparison_of_git_hosting_options) whether it functions without JavaScript; no wiki'); insert into forgesTbl (url_clrnet, software, dead) values ('https://yerbamate.dev','Gitea',1); insert into forgesTbl (url_clrnet, antitor, notes) values ('https://git.openprivacy.ca',1,'Tor users get 404 - suspected botnet; [listed](https://codeberg.org/crimeflare/cloudflare-tor/src/branch/master/cloudflare_users/cloudflare_supporter.txt) as a Cloudflare supporter'); insert into forgesTbl (url_clrnet, software, notes) values ('https://sr.ht','Sourcehut', 'javascript-free'); @@ -37,7 +41,7 @@ insert into forgesTbl (url_clrnet, software) values ('https://framagit.org','git insert into forgesTbl (url_clrnet, software, hrecaptcha, notes) values ('https://git.feneas.org','gitlab_ce','unavoidable','reCAPTCHA impedes registration and imposes non-free s/w'); insert into forgesTbl (url_clrnet, software, notes) values ('https://git.hardenedbsd.org','gitlab_ce','possibly restricted to BSD efforts'); insert into forgesTbl (url_clrnet, software, notes) values ('https://git.jami.net','gitlab_ce','possibly restricted to Jami efforts'); -insert into forgesTbl (url_clrnet, software, cflogin, hrecaptcha, notes) values ('https://gitlab.com','gitlab_ee',1,'unavoidable','flagship instance running the *Enterprise Edition*; uses both hCAPTCHA & reCAPTCHA; heavily restricted with discriminatory policies'); +insert into forgesTbl (url_clrnet, software, cflogin, hrecaptcha, notes) values ('https://gitlab.com','gitlab_ee',1,'unavoidable','flagship instance running the *Enterprise Edition*; uses both hCAPTCHA & reCAPTCHA; heavily restricted with discriminatory policies; [copious ethical issues](gitlab-dot-com.md)'); insert into forgesTbl (url_clrnet, software, notes) values ('https://gitlab.freedesktop.org','gitlab_ce','possibly restricted to Freedesktop efforts'); insert into forgesTbl (url_clrnet, software, notes) values ('https://gitlab.gnome.org','gitlab_ce','possibly restricted to Gnome efforts'); insert into forgesTbl (url_clrnet, software, hrecaptcha, notes) values ('https://gitlab.torproject.org','gitlab_ce','non-essential tasks','open registration; repo creation possibly restricted; Google reCAPTCHA is [allegedley](https://lists.gnu.org/archive/html/repo-criteria-discuss/2021-03/msg00000.html) used, but [not at registration time](https://gitlab.onionize.space)'); @@ -50,3 +54,4 @@ update forgesTbl set lst_kind = 'black' where cflogin or antitor or forced_nfsw; update forgesTbl set notes = '**Amazon AWS-hosted**'||case when notes is null then '' else '; '||notes end where aws; update forgesTbl set notes = '**dead site**'||case when notes is null then '' else '; '||notes end where dead; update forgesTbl set notes = '**forced h/reCAPTCHA**'||case when notes is null then '' else '; '||notes end where hrecaptcha = 'unavoidable' and notes not like '%captcha%'; +update forgesTbl set notes = '**access granted or denied based on national origin**'||case when notes is null then '' else '; '||notes end where nation_discrimination; diff --git a/tools/gen_forge_table.sh b/tools/gen_forge_table.sh index a8f8085..8b94f86 100755 --- a/tools/gen_forge_table.sh +++ b/tools/gen_forge_table.sh @@ -125,7 +125,7 @@ $(intro $lst)"' |---|---|---|---|---|---|---|---| ' sqlite3 "${db_file}" "select $name_clause||case when url_onion is null then '' else '([${sym[onion]}]('||url_onion||'))' end, - case when dead then '${sym[skull]}' when (cflogin and hrecaptcha = 'unavoidable') or antitor then '${sym[noentry]} (exclusive walled garden)' when not openpubreg then '${sym[red_circle]}' else '${sym[green_circle]}' end, + case when dead then '${sym[skull]}' when (cflogin and hrecaptcha = 'unavoidable') or antitor or nation_discrimination then '${sym[noentry]} (exclusive walled garden)' when not openpubreg then '${sym[red_circle]}' else '${sym[green_circle]}' end, case software when 'gitlab_ce' then 'Gitlab (CE)' when 'gitlab_ee' then 'Gitlab (EE)' when 'other' then 'other/unknown' else software end, case when antitor then '${sym[eye]}' else 'n' end, case when cflogin then '${sym[cloud_lightening]}' else 'n' end,