This repository was archived by the owner on Jul 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdatabase.wiki
More file actions
10408 lines (10408 loc) · 483 KB
/
database.wiki
File metadata and controls
10408 lines (10408 loc) · 483 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== A-PLUS ===
""Short Description"" : spotted on the Glenn Greenwald's No Place To Hide document.
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [http://hbpub.vo.llnwd.net/o16/video/olmk/holt/greenwald/NoPlaceToHide-Documents-Uncompressed.pdf| No place to hide, by Glenn Greenwald]
=== ACRIDMINI ===
""Short Description"" : spotted on the Spiegel documents (2014 - 06 - 18 / 200 pages)
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" : [[AGILITY]]
""Related items (Parents)"" :
""Related items (Children)"" : [[BOUNDLESSINFORMANT]]
""Status"" : active
""Links"" :
* [http://cryptome.org/2014/06/nsa-spiegel-snowden-14-0618.pdf|cryptome.org NSA spiegel snowden documents leak on June the 18th 2014]
=== AGILEVIEW ===
""Short Description"" :
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : undefined
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2013/08/nsa-x-keyscore-family.htm|cryptome.org - NSA X-Keyscore Member of Cyberespionage Family]
=== AGILITY ===
""Short Description"" : stores intercepted voice communications
""Category"" : program
""Alias"" :
""Family"" : database
""Agency"" : [[NSA]]
""Tags"" : [[phone]] [[gsm]] [[voip]]
""Compartments"" :
""Related items"" : [[OCEANARIUM]] [[PINWALE]] [[NUCLEON]]
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://www.intrepidreport.com/archives/8588|intrepidreport.com - Senate delivers fatal end-of-term blow to Constitution]
* [http://cryptome.org/2013/08/nsa-x-keyscore-family.htm|cryptome.org - NSA X-Keyscore Member of Cyberespionage Family]
=== AIGHANDLER ===
""Short Description"" : Geolocation analysis
""Category"" : program
""Alias"" :
""Family"" : process
""Agency"" : [[NSA]]
""Tags"" : [[geolocation]]
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2013/08/nsa-x-keyscore-family.htm|cryptome.org - NSA X-Keyscore Member of Cyberespionage Family]
=== AIRBAG ===
""Short Description"" : [[JTRIG]] laptop capability for field operations
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== AIRGAP/COZEN ===
""Short Description"" :
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2013/08/nsa-x-keyscore-family.htm|cryptome.org - NSA X-Keyscore Member of Cyberespionage Family]
=== AIRWOLF ===
""Short Description"" : YouTube profile, comment and video collection.
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]] [[youtube]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== ALAMITO ===
""Short Description"" : spotted on the Glenn Greenwald's No Place To Hide document.
""Category"" : mission
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" : [[mexico]]
""Compartments"" :
""Related items"" : [[LIFESAVER]]
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [http://hbpub.vo.llnwd.net/o16/video/olmk/holt/greenwald/NoPlaceToHide-Documents-Uncompressed.pdf| No place to hide, by Glenn Greenwald]
=== ALLIUMARCH ===
""Short Description"" : [[JTRIG]] UIA via the tor network
""Category"" : program
""Alias"" :
""Family"" : process
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]] [[tor]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== ALTEREGOQFD ===
""Short Description"" : A “Question filled Dataset”
""Category"" : program
""Alias"" :
""Family"" : database
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" : [[QUANTUM]]
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2014/01/nsa-codenames.htm|cryptome.org - NSA codenames]
=== AMBASSADORSRECEPTION ===
""Short Description"" : spotted on the Glenn Greenwald's No Place To Hide document. Encrypt itself, delete all emails, encrypt all files, make screen shake, no more log on. Conduct a denial of service attack on the victim computer.
""Category"" : attack vector
""Alias"" :
""Family"" : software
""Agency"" : [[NSA]] [[GCHQ]]
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" : [[JTIR]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [http://hbpub.vo.llnwd.net/o16/video/olmk/holt/greenwald/NoPlaceToHide-Documents-Uncompressed.pdf| No place to hide, by Glenn Greenwald]
=== AMBULANT ===
""Short Description"" : An undetermined, highly confidential compartiment mentioned in the [[BULLRUN]] documents.
""Category"" : compartment
""Alias"" :
""Family"" : ECI
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" : [[ECI]] [[TOP SECRET]] [[SI]] [[REL TO USA]] [[FVEY]]
""Related items"" : [[BULLRUN]]
""Related items (Parents)"" : [[BULLRUN]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2013/09/nsa-bullrun-2-16-guardian-13-0905.pdf|cryptome.org/guardian - PROJECT BULLRUN ]
=== ANCESTRY ===
""Short Description"" : tool for discovering the creation date of Yahoo selectors
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]] [[yahoo]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== ANCHORY ===
""Short Description"" : NSA software system which provides web access to textual intelligence documents / Main repository of finished NSA SIGINT reports going back three years from agencies like [[NSA]], [[CIA]], [[DIA]], State and Foreign Broadcast Information Systems like [[Reuters]] News Service, Cryptologic Intelligence Reports.
""Category"" : program
""Alias"" : [[ANCH]]
""Family"" : database
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" : [[MAUI]] [[OCEANARIUM]]
""Related items (Parents)"" : [[MAUI]]
""Related items (Children)"" : [[BELLTOPPER]] [[SOLIS]]
""Status"" : unknown
""Links"" :
* [https://muckrock.s3.amazonaws.com/foia_files/7-17-13_MR6022RES.pdf| www.muckrock.com -7-17-13_MR6022RES.pdf]
* [http://www.theatlantic.com/technology/archive/2013/08/an-educated-guess-about-how-the-nsa-is-structured/278697/|theatlantic.com - An Educated Guess About How the NSA Is Structured]
* [http://www.intrepidreport.com/archives/8588|intrepidreport.com - Senate delivers fatal end-of-term blow to Constitution]
=== ANGRYNEIGHBOR ===
""Short Description"" : A family of bugs implemented as RF retro reflectors. These communicate with the use of an external radar wave generator such as [[CTX4000]] or [[PHOTOANGLO]]. The signals are then processed by a system such as [[VIEWPLATE]], (for the [[VAGRANT]] video signal). Known implementations: [[LOUDAUTO]] (ambient audio). [[DROPMIRE]] (printer/fax), [[RAGEMASTER]] (video), [[SURLYSPAWN]] (keyboard/mouse).
""Category"" : attack vector
""Alias"" :
""Family"" : hardware
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" : [[CW]] [[SURLYSPAWN]] [[RAGEMASTER]] [[DROPMIRE]] [[LOUDAUTO]]
""Related items (Parents)"" : [[TAO]]
""Related items (Children)"" : [[CTX4000]] [[CW]] [[LOUDAUTO]] [[PHOTOANGLO]] [[SURLYSPAWN]] [[TAWDRYYARD]] [[NIGHTWATCH]] [[VIEWPLATE]]
""Status"" : active
""Links"" :
* [http://www.spiegel.de/international/world/the-nsa-uses-powerful-toolbox-in-effort-to-spy-on-global-networks-a-940969-2.html|spiegel.de - Inside TAO: Documents Reveal Top NSA Hacking Unit]
* [http://cryptome.org/2014/01/nsa-codenames.htm|cryptome.org - NSA codenames]
=== ANGRYPIRATE ===
""Short Description"" : is a tool that will permanently disable a target's account on their computer.
""Category"" : attack vector
""Alias"" :
""Family"" : network
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== ANTICRISISGIRL ===
""Short Description"" : targeted website monitoring using passive . Customised Piwik installation, and is integrated into GTEs passive capabilities
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[GCHQ]]
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [https://firstlook.org/theintercept/article/2014/02/18/snowden-docs-reveal-covert-surveillance-and-pressure-tactics-aimed-at-wikileaks-and-its-supporters/|Snowden Documents Reveal Covert Surveillance and Pressure Tactics Aimed at WikiLeaks and Its Supporters]
=== ANTOLPPROTOSSGUI ===
""Short Description"" : ANTO LP PROTOSS GUI was spotted on [[IRONCHEF]] diagram.
""Category"" : program
""Alias"" : [[ANTO LP PROTOSS GUI]]
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" : [[PROTOSS]] [[ANTO]]
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2014/01/nsa-codenames.htm|cryptome.org - NSA codenames]
=== APERIODIC ===
""Short Description"" : An undetermined, highly confidential compartiment mentioned in the [[BULLRUN]] documents.
""Category"" : compartment
""Alias"" :
""Family"" : ECI
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" : [[ECI]] [[TOP SECRET]] [[SI]] [[REL TO USA]] [[FVEY]]
""Related items"" : [[BULLRUN]]
""Related items (Parents)"" : [[BULLRUN]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2013/09/nsa-bullrun-2-16-guardian-13-0905.pdf|cryptome.org/guardian]
=== APERTURESCIENCE ===
""Short Description"" : spotted on the Spiegel documents (2014 - 06 - 18 / 200 pages)
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" : [[BOUNDLESSINFORMANT]]
""Status"" : active
""Links"" :
* [http://cryptome.org/2014/06/nsa-spiegel-snowden-14-0618.pdf|cryptome.org NSA spiegel snowden documents leak on June the 18th 2014]
=== APEX ===
""Short Description"" : Collection via TURMOIL of HAMMERSTEIN exfil of VPN traffic, and HAMMERCHANT exfil of targeted VoIP
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" : [[vpn]] [[voip]] [[31c3]]
""Compartments"" :
""Related items"" :
""Related items (Parents)"" : [[TURMOIL]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2014/06/nsa-spiegel-snowden-14-0618.pdf|Der Spiegel - Attacks on VPN, SSL, TLS, SSH, Tor]
=== AQUADOR ===
""Short Description"" : Merchant ship tracking tool
""Category"" : program
""Alias"" :
""Family"" : process
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://www.theatlantic.com/technology/archive/2013/08/an-educated-guess-about-how-the-nsa-is-structured/278697/|theatlantic.com - An Educated Guess About How the NSA Is Structured]
=== ARCA ===
""Short Description"" : SIGINT Exchange Designators with Third or Fourth Parties.
""Category"" : compartment
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://www.intrepidreport.com/archives/8588|intrepidreport.com - Senate delivers fatal end-of-term blow to Constitution]
=== ARKSTREAM ===
""Short Description"" : malicious BIOS flashing program, known to be associated with [[DEITYBOUNCE]] and [[SWAP]].
""Category"" : attack vector
""Alias"" :
""Family"" : hardware
""Agency"" : [[NSA]]
""Tags"" : [[bios]]
""Compartments"" :
""Related items"" : [[DEITYBOUNCE]] [[SWAP]]
""Related items (Parents)"" : [[TAO]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2014/01/nsa-codenames.htm|cryptome.org - NSA codenames]
=== ARSONSAM ===
""Short Description"" : is a tool to test the effect of certain types of PDU SMS messages on phones / network. Also includes PDU SMS Sumb Fuzz testing.
""Category"" : attack vector
""Alias"" :
""Family"" : network
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]] [[sms]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== ARTEMIS ===
""Short Description"" : An undetermined program for Geospatial analysis
""Category"" : program
""Alias"" :
""Family"" : process
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" : [[ENTOURAGE]]
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2014/01/nsa-codenames.htm|cryptome.org - NSA codenames]
=== ARTIFICE ===
""Short Description"" : A [[SIGAD]] (SIGINT Activity Designator) known as [[STORMBREW]], for example, relies on two unnamed corporate partners described only as [[ARTIFICE]] and [[WOLFPOINT]]. According to an NSA site inventory, the companies administer the NSA’s “physical systems,” or interception equipment, and “NSA asks nicely for tasking/updates.”
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" : [[TOP SECRET]] [[COMINT]] [[NOFORN]]
""Related items"" : [[WOLFPOINT]] [[STORMBREW]]
""Related items (Parents)"" : [[STORMBREW]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [http://www.washingtonpost.com/world/national-security/nsa-tracking-cellphone-locations-worldwide-snowden-documents-show/2013/12/04/5492873a-5cf2-11e3-bc56-c6ca94801fac_story.html|washingtonpost.com - NSA tracking cellphone locations worldwide, Snowden documents show]
* [http://electrospaces.blogspot.fr/2014/01/slides-about-nsas-upstream-collection.html|electrospaces.blogspot.fr - Slides about NSA's Upstream collection]
* [https://www.documentcloud.org/documents/813849-sso2.html#document/p1| www.documentcloud.org - FAA reports by provider]
=== ASPHALT ===
""Short Description"" : Proof-of-concept system based on collecting everything. Mentionned on [[TARMAC]] slide-show presentation and Glenn Greenwald's No Place To Hide document..
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" : [[TOP SECRET]] [[COMINT]] [[REL TO USA]] [[FVEY]]
""Related items"" : [[TARMAC]]
""Related items (Parents)"" : [[TARMAC]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://hbpub.vo.llnwd.net/o16/video/olmk/holt/greenwald/NoPlaceToHide-Documents-Uncompressed.pdf|Documents from the Glenn Greenwald's book "No Place to Hide"]
=== ASSOCIATION ===
""Short Description"" : Tactical SIGINT social network database
""Category"" : program
""Alias"" :
""Family"" : database
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://www.theatlantic.com/technology/archive/2013/08/an-educated-guess-about-how-the-nsa-is-structured/278697/|theatlantic.com - An Educated Guess About How the NSA Is Structured]
=== ASTRALPROJECTION ===
""Short Description"" : Remote GSM secure covert internet proxy using TOR hidden services.
""Category"" : program
""Alias"" :
""Family"" : process
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]] [[gsm]] [[tor]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== AUNTIE ===
""Short Description"" : An undetermined, highly confidential compartiment mentioned in the [[BULLRUN]] documents.
""Category"" : compartment
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" : [[ECI]] [[TOP SECRET]] [[SI]] [[REL TO USA]] [[FVEY]]
""Related items"" : [[BULLRUN]]
""Related items (Parents)"" : [[BULLRUN]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2013/09/nsa-bullrun-2-16-guardian-13-0905.pdf|cryptome.org/guardian - nsa-bullrun-2-16-guardian-13-0905.pdf]
=== AUTOSOURCE ===
""Short Description"" :
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2013/08/nsa-x-keyscore-family.htm|cryptome.org -NSA X-Keyscore Member of Cyberespionage Family]
=== AXLEGREASE ===
""Short Description"" : The covert banking link for CPG
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== BABYLON ===
""Short Description"" : is a tool that bulk quieries web mail addresses and verifies ether they can be signed up for. A green tick indicates that is currently in use. Verification can currently be done for Hotmail and Yahoo.
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]] [[email]] [[hotmail]] [[yahoo]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== BACONRIDGE ===
""Short Description"" : Installation of [[TAO]] in St. Antonio, TX. 270 personnel, 210 workstations.
""Category"" : compartment
""Alias"" : [[BOD]]
""Family"" : ECI
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" : [[TAO]]
""Related items (Parents)"" : [[TAO]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://www.spiegel.de/fotostrecke/nsa-dokumente-die-abteilung-tao-der-nsa-fotostrecke-105355-14.html|Der Spiegel - Geheimdokumente: Die Spezialabteilung [[TAO]] der NSA stellt sich vor]
* [http://cryptome.org/2014/01/nsa-codenames.htm|cryptome.org - NSA codenames]
=== BADGER ===
""Short Description"" : mass delivery of email messaging to support an information operations campaign.
""Category"" : attack vector
""Alias"" :
""Family"" : network
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]] [[email]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== BALLOONKNOT ===
""Short Description"" : spotted on the Spiegel documents (2014 - 06 - 18 / 200 pages)
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" : [[BOUNDLESSINFORMANT]]
""Status"" : active
""Links"" :
* [http://cryptome.org/2014/06/nsa-spiegel-snowden-14-0618.pdf|cryptome.org NSA spiegel snowden documents leak on June the 18th 2014]
=== BANANAGLEE ===
""Short Description"" : A software exploit made by Digital Network Technologies ([[DNT]]) for Juniper Netscreen ns5xt, ns50, ns200, ns500, ISG 1000, ssg140, ssg5, ssg20, SSG 320M, SSG 350M, SSG 520, SSG 550, SSG 520M, SSG 550M firewalls. Also works on Cisco PIX 500 series and ASA 5505, 5510, 5520, 5540, and 5550 series firewalls. Used for exfiltrating data from target networks.
""Category"" : attack vector
""Alias"" :
""Family"" : software
""Agency"" : [[NSA]]
""Tags"" : [[cisco]] [[router]] [[juniper]]
""Compartments"" :
""Related items"" : [[TAO]] [[JETPLOW]] [[SOUFFLETROUGH]] [[FEEDTROUGH]] [[GOURMETTROUGH]]
""Related items (Parents)"" : [[TAO]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2014/01/nsa-codenames.htm|cryptome.org - NSA codenames]
=== BANISTER ===
""Short Description"" : spotted on the Glenn Greenwald's No Place To Hide document.
""Category"" : mission
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" : [[colombia]]
""Compartments"" :
""Related items"" : [[LIVESAVER]]
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [http://hbpub.vo.llnwd.net/o16/video/olmk/holt/greenwald/NoPlaceToHide-Documents-Uncompressed.pdf| No place to hide, by Glenn Greenwald]
=== BANYAN ===
""Short Description"" : NSA tactical geospatial correlation database
""Category"" : program
""Alias"" :
""Family"" : database
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://www.theatlantic.com/technology/archive/2013/08/an-educated-guess-about-how-the-nsa-is-structured/278697/|theatlantic.com - An Educated Guess About How the NSA Is Structured]
=== BEACHHEAD ===
""Short Description"" : Computer exploit delivered by the [[FERRETCANNON]] system.
""Category"" : attack vector
""Alias"" : [[BEACH HEAD]]
""Family"" : network
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" : [[FERRETCANNON]] [[FOXACID]]
""Related items (Parents)"" : [[FERRETCANNON]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [https://www.schneier.com/blog/archives/2013/10/the_nsas_new_ri.html|schneier.com - The NSA's New Risk Analysis]
=== BEARSCRAPE ===
""Short Description"" : can extract WiFi connection history (MAC and timing) when supplied with a copy of the registry structure or run on the box
""Category"" : program
""Alias"" :
""Family"" : process
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]] [[wifi]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== BEARTRAP ===
""Short Description"" : Bulk retrieval of public Bebo profiles from member or group ID
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]] [[bebo]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== BELLTOPPER ===
""Short Description"" : NSA software system like [[ANCHORY]] but without dividing data into database groups. [[BELLTOPPER]] place data into one database.
""Category"" : program
""Alias"" :
""Family"" : database
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" : [[SOLIS]]
""Related items (Parents)"" : [[ANCHORY]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [https://muckrock.s3.amazonaws.com/foia_files/7-17-13_MR6022RES.pdf|muckrock.com - 7-17-13_MR6022RES.pdf]
=== BERRYTWISTER ===
""Short Description"" : A sub-system of [[FRUITBOWL]]
""Category"" : program
""Alias"" :
""Family"" : process
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]]
""Compartments"" :
""Related items"" : [[JTRIG]] [[FRUITBOWL]]
""Related items (Parents)"" : [[FRUITBOWL]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== BERRYTWISTER+ ===
""Short Description"" : A sub-system of [[FRUITBOWL]]
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]]
""Compartments"" :
""Related items"" : [[JTRIG]] [[FRUITBOWL]]
""Related items (Parents)"" : [[JTRIG]] [[FRUITBOWL]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== BINOCULAR ===
""Short Description"" : [[BINOCULAR]] is an integrated NSA signals intelligence source data broadcast service system, integrating nine separate Ultra High Frequency (UHF) transmissions, transmitted through the Global Broadcast System satellite network.
""Category"" : program
""Alias"" :
""Family"" : process
""Agency"" : [[NSA]]
""Tags"" : [[cw]]
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [https://www.fas.org/irp/program/disseminate/binocular.htm|fas.org - BINOCULAR ]
=== BIRDSONG ===
""Short Description"" : Automated posting of twitter updates
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]] [[twitter]]
""Compartments"" :
""Related items"" : [[JTRIG]] [[SYLVESTER]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : inactive
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== BIRDSTRIKE ===
""Short Description"" : Twitter monitoring and profile collection
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== BLACKFOOT ===
""Short Description"" : coverterm to the bugging of French mission to the United Nations in New York
""Category"" : mission
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" : [[france]]
""Compartments"" : [[TOP SECRET]]
""Related items"" : [[HIGHLANDS]] [[VAGRANT]] [[GENIE]] [[DROPMIRE]] [[WABASH]] [[PBX]]
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [http://www.theguardian.com/world/2013/jun/30/nsa-leaks-us-bugging-european-allies|theguardian.com - New NSA leaks show how US is bugging its European allies]
* [http://www.bbc.co.uk/news/world-europe-24628947| http://www.bbc.co.uk - US National Security Agency 'spied on French diplomats]
* [https://www.documentcloud.org/documents/807030-ambassade.html#document/p1|docs by lemonde.fr]
=== BLACKHEART ===
""Short Description"" : collection from FBI implant.
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [https://www.documentcloud.org/documents/807030-ambassade.html#document/p1|docs by lemonde.fr]
* [https://www.schneier.com/blog/archives/2013/10/code_names_for.html|www.schneier.com - Code Names for NSA Exploit Tools]
* [http://cryptome.org/2014/01/nsa-codenames.htm|cryptome.org - NSA codenames]
=== BLACKNIGHT ===
""Short Description"" : spotted on Washigton post document from June 1'th 2014
""Category"" : [[program]]
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2014/06/nsa-spiegel-snowden-14-0618.pdf|cryptome.org NSA spiegel snowden documents leak on June the 18th 2014]
=== BLACKPEARL ===
""Short Description"" : This program was mentioned in context of Petrobras - the largest oil company of Brazil - story. BLACKPEARL extracts data from private networks.
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" : [[dni]] [[gsm]] [[crypto]]
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2014/01/nsa-codenames.htm|cryptome.org - NSA codenames]
* [https://secure.huffingtonpost.com/zachary-graves/the-nsas-war-against-encr_b_3901328.html| secure.huffingtonpost.com]
* [http://hbpub.vo.llnwd.net/o16/video/olmk/holt/greenwald/NoPlaceToHide-Documents-Uncompressed.pdf|Documents from the Glenn Greenwald's book "No Place to Hide"]
* [http://cryptome.org/2014/06/nsa-spiegel-snowden-14-0618.pdf|cryptome.org NSA spiegel snowden documents leak on June the 18th 2014]
=== BLARNEY ===
""Short Description"" : BLARNEY is a communications surveillance program, started in 1978 and operated under FISA. The collection takes place at top-level telecommunications facilities within the United States, choke points through which most traffic will flow, including wireless. This type of surveillance is referred to as "[[UPSTREAM]] collection". Among the facilities associated with BLARNEY are AT&T's Room 641A in San Francisco, California, revealed in 2006 by Mark Klein, and another in New Jersey. Like its counterparts, BLARNEY was expanded after the September 11 attacks. Information collected from BLARNEY is shared with many agencies in the United States, including the CIA, NSA, FBI and DOJ, it is also shared with the Five Eyes and NATO. A number of private companies also have access.Key Targets are : Diplomatic establishment, counterterrorism, Foreign Government, Economic
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" : [[FISA]] [[TOP SECRET]] [[COMINT]] [[NOFORN]] [[FOUO]]
""Related items"" : [[UPSTREAM]] [[XKEYSCORE]]
""Related items (Parents)"" : [[UPSTREAM]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [https://en.wikipedia.org/wiki/Blarney_%28code_name%29|en.wikipedia.org - Blarney]
* [http://online.wsj.com/article/SB10001424127887324108204579022874091732470.html|wsj.com - New Details Show Broader NSA Surveillance Reach]
* [http://cryptome.org/2013/12/nsa-cable-spy-types.pdf||SSO - The cryptologic provider of Intelligence from Global High-Capacity Telecommunications Systems]
* [http://hbpub.vo.llnwd.net/o16/video/olmk/holt/greenwald/NoPlaceToHide-Documents-Uncompressed.pdf|Documents from the Glenn Greenwald's book "No Place to Hide"]
=== BLEAKINQUIRY ===
""Short Description"" : metadata database of potentially exploitable VPNs
""Category"" : program
""Alias"" :
""Family"" : database
""Agency"" : [[NSA]]
""Tags"" : [[vpn]] [[metadata]] [[31c3]]
""Compartments"" :
""Related items"" :
""Related items (Parents)"" : [[TOYGRIPPE]] [[XKEYSCORE]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2014/06/nsa-spiegel-snowden-14-0618.pdf|Der Spiegel - Attacks on VPN, SSL, TLS, SSH, Tor]
=== BLINDDATE ===
""Short Description"" : Software included on [[SPARROW-II]] mini computers. Also seen in another context on [[QFIRE]] slide as part of a “[[TAO]] covert network.”.
""Category"" : attack vector
""Alias"" :
""Family"" : hardware
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" : [[STRAITBIZARRE]] [[QUANTUM]] [[QFIRE]] [[TAO]] [[NEPTUNETHUNDER]]
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2014/01/nsa-codenames.htm|cryptome.org - NSA codenames]
=== BLUEANCHOR ===
""Short Description"" : Partner providing a network access point for the [[YACHTSHOP]] program.
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" : [[YACHTSHOP]] [[UPSTREAM]]
""Related items (Parents)"" : [[YACHTSHOP]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [https://en.wikipedia.org/wiki/OAKSTAR|en.wikipedia.org - OAKSTAR]
=== BLUEZEPHYR ===
""Short Description"" : subprogram of [[OAKSTAR]].
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" :
""Compartments"" :
""Related items"" : [[OAKSTAR]] [[UPSTREAM]]
""Related items (Parents)"" : [[OAKSTAR]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [https://en.wikipedia.org/wiki/OAKSTAR| en.wikipedia.org - OAKSTAR]
=== BOMBAYROLL ===
""Short Description"" : [[JTRIG]]'s legacy UIA standalone capability
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== BOMBBAY ===
""Short Description"" : is the capabilty to increase website hits/rankings.
""Category"" : attack vector
""Alias"" :
""Family"" : network
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]] [[website]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== BOTANICREALTY ===
""Short Description"" : Collaboration between TEC and MSOC System Development and Signals Development Lab. It's a solution to collect a video network. The video is unencrypted and, for a period of two months, encrypted. In the first hours on run, over 1000 collects, totalling hundreds of hours of video, have been made.
""Category"" : program
""Alias"" : [[UNCANNY]]
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" : [[video]]
""Compartments"" : [[TOP SECRET]] [[COMINT]] [[REL TO USA]] [[FVEY]]
""Related items"" : [[LADYLOVE]] [[HIGHPRIDE]]
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2014/06/nsa-spiegel-snowden-14-0618.pdf|Compiled documents by Cryptome of Der Spiegel documents]
* [http://www.spiegel.de/international/the-germany-file-of-edward-snowden-documents-available-for-download-a-975917.html|Non-compiled documents from Der Spiegel]
=== BOUNDLESSINFORMANT ===
""Short Description"" : BOUNDLESSINFORMANT is a big data analysis and data visualization system used by the NSA to give managers summaries of the NSA's world wide data collection activities. According to a Top Secret heat map display also published by The Guardian and produced by the Boundless Informant program, almost 3 billion data elements from inside the United States were captured by the NSA over a 30-day period ending in March 2013.Data analyzed by BOUNDLESSINFORMANT includes electronic surveillance program records ([[dni]]) and telephone call metadata records ([[dnr]]) stored in an NSA data archive called [[GM-PLACE]]. It does not include FISA data, according to the FAQ memo. [[PRISM]] ([[US-984XN]]), which was revealed at the same time as BOUNDLESSINFORMANT, is one source of DNR data. According to the map, BOUNDLESSINFORMANT summarizes data records from 504 separate [[dnr]] and [[dnr]] collection sources (SIGADs). In the map, countries that are under surveillance are assigned a color from green, representing least coverage to red, most intensive.
""Category"" : program
""Alias"" :
""Family"" : process
""Agency"" : [[NSA]]
""Tags"" : [[dni]] [[dnr]] [[phone]]
""Compartments"" : [[TOP SECRET]] [[NOFORN]] [[FOUO]] [[FISA]]
""Related items"" : [[PRISM]] [[FASCIA]]
""Related items (Parents)"" : [[ACRIDMINI]] [[LUTEUSICARUS]] [[HEADMOVIES]] [[APERTURESCIENCE]] [[CROSSEYEDSLOTH]] [[KOALAPUNCH]] [[BALLOONKNOT]] [[MAGNUMOPUS]] [[WAXTITAN]] [[WILDCOUGAR]] [[MURPHYSLAW]] [[DARKFIRE]] [[CHOCOLATESHIP]] [[SCREAMINGHARPY]] [[WILDCHOCOBO]] [[CHAOSOVERLORD]] [[SHAREDTAFFY]] [[POTBED]] [[DARKTHUNDER]] [[JEEPFLEA]] [[TROPICPUMA]] [[SHARPSHADOW]] [[HIGHCASTLE]]
""Related items (Children)"" :
""Status"" : active
""Links"" :
* [https://en.wikipedia.org/wiki/Boundless_Informant|en.wikipedia.org - Boundless Informant]
* [http://www.theguardian.com/world/2013/jun/08/nsa-boundless-informant-global-datamining|The Guardian - Boundless Informant: the NSA's secret tool to track global surveillance data]
* [http://hbpub.vo.llnwd.net/o16/video/olmk/holt/greenwald/NoPlaceToHide-Documents-Uncompressed.pdf| No place to hide, by Glenn Greenwald]
* [http://cryptome.org/2014/06/nsa-spiegel-snowden-14-0618.pdf|cryptome.org NSA spiegel snowden documents leak on June the 18th 2014]
=== BOXINGRUMBLE ===
""Short Description"" : Programm of Bots
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : undefined
""Tags"" : [[TAO]]
""Compartments"" :
""Related items"" : [[QUANTUMDNS]]
""Related items (Parents)"" : [[DEFIANTWARRIOR]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://www.spiegel.de/international/world/new-snowden-docs-indicate-scope-of-nsa-preparations-for-cyber-battle-a-1013409-2.html|The Digital Arms Race: NSA Preps America for Future Battle]
=== BRANDYSNAP ===
""Short Description"" : [[JTRIG]] UIA contingency at Scarborough
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[GCHQ]]
""Tags"" : [[jtrig]]
""Compartments"" :
""Related items"" : [[JTRIG]]
""Related items (Parents)"" : [[JTRIG]]
""Related items (Children)"" :
""Status"" : unknow
""Links"" :
* [https://firstlook.org/theintercept/2014/07/14/manipulating-online-polls-ways-british-spies-seek-control-internet/|Hacking Online Polls and Other Ways British Spies Seek to Control the Internet]
=== BRAVENICKEL ===
""Short Description"" : Spotted on a document, leaked by the spiegel in december 2014: optical muxes for copying shape of optical signals to an passive collector, one could do some selection process.
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" : [[31c3]]
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2014/06/nsa-spiegel-snowden-14-0618.pdf|Der Spiegel - Attacks on VPN, SSL, TLS, SSH, Tor]
=== BROADOAK ===
""Short Description"" : GCHQ's database of target info on TLS events.
""Category"" : program
""Alias"" :
""Family"" : database
""Agency"" : [[GCHQ]]
""Tags"" : [[ssl]] [[31c3]]
""Compartments"" :
""Related items"" :
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2014/06/nsa-spiegel-snowden-14-0618.pdf|Der Spiegel - Attacks on VPN, SSL, TLS, SSH, Tor]
=== BRUNEAU ===
""Short Description"" : Name of an operation to bug the italian UN mission, introducing spywares in foreign embassies.
""Category"" : mission
""Alias"" : [[HEMLOCK]]
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" : [[italy]]
""Compartments"" :
""Related items"" : [[GENIE]] [[DROPMIRE]] [[LIFESAVER]] [[HEMLOCK]]
""Related items (Parents)"" :
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://www.theguardian.com/world/2013/jun/30/nsa-leaks-us-bugging-european-allies|TheGuardian - New NSA leaks show how US is bugging its European allies]
=== BSR ===
""Short Description"" : Base Station Router, use for intercepting GSM cell phone signals. Ships with laptop and accessories, networkable with other units via 802.11. Supports [[CANDYGRAM]] and [[LANDSHARK]] capabilities.
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" : [[gsm]] [[phone]]
""Compartments"" :
""Related items"" : [[CANDYGRAM]] [[LANDSHARK]]
""Related items (Parents)"" : [[TAO]]
""Related items (Children)"" :
""Status"" : unknown
""Links"" :
* [http://cryptome.org/2013/12/nsa-catalog-appelbaum.pdf|cryptome.org - NSA's catalog]
* [http://cryptome.org/2014/01/nsa-codenames.htm|cryptome.org - NSA codenames]
=== BTUBE ===
""Short Description"" : spotted on some document leaked in december 2014 by the Spiegel. The documents are about breaking crypto (vpn, ssl/tls, ...).
""Category"" : program
""Alias"" :
""Family"" : collect
""Agency"" : [[NSA]]
""Tags"" : [[31c3]] [[vpn]]
""Compartments"" :
""Related items"" :
""Related items (Parents)"" : [[GALLANTWAVE]] [[TUBE]]
""Related items (Children)"" :
""Status"" : unknown