From 680b8b7d55ed4755e68fca478e20a323a65dece3 Mon Sep 17 00:00:00 2001 From: cyberMonk Date: Tue, 9 Feb 2021 16:27:04 -0500 Subject: [PATCH] publish tor-hostile flags --- tools/gen_brokerage_table.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/gen_brokerage_table.sh b/tools/gen_brokerage_table.sh index be0e3aa..c8293dd 100755 --- a/tools/gen_brokerage_table.sh +++ b/tools/gen_brokerage_table.sh @@ -162,7 +162,7 @@ insert into fiTbl (fi_kind,name,url,cispa,dt,aws,notes) values ("insur insert into fiTbl (fi_kind,name,notes) values ("insurer","N&D Group","no website, only an access-restricted Facebook page"); insert into fiTbl (fi_kind,name,url,antitor,aws,alec,cispa,dt) values ("insurer","Nationwide","https://nationwide.com",1,1,1,1,1); insert into fiTbl (fi_kind,name,url,antitor,dt) values ("insurer","Progressive","https://progressive.com",1,1); -insert into fiTbl (fi_kind,name,url,antitor,notes) values ("insurer","Safe Auto","http://www.safeauto.com",1,"Tor-hostile sign-in page despite Tor-friendly landing page."); +insert into fiTbl (fi_kind,name,url,antitor,notes) values ("insurer","Safe Auto","http://www.safeauto.com",1,"**Tor-hostile** sign-in page despite Tor-friendly landing page."); insert into fiTbl (fi_kind,name,url,parent,antitor,notes) values ("insurer","Safeco","https://safeco.com","Liberty Mutual",1,"akamai hosted"); insert into fiTbl (fi_kind,name,url,dt,notes) values ("insurer","Selective","https://www.selective.com",1,"pushes CloudFlare javascript, but apparently execution is optional."); insert into fiTbl (fi_kind,name,url,dt) values ("insurer","Shelter Insurance","https://shelterinsurance.com",1); @@ -182,7 +182,8 @@ update fiTbl set lst_kind = 'black' where parent in (select name from fiTbl wher update fiTbl set lst_kind = 'gray' where parent in (select name from fiTbl where lst_kind = 'gray') and lst_kind = 'white'; update fiTbl set notes = 'parent: '||parent||case when notes is null then '' else '; '||notes end where parent is not null and (notes is null or notes not like '%'||parent||'%'); -update fiTbl set notes = '**Amazon AWS-hosted**; '||case when notes is null then '' else '; '||notes end where aws; +update fiTbl set notes = '**Amazon AWS-hosted**'||case when notes is null then '' else '; '||notes end where aws; +update fiTbl set notes = '**Tor-hostile** resources'||case when notes is null then '' else '; '||notes end where antitor and notes not like '%tor_hostile%'; EOF };#table_populate