Skip to content

Adds ruleset for www.guardian.com SecureDrop instance #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ which will create `test-key.jwk` in your current working directory.

1. Ensure they are in the official SecureDrop directory. If they are not, go through the IVF process with the organization.

2. Add their domain to `onboarded.txt` via PR into this repository. We match the domain based on the landing page of the organization, comparing the `netloc` in a URL with structure `scheme://netloc/path;parameters?query#fragment`.
2. Add their domain name and the requested URL to the `onboarded.txt` via PR into this repository. We match the domain based on the landing page of the organization, comparing the `netloc` in a URL with structure `scheme://netloc/path;parameters?query#fragment`.

3. Next, perform a ruleset release as described below.

Expand Down
Binary file added default.rulesets.1593528236.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion latest-rulesets-timestamp
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1588004096
1593528236
6 changes: 4 additions & 2 deletions onboarded.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
lucyparsonslabs.com
theintercept.com
primary_domain,sd_rewrite_rule
lucyparsonslabs.com,lucyparsonslabs.securedrop.tor.onion
theintercept.com,theintercept.securedrop.tor.onion
www.theguardian.com,theguardian.securedrop.tor.onion
Binary file added rulesets-signature.1593528236.sha256
Binary file not shown.
5 changes: 5 additions & 0 deletions rulesets/guardian-securedrop-ruleset.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<ruleset name="The Guardian">
<target host="theguardian.securedrop.tor.onion" />
<rule from="^http[s]?://theguardian.securedrop.tor.onion"
to="http://33y6fjyhs3phzfjj.onion" />
</ruleset>
15 changes: 9 additions & 6 deletions sddir.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import re
import requests
import os
import csv
import urllib

from typing import Dict, List
Expand Down Expand Up @@ -40,13 +41,13 @@ def get_securedrop_directory() -> Dict:
return directory_entry_map


def write_custom_ruleset(onboarded_org: str, directory_entries: Dict) -> None:
def write_custom_ruleset(onboarded_org: str, sd_rewrite_rule: str, directory_entries: Dict) -> None:
directory_entry = directory_entries[onboarded_org]

ruleset = """<ruleset name="{org_name}">\n\t<target host="{securedrop_redirect_url}" />\n\t<rule from="^http[s]?://{securedrop_redirect_url}"
to="{onion_addr_with_protocol}" />\n</ruleset>\n""".format(
org_name=directory_entry["title"],
securedrop_redirect_url=directory_entry["securedrop_redirect_url"],
securedrop_redirect_url=sd_rewrite_rule,
onion_addr_with_protocol=directory_entry["onion_addr_with_protocol"],
securedrop_tld=SECUREDROP_ONION_PSEUDO_TLD,
)
Expand All @@ -64,9 +65,11 @@ def write_custom_ruleset(onboarded_org: str, directory_entries: Dict) -> None:
# do so on an opt-in basis. The following text file contains the homepages
# of the organizations that have opted in.
with open('onboarded.txt', 'r') as f:
onboarded_orgs = f.readlines()
directory_entries = get_securedrop_directory()
for org in onboarded_orgs:
write_custom_ruleset(org.strip(), directory_entries)
reader = csv.DictReader(f)
directory_entries = get_securedrop_directory()
for row in reader:
#write_custom_ruleset(org.strip(), directory_entries)
write_custom_ruleset(row["primary_domain"], row["sd_rewrite_rule"], directory_entries)


print("✔️ Custom rulesets written to directory: ./{}".format(RULESET_DIR))