Advertisement
_d3f4ult

[+] NSA XKeyScore Source Code [+]

Jul 5th, 2014
4,272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.42 KB | None | 0 0
  1. =================================================================================================
  2. We are...
  3. _____ _________
  4. / _ \ ____ ____ ____ / _____/ ____ ____
  5. / /_\ \ / \ / _ \ / \ \_____ \_/ __ \_/ ___\
  6. / | \ | ( <_> ) | \/ \ ___/\ \___
  7. \____|__ /___| /\____/|___| /_______ /\___ >\___ >
  8. \/ \/ \/ \/ \/ \/
  9. //Laughing at your security since 2012*
  10. -------------------------------------------------------------------------------------------------
  11. Official Members: Mrlele - AnonSec666 - 3r3b0s - 4prili666h05t - Hannaichi - ap3x h4x0r - d3f4ult
  12. -------------------------------------------------------------------------------------------------
  13.  
  14.  
  15.  
  16. ............................................,,................,,.......................
  17. ..............i.............................,,,,,_......_,,,,,,........................
  18. .............am............................//^\\\\\..../////^\\........................
  19. ...........d3f4ult.........................''\\\\\V.___.V/////''.......................
  20. ............................................../| |\............................
  21. ...........Welc0me...........................<_\_ _/_>...........................
  22. ..............to..............................\ \' '/ /............................
  23. ..............mY...............................\ \ / /.............................
  24. ............P4rty!..............................\ \ / /...............................
  25. .................................................\ \/ /................................
  26. ...................................................V...................................
  27. .......................................................................................
  28. ...............................................................................~~(8:>
  29.  
  30.  
  31. #############################################################################
  32.  
  33. // START_DEFINITION
  34. /*
  35. The fingerprint identifies sessions visiting the Tor Project website from
  36. non-fvey countries.
  37. */
  38. fingerprint('anonymizer/tor/torpoject_visit')=http_host('www.torproject.org')
  39. and not(xff_cc('US' OR 'GB' OR 'CA' OR 'AU' OR 'NZ'));
  40. // END_DEFINITION
  41.  
  42.  
  43. // START_DEFINITION
  44. /*
  45. These variables define terms and websites relating to the TAILs (The Amnesic
  46. Incognito Live System) software program, a comsec mechanism advocated by
  47. extremists on extremist forums.
  48. */
  49.  
  50. $TAILS_terms=word('tails' or 'Amnesiac Incognito Live System') and word('linux'
  51. or ' USB ' or ' CD ' or 'secure desktop' or ' IRC ' or 'truecrypt' or ' tor ');
  52. $TAILS_websites=('tails.boum.org/') or ('linuxjournal.com/content/linux*');
  53. // END_DEFINITION
  54.  
  55. // START_DEFINITION
  56. /*
  57. This fingerprint identifies users searching for the TAILs (The Amnesic
  58. Incognito Live System) software program, viewing documents relating to TAILs,
  59. or viewing websites that detail TAILs.
  60. */
  61. fingerprint('ct_mo/TAILS')=
  62. fingerprint('documents/comsec/tails_doc') or web_search($TAILS_terms) or
  63. url($TAILS_websites) or html_title($TAILS_websites);
  64. // END_DEFINITION
  65.  
  66.  
  67. // START_DEFINITION
  68. requires grammar version 5
  69. /**
  70. * Aggregate Tor hidden service addresses seen in raw traffic.
  71. */
  72. mapreduce::plugin('anonymizer/tor/plugin/onion') =
  73. immediate_keyword(/(?:([a-z]+):\/\/){0,1}([a-z2-7]{16})\.onion(?::(\d+)){0,1}/c : c++
  74. includes: {{
  75. #include <boost/lexical_cast.hpp>
  76. }}
  77. proto: {{
  78. message onion_t {
  79. required string address = 1;
  80. optional string scheme = 2;
  81. optional string port = 3;
  82. }
  83. }}
  84. mapper<onion_t>: {{
  85. static const std::string prefix = "anonymizer/tor/hiddenservice/address/";
  86.  
  87. onion_t onion;
  88. size_t matches = cur_args()->matches.size();
  89. for (size_t pos=0; pos < matches; ++pos) {
  90. const std::string &value = match(pos);
  91. if (value.size() == 16)
  92. onion.set_address(value);
  93. else if(!onion.has_scheme())
  94. onion.set_scheme(value);
  95. else
  96. onion.set_port(value);
  97. }
  98.  
  99. if (!onion.has_address())
  100. return false;
  101.  
  102. MAPPER.map(onion.address(), onion);
  103. xks::fire_fingerprint(prefix + onion.address());
  104. return true;
  105. }}
  106. reducer<onion_t>: {{
  107. for (values_t::const_iterator iter = VALUES.begin();
  108. iter != VALUES.end();
  109. ++iter) {
  110. DB["tor_onion_survey"]["onion_address"] = iter->address() + ".onion";
  111. if (iter->has_scheme())
  112. DB["tor_onion_survey"]["onion_scheme"] = iter->scheme();
  113. if (iter->has_port())
  114. DB["tor_onion_survey"]["onion_port"] = iter->port();
  115. DB["tor_onion_survey"]["onion_count"] = boost::lexical_cast<std::string>(TOTAL_VALUE_COUNT);
  116. DB.apply();
  117. DB.clear();
  118. }
  119. return true;
  120. }});
  121.  
  122. /**
  123. * Placeholder fingerprint for Tor hidden service addresses.
  124. * Real fingerpritns will be fired by the plugins
  125. * 'anonymizer/tor/plugin/onion/*'
  126. */
  127. fingerprint('anonymizer/tor/hiddenservice/address') = nil;
  128. // END_DEFINITION
  129.  
  130.  
  131. // START_DEFINITION
  132. appid('anonymizer/mailer/mixminion', 3.0, viewer=$ascii_viewer) =
  133. http_host('mixminion') or
  134. ip('128.31.0.34');
  135. // END_DEFINITION
  136.  
  137. #############################################################################
  138. ___________ __ _______ _________ _____
  139. \_ _____/ __ __ ____ | | __ \ \ / _____/ / _ \
  140. | __) | | \_/ ___\ | |/ / / | \ \_____ \ / /_\ \
  141. | \ | | /\ \___ | < / | \ / \/ | \
  142. \___ / |____/ \___ >|__|_ \\____|__ //_______ /\____|__ /
  143. \/ \/ \/ \/ \/ \/
  144. =====================================================================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement