-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcleanup.sh
44 lines (37 loc) · 1.41 KB
/
cleanup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
ROOT=$(pwd);
cd "${ROOT}/toolchain";
# private email hosters
go run cleanup.go --from="@gmail.com";
go run cleanup.go --from="@gmx.de";
go run cleanup.go --from="@gmx.net";
go run cleanup.go --from="@hotmail.com";
go run cleanup.go --from="@outlook.com";
go run cleanup.go --from="@web.de";
# foundations and bug reports
go run cleanup.go --from="@ccc.de";
go run cleanup.go --from="@cert-bund.de";
go run cleanup.go --from="@eff.org";
go run cleanup.go --from="@gulas.ch";
go run cleanup.go --from="@ietf.org";
go run cleanup.go --from="@kernel.org";
go run cleanup.go --from="@mitre.org";
go run cleanup.go --from="@w3c.org";
go run cleanup.go --from="@zendesk.com";
# federal governemnt
go run cleanup.go --from="@bka.bund.de";
go run cleanup.go --from="@bsi.bund.de";
go run cleanup.go --from="@fbi.gov";
go run cleanup.go --from="@interpol.int";
go run cleanup.go --from="@polizei.bw.de";
go run cleanup.go --from="@polizei.bayern.de";
go run cleanup.go --from="@polizei.berlin.de";
go run cleanup.go --from="@polizei.brandenburg.de";
go run cleanup.go --from="@polizei.bremen.de";
go run cleanup.go --from="@polizei.hamburg.de";
go run cleanup.go --from="@polizei.landsh.de";
go run cleanup.go --from="@polizei.nrw.de";
go run cleanup.go --from="@polizei.rlp.de";
go run cleanup.go --from="@polizei.sachsen-anhalt.de";
go run cleanup.go --from="@polizei.slpol.de";
go run cleanup.go --from="@polizei.thueringen.de";