shadowbq-threatinator 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (389) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +66 -0
  3. data/CONTRIBUTING.md +119 -0
  4. data/Gemfile +38 -0
  5. data/LICENSE +165 -0
  6. data/README.md +101 -0
  7. data/Rakefile +47 -0
  8. data/VERSION +1 -0
  9. data/bin/threatinator +5 -0
  10. data/bin/threatinator_loader +21 -0
  11. data/feeds/ET_block-ip_reputation.feed +27 -0
  12. data/feeds/ET_compromised-ip_reputation.feed +20 -0
  13. data/feeds/ET_openbadlist-ip_reputation.feed +36 -0
  14. data/feeds/alienvault-ip_reputation.feed +39 -0
  15. data/feeds/arbor_fastflux-domain_reputation.feed +19 -0
  16. data/feeds/arbor_ssh-ip_reputation.feed +24 -0
  17. data/feeds/autoshun_shunlist.feed +17 -0
  18. data/feeds/bambenek_c2_masterlist-domain_reputation.feed +16 -0
  19. data/feeds/bambenek_c2_masterlist-ip_reputation.feed +16 -0
  20. data/feeds/bambenek_dga_feed-domain_reputation.feed +16 -0
  21. data/feeds/berkeley-ip_reputation.feed +25 -0
  22. data/feeds/bitcash_cz_blacklist.feed +22 -0
  23. data/feeds/blocklist_de_apache-ip_reputation.feed +26 -0
  24. data/feeds/blocklist_de_bots-ip_reputation.feed +26 -0
  25. data/feeds/blocklist_de_ftp-ip_reputation.feed +25 -0
  26. data/feeds/blocklist_de_imap-ip_reputation.feed +25 -0
  27. data/feeds/blocklist_de_pop3-ip_reputation.feed +26 -0
  28. data/feeds/blocklist_de_proftpd-ip_reputation.feed +26 -0
  29. data/feeds/blocklist_de_sip-ip_reputation.feed +25 -0
  30. data/feeds/blocklist_de_ssh-ip_reputation.feed +25 -0
  31. data/feeds/blocklist_de_strongips-ip_reputation.feed +25 -0
  32. data/feeds/botscout-ip_reputation.feed +25 -0
  33. data/feeds/cert_mxpoison-ip_reputation.feed +22 -0
  34. data/feeds/chaosreigns-ip_reputation.feed +37 -0
  35. data/feeds/ciarmy-ip_reputation.feed +20 -0
  36. data/feeds/cruzit-ip_reputation.feed +30 -0
  37. data/feeds/cydef_torexit-ip_reputation.feed +25 -0
  38. data/feeds/dan_me_uk_torlist-ip_reputation.feed +25 -0
  39. data/feeds/danger_bruteforce-ip_reputation.feed +24 -0
  40. data/feeds/dshield_attackers-top1000.feed +34 -0
  41. data/feeds/falconcrest-ip_reputation.feed +19 -0
  42. data/feeds/feodo-domain_reputation.feed +19 -0
  43. data/feeds/feodo-ip_reputation.feed +20 -0
  44. data/feeds/h3x_asprox.feed +18 -0
  45. data/feeds/hosts-file_hphostspartial-domain_reputation.feed +19 -0
  46. data/feeds/infiltrated-ip_reputation.feed +26 -0
  47. data/feeds/infiltrated_vabl-ip_reputation.feed +30 -0
  48. data/feeds/isc_suspicious_high-domain_reputation.feed +26 -0
  49. data/feeds/isc_suspicious_low-domain_reputation.feed +26 -0
  50. data/feeds/isc_suspicious_medium-domain_reputation.feed +26 -0
  51. data/feeds/malc0de-domain_reputation.feed +24 -0
  52. data/feeds/malc0de-ip_reputation.feed +26 -0
  53. data/feeds/malwaredomainlist-url_reputation.feed +18 -0
  54. data/feeds/malwaredomains-domain_reputation.feed +29 -0
  55. data/feeds/malwaredomains_dyndns-domain_reputation.feed +29 -0
  56. data/feeds/malwaredomains_justdomains-domain_reputation.feed +20 -0
  57. data/feeds/mirc-domain_reputation.feed +30 -0
  58. data/feeds/multiproxy-ip_reputation.feed +22 -0
  59. data/feeds/nothink_irc-ip_reputation.feed +23 -0
  60. data/feeds/nothink_ssh-ip_reputation.feed +21 -0
  61. data/feeds/openbl-ip_reputation.feed +21 -0
  62. data/feeds/openphish-url_reputation.feed +24 -0
  63. data/feeds/packetmail_perimeterbad-ip_reputation.feed +28 -0
  64. data/feeds/palevo-domain_reputation.feed +22 -0
  65. data/feeds/palevo-ip_reputation.feed +23 -0
  66. data/feeds/phishtank.feed +22 -0
  67. data/feeds/sigmaproject_atma.feed +27 -0
  68. data/feeds/sigmaproject_spyware.feed +28 -0
  69. data/feeds/sigmaproject_webexploit.feed +26 -0
  70. data/feeds/snort_bpf-ip_reputation.feed +19 -0
  71. data/feeds/spyeye-domain_reputation.feed +18 -0
  72. data/feeds/spyeye-ip_reputation.feed +19 -0
  73. data/feeds/steeman-ip_reputation.feed +20 -0
  74. data/feeds/t-arend-de_ssh-ip_reputation.feed +20 -0
  75. data/feeds/the_haleys_ssh-ip_reputation.feed +20 -0
  76. data/feeds/trustedsec-ip_reputation.feed +18 -0
  77. data/feeds/virbl-ip_reputation.feed +25 -0
  78. data/feeds/vxvault-url_reputation.feed +23 -0
  79. data/feeds/yourcmc_ssh-ip_reputation.feed +20 -0
  80. data/feeds/yoyo_adservers-domain_reputation.feed +17 -0
  81. data/feeds/zeus-domain_reputation.feed +19 -0
  82. data/feeds/zeus-ip_reputation.feed +21 -0
  83. data/lib/threatinator/action.rb +14 -0
  84. data/lib/threatinator/actions/list/action.rb +97 -0
  85. data/lib/threatinator/actions/list/config.rb +12 -0
  86. data/lib/threatinator/actions/list.rb +2 -0
  87. data/lib/threatinator/actions/run/action.rb +57 -0
  88. data/lib/threatinator/actions/run/config.rb +32 -0
  89. data/lib/threatinator/actions/run/coverage_observer.rb +59 -0
  90. data/lib/threatinator/actions/run/output_config.rb +59 -0
  91. data/lib/threatinator/actions/run/status_observer.rb +37 -0
  92. data/lib/threatinator/actions/run.rb +2 -0
  93. data/lib/threatinator/cli/action_builder.rb +33 -0
  94. data/lib/threatinator/cli/list_action_builder.rb +19 -0
  95. data/lib/threatinator/cli/parser.rb +123 -0
  96. data/lib/threatinator/cli/run_action_builder.rb +41 -0
  97. data/lib/threatinator/cli.rb +19 -0
  98. data/lib/threatinator/config/base.rb +35 -0
  99. data/lib/threatinator/config/feed_search.rb +25 -0
  100. data/lib/threatinator/config/logger.rb +14 -0
  101. data/lib/threatinator/config.rb +7 -0
  102. data/lib/threatinator/decoder.rb +24 -0
  103. data/lib/threatinator/decoders/gzip.rb +30 -0
  104. data/lib/threatinator/event.rb +63 -0
  105. data/lib/threatinator/event_builder.rb +70 -0
  106. data/lib/threatinator/exceptions.rb +58 -0
  107. data/lib/threatinator/feed.rb +88 -0
  108. data/lib/threatinator/feed_builder.rb +161 -0
  109. data/lib/threatinator/feed_registry.rb +47 -0
  110. data/lib/threatinator/feed_runner.rb +177 -0
  111. data/lib/threatinator/fetcher.rb +22 -0
  112. data/lib/threatinator/fetchers/http.rb +50 -0
  113. data/lib/threatinator/filter.rb +12 -0
  114. data/lib/threatinator/filters/block.rb +18 -0
  115. data/lib/threatinator/filters/comments.rb +16 -0
  116. data/lib/threatinator/filters/whitespace.rb +19 -0
  117. data/lib/threatinator/logger.rb +66 -0
  118. data/lib/threatinator/logging.rb +20 -0
  119. data/lib/threatinator/model/base.rb +23 -0
  120. data/lib/threatinator/model/collection.rb +89 -0
  121. data/lib/threatinator/model/observables/fqdn_collection.rb +15 -0
  122. data/lib/threatinator/model/observables/ipv4.rb +33 -0
  123. data/lib/threatinator/model/observables/ipv4_collection.rb +14 -0
  124. data/lib/threatinator/model/observables/url_collection.rb +16 -0
  125. data/lib/threatinator/model/validations/type.rb +21 -0
  126. data/lib/threatinator/model/validations.rb +1 -0
  127. data/lib/threatinator/output.rb +50 -0
  128. data/lib/threatinator/parser.rb +23 -0
  129. data/lib/threatinator/parsers/csv/parser.rb +77 -0
  130. data/lib/threatinator/parsers/csv.rb +7 -0
  131. data/lib/threatinator/parsers/getline/parser.rb +45 -0
  132. data/lib/threatinator/parsers/getline.rb +8 -0
  133. data/lib/threatinator/parsers/json/adapters/oj.rb +65 -0
  134. data/lib/threatinator/parsers/json/parser.rb +45 -0
  135. data/lib/threatinator/parsers/json/record.rb +20 -0
  136. data/lib/threatinator/parsers/json.rb +8 -0
  137. data/lib/threatinator/parsers/xml/node.rb +79 -0
  138. data/lib/threatinator/parsers/xml/node_builder.rb +39 -0
  139. data/lib/threatinator/parsers/xml/parser.rb +44 -0
  140. data/lib/threatinator/parsers/xml/path.rb +70 -0
  141. data/lib/threatinator/parsers/xml/pattern.rb +53 -0
  142. data/lib/threatinator/parsers/xml/record.rb +14 -0
  143. data/lib/threatinator/parsers/xml/sax_document.rb +64 -0
  144. data/lib/threatinator/parsers/xml.rb +8 -0
  145. data/lib/threatinator/plugin_loader.rb +115 -0
  146. data/lib/threatinator/plugins/output/amqp/config.rb +18 -0
  147. data/lib/threatinator/plugins/output/amqp.rb +41 -0
  148. data/lib/threatinator/plugins/output/csv.rb +58 -0
  149. data/lib/threatinator/plugins/output/json/config.rb +14 -0
  150. data/lib/threatinator/plugins/output/json.rb +53 -0
  151. data/lib/threatinator/plugins/output/null.rb +17 -0
  152. data/lib/threatinator/plugins/output/rubydebug.rb +16 -0
  153. data/lib/threatinator/record.rb +22 -0
  154. data/lib/threatinator/registry.rb +53 -0
  155. data/lib/threatinator/util.rb +15 -0
  156. data/lib/threatinator.rb +3 -0
  157. data/spec/feeds/ET_block-ip_reputation_spec.rb +50 -0
  158. data/spec/feeds/ET_compromised-ip_reputation_spec.rb +47 -0
  159. data/spec/feeds/ET_openbadlist-ip_reputation_spec.rb +56 -0
  160. data/spec/feeds/alienvault-ip_reputation_spec.rb +46 -0
  161. data/spec/feeds/arbor_fastflux-domain_reputation_spec.rb +46 -0
  162. data/spec/feeds/arbor_ssh-ip_reputation_spec.rb +46 -0
  163. data/spec/feeds/autoshun_shunlist_spec.rb +38 -0
  164. data/spec/feeds/bambenek_c2_masterlist-domain_reputation_spec.rb +38 -0
  165. data/spec/feeds/bambenek_c2_masterlist-ip_reputation_spec.rb +39 -0
  166. data/spec/feeds/bambenek_dga_feed-domain_reputation_spec.rb +39 -0
  167. data/spec/feeds/berkeley-ip_reputation_spec.rb +47 -0
  168. data/spec/feeds/bitcash_cz_blacklist-ip_reputation_spec.rb +50 -0
  169. data/spec/feeds/blocklist_de_apache-ip_reputation_spec.rb +47 -0
  170. data/spec/feeds/blocklist_de_bots-ip_reputation_spec.rb +47 -0
  171. data/spec/feeds/blocklist_de_ftp-ip_reputation_spec.rb +47 -0
  172. data/spec/feeds/blocklist_de_imap-ip_reputation_spec.rb +47 -0
  173. data/spec/feeds/blocklist_de_pop3-ip_reputation_spec.rb +47 -0
  174. data/spec/feeds/blocklist_de_proftpd-ip_reputation_spec.rb +47 -0
  175. data/spec/feeds/blocklist_de_sip-ip_reputation_spec.rb +47 -0
  176. data/spec/feeds/blocklist_de_ssh-ip_reputation_spec.rb +47 -0
  177. data/spec/feeds/blocklist_de_strongips-ip_reputation_spec.rb +47 -0
  178. data/spec/feeds/botscout-ip_reputation_spec.rb +50 -0
  179. data/spec/feeds/cert_mxpoison-ip_reputation_spec.rb +47 -0
  180. data/spec/feeds/chaosreigns-ip_reputation_spec.rb +50 -0
  181. data/spec/feeds/ciarmy-ip_reputation_spec.rb +47 -0
  182. data/spec/feeds/cruzit-ip_reputation_spec.rb +47 -0
  183. data/spec/feeds/cydef_torexit-ip_reputation_spec.rb +47 -0
  184. data/spec/feeds/dan_me_uk_torlist-ip_reputation_spec.rb +47 -0
  185. data/spec/feeds/danger_bruteforce-ip_reputation_spec.rb +47 -0
  186. data/spec/feeds/data/ET_block-ip_reputation.txt +80 -0
  187. data/spec/feeds/data/ET_compromised-ip_reputation.txt +11 -0
  188. data/spec/feeds/data/ET_openbadlist-ip_reputation.txt +62 -0
  189. data/spec/feeds/data/alienvault-ip_reputation.txt +18 -0
  190. data/spec/feeds/data/arbor_domainlist.txt +11 -0
  191. data/spec/feeds/data/arbor_ssh.txt +16 -0
  192. data/spec/feeds/data/autoshun_shunlist.csv +20 -0
  193. data/spec/feeds/data/bambenek_c2-dommasterlist.csv +30 -0
  194. data/spec/feeds/data/bambenek_c2-ipmasterlist.csv +27 -0
  195. data/spec/feeds/data/bambenek_dga_feed.csv +42 -0
  196. data/spec/feeds/data/berkeley.txt +29 -0
  197. data/spec/feeds/data/bitcash_cz_blacklist.txt +7 -0
  198. data/spec/feeds/data/blocklist_de_apache-ip-reputation.txt +17 -0
  199. data/spec/feeds/data/blocklist_de_bots-ip-reputation.txt +15 -0
  200. data/spec/feeds/data/blocklist_de_ftp-ip-reputation.txt +7 -0
  201. data/spec/feeds/data/blocklist_de_imap-ip-reputation.txt +8 -0
  202. data/spec/feeds/data/blocklist_de_pop3-ip-reputation.txt +11 -0
  203. data/spec/feeds/data/blocklist_de_proftpd-ip-reputation.txt +12 -0
  204. data/spec/feeds/data/blocklist_de_sip-ip-reputation.txt +9 -0
  205. data/spec/feeds/data/blocklist_de_ssh-ip-reputation.txt +10 -0
  206. data/spec/feeds/data/blocklist_de_strongips-ip-reputation.txt +11 -0
  207. data/spec/feeds/data/botscout-ip-reputation.txt +713 -0
  208. data/spec/feeds/data/cert_mxpoison-ip_reputation.txt +17 -0
  209. data/spec/feeds/data/chaosreigns-ip-reputation.txt +26 -0
  210. data/spec/feeds/data/ciarmy-ip-reputation.txt +11 -0
  211. data/spec/feeds/data/cruzit-ip-reputation.txt +14 -0
  212. data/spec/feeds/data/cydef_torexit-ip_reputation.txt +27 -0
  213. data/spec/feeds/data/dan_me_uk_torlist-ip-reputation.txt +11 -0
  214. data/spec/feeds/data/danger_bruteforce-ip_reputation.txt +12 -0
  215. data/spec/feeds/data/dshield_topattackers.xml +4 -0
  216. data/spec/feeds/data/falconcrest_iplist.txt +345 -0
  217. data/spec/feeds/data/feodo_domainlist.txt +18 -0
  218. data/spec/feeds/data/feodo_iplist.txt +20 -0
  219. data/spec/feeds/data/h3x_asprox.txt +20 -0
  220. data/spec/feeds/data/hosts-file_hphostspartial_domainlist.txt +24 -0
  221. data/spec/feeds/data/infiltrated_iplist.txt +16 -0
  222. data/spec/feeds/data/infiltrated_vabl_iplist.txt +33 -0
  223. data/spec/feeds/data/isc_suspicious_high_domainlist.txt +26 -0
  224. data/spec/feeds/data/isc_suspicious_low_domainlist.txt +34 -0
  225. data/spec/feeds/data/isc_suspicious_medium_domainlist.txt +32 -0
  226. data/spec/feeds/data/malc0de_domainlist.txt +18 -0
  227. data/spec/feeds/data/malc0de_iplist.txt +14 -0
  228. data/spec/feeds/data/malwaredomainlist-url-reputation.txt +8 -0
  229. data/spec/feeds/data/malwaredomains_domainlist.txt +24 -0
  230. data/spec/feeds/data/malwaredomains_dyndns_domainlist.txt +34 -0
  231. data/spec/feeds/data/malwaredomains_justdomains_domainlist.txt +18 -0
  232. data/spec/feeds/data/mirc_domainlist.txt +31 -0
  233. data/spec/feeds/data/multiproxy_iplist.txt +15 -0
  234. data/spec/feeds/data/nothink_irc_iplist.txt +14 -0
  235. data/spec/feeds/data/nothink_ssh_iplist.txt +10 -0
  236. data/spec/feeds/data/openbl_iplist.txt +12 -0
  237. data/spec/feeds/data/openphish-url-reputation.txt +16 -0
  238. data/spec/feeds/data/packetmail_perimeterbad-ip_reputation.txt +44 -0
  239. data/spec/feeds/data/palevo_domainlist.txt +25 -0
  240. data/spec/feeds/data/palevo_iplist.txt +24 -0
  241. data/spec/feeds/data/phishtank-sample.json.gz +0 -0
  242. data/spec/feeds/data/sigmaproject_atma.return.gz +0 -0
  243. data/spec/feeds/data/sigmaproject_spyware.return.gz +0 -0
  244. data/spec/feeds/data/sigmaproject_webexploit.return.gz +0 -0
  245. data/spec/feeds/data/snort_bpf-ip_reputation.txt +16 -0
  246. data/spec/feeds/data/spyeye_domainlist.txt +16 -0
  247. data/spec/feeds/data/spyeye_iplist.txt +19 -0
  248. data/spec/feeds/data/steeman-ip-reputation.txt +13 -0
  249. data/spec/feeds/data/t-arend-de_ssh_iplist.txt +17 -0
  250. data/spec/feeds/data/the_haleys_ssh_iplist.txt +12 -0
  251. data/spec/feeds/data/trustedsec-ip-reputation.txt +12 -0
  252. data/spec/feeds/data/valid.json +2908 -0
  253. data/spec/feeds/data/virbl-ip_reputation.txt +14 -0
  254. data/spec/feeds/data/vxvault-url-reputation.txt +15 -0
  255. data/spec/feeds/data/yourcmc_ssh-ip_reputation.txt +27 -0
  256. data/spec/feeds/data/yoyo_adservers.txt +25 -0
  257. data/spec/feeds/data/zeus-ip_reputation.txt +285 -0
  258. data/spec/feeds/data/zeus_domainlist.txt +27 -0
  259. data/spec/feeds/dshield_attackers-top1000_spec.rb +39 -0
  260. data/spec/feeds/falconcrest-ip_reputation_spec.rb +39 -0
  261. data/spec/feeds/feodo-domain_reputation_spec.rb +47 -0
  262. data/spec/feeds/feodo-ip_reputation_spec.rb +47 -0
  263. data/spec/feeds/h3x_asprox-ip_reputation_spec.rb +50 -0
  264. data/spec/feeds/hosts-file_hphostspartial-domain_reputation_spec.rb +47 -0
  265. data/spec/feeds/infiltrated-ip_reputation_spec.rb +47 -0
  266. data/spec/feeds/infiltrated_vabl-ip_reputation_spec.rb +47 -0
  267. data/spec/feeds/isc_suspicious_high-domain_reputation_spec.rb +47 -0
  268. data/spec/feeds/isc_suspicious_low-domain_reputation_spec.rb +47 -0
  269. data/spec/feeds/isc_suspicious_medium-domain_reputation_spec.rb +47 -0
  270. data/spec/feeds/malc0de-domain_reputation_spec.rb +47 -0
  271. data/spec/feeds/malc0de-ip_reputation_spec.rb +47 -0
  272. data/spec/feeds/malwaredomainlist_url_reputation_spec.rb +50 -0
  273. data/spec/feeds/malwaredomains-domain_reputation_spec.rb +47 -0
  274. data/spec/feeds/malwaredomains_dyndns-domain_reputation_spec.rb +47 -0
  275. data/spec/feeds/malwaredomains_justdomains-domain_reputation_spec.rb +47 -0
  276. data/spec/feeds/mirc-domain_reputation_spec.rb +47 -0
  277. data/spec/feeds/multiproxy-ip_reputation_spec.rb +47 -0
  278. data/spec/feeds/nothink_irc-ip_reputation_spec.rb +47 -0
  279. data/spec/feeds/nothink_ssh-ip_reputation_spec.rb +47 -0
  280. data/spec/feeds/openbl-ip_reputation_spec.rb +47 -0
  281. data/spec/feeds/openphish_url_reputation_spec.rb +50 -0
  282. data/spec/feeds/packetmail_perimeterbad-ip_reputation_spec.rb +47 -0
  283. data/spec/feeds/palevo-domain_reputation_spec.rb +47 -0
  284. data/spec/feeds/palevo-ip_reputation_spec.rb +47 -0
  285. data/spec/feeds/phishtank_spec.rb +41 -0
  286. data/spec/feeds/sigmaproject_atma_spec.rb +62 -0
  287. data/spec/feeds/sigmaproject_spyware_spec.rb +63 -0
  288. data/spec/feeds/sigmaproject_webexploit_spec.rb +62 -0
  289. data/spec/feeds/snort_bpf-ip_reputation_spec.rb +47 -0
  290. data/spec/feeds/spyeye-domain_reputation_spec.rb +47 -0
  291. data/spec/feeds/spyeye-ip_reputation_spec.rb +47 -0
  292. data/spec/feeds/steeman-ip_reputation_spec.rb +50 -0
  293. data/spec/feeds/t-arend-de_ssh-ip_reputation_spec.rb +47 -0
  294. data/spec/feeds/the_haleys_ssh-ip_reputation_spec.rb +47 -0
  295. data/spec/feeds/trustedsec-ip_reputation_spec.rb +47 -0
  296. data/spec/feeds/virbl-ip_reputation_spec.rb +47 -0
  297. data/spec/feeds/vxvault_url_reputation_spec.rb +50 -0
  298. data/spec/feeds/yourcmc_ssh-ip_reputation_spec.rb +47 -0
  299. data/spec/feeds/yoyo_adservers_spec.rb +47 -0
  300. data/spec/feeds/zeus-domain_reputation_spec.rb +47 -0
  301. data/spec/feeds/zeus-ip_reputation_spec.rb +47 -0
  302. data/spec/fixtures/feed/provider1/feed1.feed +6 -0
  303. data/spec/fixtures/parsers/test.xml +13 -0
  304. data/spec/fixtures/parsers/test_self_closing.xml +20 -0
  305. data/spec/fixtures/plugins/bad/threatinator/plugins/test_error1/plugin.rb +1 -0
  306. data/spec/fixtures/plugins/bad/threatinator/plugins/test_missing1/plugin.rb +0 -0
  307. data/spec/fixtures/plugins/fake.rb +19 -0
  308. data/spec/fixtures/plugins/good/threatinator/plugins/test_type1/plugin_a.rb +8 -0
  309. data/spec/fixtures/plugins/good/threatinator/plugins/test_type1/plugin_b.rb +8 -0
  310. data/spec/fixtures/plugins/good/threatinator/plugins/test_type2/plugin_c.rb +8 -0
  311. data/spec/fixtures/plugins/good/threatinator/plugins/test_type2/plugin_d.rb +8 -0
  312. data/spec/fixtures/plugins/good/threatinator/plugins/test_type3/plugin_e.rb +8 -0
  313. data/spec/fixtures/plugins/good/threatinator/plugins/test_type3/plugin_f.rb +8 -0
  314. data/spec/spec_helper.rb +54 -0
  315. data/spec/support/bad_feeds/missing_fetcher.feed +7 -0
  316. data/spec/support/bad_feeds/missing_name.feed +6 -0
  317. data/spec/support/bad_feeds/missing_parser.feed +3 -0
  318. data/spec/support/bad_feeds/missing_provider.feed +5 -0
  319. data/spec/support/factories/event.rb +31 -0
  320. data/spec/support/factories/feed.rb +59 -0
  321. data/spec/support/factories/feed_builder.rb +65 -0
  322. data/spec/support/factories/feed_registry.rb +8 -0
  323. data/spec/support/factories/ipv4.rb +36 -0
  324. data/spec/support/factories/output.rb +11 -0
  325. data/spec/support/factories/record.rb +17 -0
  326. data/spec/support/factories/url.rb +34 -0
  327. data/spec/support/factories/xml_node.rb +33 -0
  328. data/spec/support/helpers/io.rb +11 -0
  329. data/spec/support/helpers/models.rb +13 -0
  330. data/spec/support/shared/action_builder.rb +47 -0
  331. data/spec/support/shared/decoder.rb +70 -0
  332. data/spec/support/shared/feed_runner_observer.rb +136 -0
  333. data/spec/support/shared/feeds.rb +233 -0
  334. data/spec/support/shared/fetcher.rb +48 -0
  335. data/spec/support/shared/filter.rb +14 -0
  336. data/spec/support/shared/io-like.rb +7 -0
  337. data/spec/support/shared/model/collection.rb +164 -0
  338. data/spec/support/shared/output.rb +120 -0
  339. data/spec/support/shared/parsers.rb +51 -0
  340. data/spec/support/shared/record.rb +111 -0
  341. data/spec/threatinator/actions/list/action_spec.rb +148 -0
  342. data/spec/threatinator/actions/run/action_spec.rb +106 -0
  343. data/spec/threatinator/actions/run/config_spec.rb +39 -0
  344. data/spec/threatinator/actions/run/coverage_observer_spec.rb +151 -0
  345. data/spec/threatinator/actions/run/output_config_spec.rb +89 -0
  346. data/spec/threatinator/actions/run/status_observer_spec.rb +86 -0
  347. data/spec/threatinator/cli/list_action_builder_spec.rb +57 -0
  348. data/spec/threatinator/cli/run_action_builder_spec.rb +133 -0
  349. data/spec/threatinator/cli_spec.rb +175 -0
  350. data/spec/threatinator/config/base_spec.rb +39 -0
  351. data/spec/threatinator/config/feed_search_spec.rb +76 -0
  352. data/spec/threatinator/decoders/gzip_spec.rb +75 -0
  353. data/spec/threatinator/event_builder_spec.rb +123 -0
  354. data/spec/threatinator/event_spec.rb +254 -0
  355. data/spec/threatinator/event_spec.rb.new +319 -0
  356. data/spec/threatinator/feed_builder_spec.rb +633 -0
  357. data/spec/threatinator/feed_registry_spec.rb +198 -0
  358. data/spec/threatinator/feed_runner_spec.rb +372 -0
  359. data/spec/threatinator/feed_spec.rb +169 -0
  360. data/spec/threatinator/fetcher_spec.rb +12 -0
  361. data/spec/threatinator/fetchers/http_spec.rb +32 -0
  362. data/spec/threatinator/filter_spec.rb +13 -0
  363. data/spec/threatinator/filters/block_spec.rb +16 -0
  364. data/spec/threatinator/filters/comments_spec.rb +13 -0
  365. data/spec/threatinator/filters/whitespace_spec.rb +12 -0
  366. data/spec/threatinator/logger_spec.rb +29 -0
  367. data/spec/threatinator/model/observables/fqdn_collection_spec.rb +41 -0
  368. data/spec/threatinator/model/observables/ipv4_collection_spec.rb +36 -0
  369. data/spec/threatinator/model/observables/ipv4_spec.rb +75 -0
  370. data/spec/threatinator/model/observables/url_collection_spec.rb +45 -0
  371. data/spec/threatinator/model/validations/type_spec.rb +37 -0
  372. data/spec/threatinator/parser_spec.rb +13 -0
  373. data/spec/threatinator/parsers/csv/parser_spec.rb +202 -0
  374. data/spec/threatinator/parsers/getline/parser_spec.rb +83 -0
  375. data/spec/threatinator/parsers/json/parser_spec.rb +106 -0
  376. data/spec/threatinator/parsers/json/record_spec.rb +30 -0
  377. data/spec/threatinator/parsers/xml/node_spec.rb +335 -0
  378. data/spec/threatinator/parsers/xml/parser_spec.rb +263 -0
  379. data/spec/threatinator/parsers/xml/path_spec.rb +209 -0
  380. data/spec/threatinator/parsers/xml/pattern_spec.rb +72 -0
  381. data/spec/threatinator/parsers/xml/record_spec.rb +27 -0
  382. data/spec/threatinator/plugin_loader_spec.rb +238 -0
  383. data/spec/threatinator/plugins/output/csv_spec.rb +47 -0
  384. data/spec/threatinator/plugins/output/null_spec.rb +17 -0
  385. data/spec/threatinator/plugins/output/rubydebug_spec.rb +37 -0
  386. data/spec/threatinator/record_spec.rb +19 -0
  387. data/spec/threatinator/registry_spec.rb +97 -0
  388. data/spec/threatinator/runner_spec.rb +273 -0
  389. metadata +674 -0
@@ -0,0 +1,17 @@
1
+ 74.117.117.116
2
+ 74.125.136.26
3
+ 74.125.137.26
4
+ 74.125.142.27
5
+ 74.125.157.27
6
+ 74.125.196.26
7
+ 74.125.196.27
8
+ 74.125.29.26
9
+ 74.125.29.27
10
+ 74.125.39.27
11
+ 74.125.43.27
12
+ 74.125.93.114
13
+ 74.208.5.21
14
+ 74.208.5.3
15
+ 74.53.119.26
16
+ 74.7.100.254
17
+ 75.101.134.11
@@ -0,0 +1,26 @@
1
+ 2a03:c300:0001/48 100 0
2
+ 2a01:04f8:0131/48 100 32
3
+ 2a00:1450:4008/48 100 31
4
+ 2a00:1450:4001/48 100 30
5
+ 2620:0000:0860/48 100 32
6
+ 2607:f8b0:400c/48 100 32
7
+ 2607:f0b0:000f/48 100 30
8
+ 2600:3c00:0000/48 100 28
9
+ 217.173.251.141 100 4
10
+ 217.151.195.199 100 7
11
+ 217.146.183.230 100 0
12
+ 217.146.183.226 100 1
13
+ 217.146.183.189 100 3
14
+ 217.146.183.188 100 2
15
+ 217.146.182.225 100 3
16
+ 217.146.182.224 100 0
17
+ 217.115.203.212 100 1
18
+ 217.115.132.164 100 2
19
+ 216.240.132.150 100 37
20
+ 216.219.253.195 100 0
21
+ 5.9.94.3 0 17
22
+ 2.60.6.1 0 0
23
+ 2.60.5.1 0 0
24
+ 1.55.8.3 0 0
25
+ 1.52.9.7 0 0
26
+ 0 0
@@ -0,0 +1,11 @@
1
+ 1.93.59.96
2
+ 2.22.230.65
3
+ 4.53.160.85
4
+ 5.79.68.161
5
+ 5.104.224.34
6
+ 5.199.130.188
7
+ 5.248.82.118
8
+ 5.254.116.17
9
+ 10.0.100.120
10
+ 10.0.100.121
11
+ 12.192.193.236
@@ -0,0 +1,14 @@
1
+ 80.67.22.13
2
+ 80.67.23.90
3
+ 80.67.26.40
4
+ 80.67.28.145
5
+ 80.67.28.6
6
+ 80.67.30.137
7
+ 80.76.55.26
8
+ 80.76.80.108
9
+ 80.77.155.83
10
+ 80.80.171.100
11
+ 80.82.208.58
12
+ 80.82.64.114
13
+ 80.82.64.127
14
+ 80.82.64.140
@@ -0,0 +1,27 @@
1
+ 2014:Sep:12:1440:UTC
2
+ 1.122.106.236
3
+ 1.230.159.91
4
+ 2.5.99.58
5
+ 2.34.48.132
6
+ 2.89.245.40
7
+ 2.96.155.114
8
+ 2.177.168.167
9
+ 2.238.215.14
10
+ 2.243.25.166
11
+ 2.244.9.222
12
+ 5.9.21.19
13
+ 5.9.23.181
14
+ 5.9.54.44
15
+ 5.9.67.124
16
+ 5.9.146.203
17
+ 5.9.195.140
18
+ 5.39.12.1
19
+ 5.39.86.149
20
+ 5.39.86.206
21
+ 5.39.91.20
22
+ 5.44.107.23
23
+ 5.45.99.75
24
+ 5.45.104.141
25
+ 5.79.68.161
26
+ 5.79.68.161
27
+ 5.79.78.97
@@ -0,0 +1,11 @@
1
+ 100.0.180.88
2
+ 100.0.67.218
3
+ 100.33.8.35
4
+ 100.34.32.230
5
+ 100.37.110.51
6
+ 100.37.192.253
7
+ 100.4.189.191
8
+ 101.142.87.4
9
+ 101.217.233.64
10
+ 101.55.12.75
11
+ 101.99.64.150
@@ -0,0 +1,12 @@
1
+ # IP # Last Reported Count ID
2
+ 192.168.0.66 # 2014-07-02 16:01:22 148 532953
3
+ 61.142.106.34 # 2014-06-10 15:20:44 147 536073
4
+ 60.10.203.18 # 2014-06-24 04:30:36 90 562399
5
+ 222.219.187.9 # 2014-07-07 09:52:58 87 614330
6
+ 203.248.143.169 # 2014-06-19 16:28:41 85 641531
7
+ 192.168.0.3 # 2014-06-07 19:01:51 85 515292
8
+ 59.53.94.9 # 2014-07-02 16:08:24 81 526720
9
+ 36.39.246.121 # 2014-07-01 10:38:22 70 620538
10
+ 61.144.43.235 # 2014-07-01 17:41:02 65 650844
11
+ 125.65.245.146 # 2014-07-06 16:04:46 64 359660
12
+ 118.102.181.4 # 2014-06-11 16:49:32 59 444923
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <sources>
3
+ <data><ip>150.164.082.010</ip><attacks>136726</attacks><count>137770</count><firstseen>2014-07-04</firstseen><lastseen>2014-07-23</lastseen></data><data><ip>184.105.139.067</ip><attacks>86532</attacks><count>2365149</count><firstseen>2014-02-23</firstseen><lastseen>2014-07-30</lastseen></data><data><ip>218.077.079.043</ip><attacks>80805</attacks><count>4227189</count><firstseen>2014-06-11</firstseen><lastseen>2014-07-30</lastseen></data><data><ip>173.255.218.186</ip><attacks>80393</attacks><count>314100</count><firstseen>2014-07-16</firstseen><lastseen>2014-07-25</lastseen></data><data><ip>096.126.102.057</ip><attacks>78996</attacks><count>290559</count><firstseen>2014-07-15</firstseen><lastseen>2014-07-25</lastseen></data><data><ip>050.116.010.162</ip><attacks>78916</attacks><count>272788</count><firstseen>2014-07-15</firstseen><lastseen>2014-07-25</lastseen></data><data><ip>050.116.003.246</ip><attacks>76859</attacks><count>239177</count><firstseen>2014-07-15</firstseen><lastseen>2014-07-25</lastseen></data><data><ip>114.112.090.054</ip><attacks>68334</attacks><count>68403</count><firstseen>2014-03-01</firstseen><lastseen>2014-07-10</lastseen></data><data><ip>116.010.191.236</ip><attacks>65450</attacks><count>209602</count><firstseen>2014-04-09</firstseen><lastseen>2014-07-30</lastseen></data><data><ip>116.010.191.228</ip><attacks>65424</attacks><count>209329</count><firstseen>2014-04-04</firstseen><lastseen>2014-07-30</lastseen></data>
4
+ </sources>
@@ -0,0 +1,345 @@
1
+
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml">
4
+ <head id="ctl00_Head1"><title>
5
+ IP Block list
6
+ </title><meta name="robots" content="index,follow,archive" /><meta name="distribution" content="Global" /><meta name="rating" content="General" /><meta name="copyright" content="Copyright (c) Falconcrest Falconry Centre. All rights reserved." /><meta name="author" content="Falconcrest Falconry Centre and Birds Of Prey Park" /><meta name="designer" content="Falconcrest Falconry Centre and Birds Of Prey Park" /><meta name="generator" content="Falconcrest Falconry Centre and Birds Of Prey Park" /><meta name="rating" content="General" /><meta name="publisher" content="Falconcrest Falconry Centre and Birds Of Prey Park" /><meta name="geography" content="Falconcrest, Eindhoven, Netherlands, Europe" /><meta name="geo.position" content="51.49058, 5.49658" /><meta name="geo.region" content="NL-NB" /><meta name="geo.placename" content="Eindhoven, Netherlands" /><meta name="abstract" content="fauna, accipit, doceo, flax, ravisher, preda, pennipotenti custos, Pares cvm paribvs, ornothology" /><meta name="revisit-after" content="7 days" /><meta name="verify-v1" content="cFcVLO0GuPSf9w+bfiViqU5vbWfMXt4glKKcOswDZXA=" /><meta name="dc.creator" content="Falconcrest Falconry Centre and Birds Of Prey Park" /><meta name="dc.publisher" content="Falconcrest Falconry Centre and Birds Of Prey Park" /><meta name="dc.format" content="text/html" /><meta name="dc.identifier" content="http://www.falconcrest.eu/" /><meta name="dc.language" content="en" /><meta name="dc.rights" content="Copyright (c) Falconcrest Falconry Centre. All rights reserved." /><meta http-equiv="pics-Label" content="(pics-1.1 &quot;http://www.icra.org/pics/vocabularyv03/&quot; l gen true for &quot;http://falconcrest.eu&quot; r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0) gen true for &quot;http://www.falconcrest.eu&quot; r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0))" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta http-equiv="Content-Language" content="en" /><meta http-equiv="imagetoolbar" content="no" /><meta http-equiv="Content-Style-Type" content="text/css" /><meta http-equiv="Content-Script-Type" content="text/javascript" /><meta http-equiv="Page-Enter" content="blendTrans(Duration=0.8)" /><meta http-equiv="Site-Enter" content="blendTrans(Duration=0.8)" /><meta http-equiv="Page-Exit" content="blendTrans(Duration=0.5)" /><meta http-equiv="Site-Exit" content="blendTrans(Duration=0.5)" /><link rel="meta" href="http://www.falconcrest.eu/labels.xml" type="application/rdf+xml" title="ICRA labels" /><link rel="Alternate" type="application/rss+xml" title="Falconcrest falconry center and raptor park RSS Feed" href="http://www.falconcrest.eu/RSSFeedEN.aspx" /><link href="App_Themes/Standard/css-content.css" rel="stylesheet" type="text/css" media="interactive, braille, emboss, handheld, projection, screen, tty, tv" /><link href="App_Themes/css-print.css" rel="stylesheet" type="text/css" media="print" /><link rel="shortcut icon" href="/favicon.ico" /><link href="App_Themes/Standard/css-content.css" type="text/css" rel="stylesheet" /><meta id="ctl00_keywords" name="keywords" content="IPBL, FORM SPAM, FORM-FILLING SPAM, SPAM BOTS, FORM ABUSE" /><meta id="ctl00_description" name="description" content="Realtime IP Block List of detected form abuse and form spam bots." /><meta id="ctl00_dc:description" name="dc:description" content="Realtime IP Block List of detected form abuse and form spam bots." /><meta id="ctl00_dc:Language" name="dc:Language" content="en" /><meta id="ctl00_dc:Date" name="dc:Date" content="2014-9-31" /><style type="text/css">
7
+ .ctl00_Menu1_0 { background-color:white;visibility:hidden;display:none;position:absolute;left:0px;top:0px; }
8
+ .ctl00_Menu1_1 { text-decoration:none; }
9
+ .ctl00_Menu1_2 { height:16px;width:537px; }
10
+ .ctl00_Menu1_3 { border-style:none; }
11
+ .ctl00_Menu1_4 { }
12
+ .ctl00_Menu2_0 { background-color:white;visibility:hidden;display:none;position:absolute;left:0px;top:0px; }
13
+ .ctl00_Menu2_1 { text-decoration:none; }
14
+ .ctl00_Menu2_2 { width:350px; }
15
+ </style></head>
16
+ <body id="ctl00_MainBody">
17
+ <form name="aspnetForm" method="post" action="/IPBL.aspx" id="aspnetForm">
18
+ <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTIwOTkyNDMwOGRk" />
19
+ <script src="/WebResource.axd?d=szaYQ2AdiFhKNIphoSEMoA2&amp;t=632990204761246483" type="text/javascript"></script>
20
+
21
+ <!--
22
+ TOP INFORMTION
23
+ -->
24
+ <div id="top-information">
25
+ <div id="logo">
26
+ <a href="/Falconcrest-Falconry-and-Raptor-Park.aspx"><img src="/images/Falconcrest_Logo.jpg" alt="Falconcrest Roofvoglepark Logo" height="20" width="21" longdesc="/Falconcrest_Logo_EN.htm" />&nbsp;Falconcrest Falconry Centre and Birds Of Prey Park</a></div>
27
+ <div id="top-information-home">
28
+ <a href="/Falconcrest-Falconry-and-Raptor-Park.aspx">Falconry and Birds Of Prey Park Home</a></div>
29
+ <div id="top-information-phone">
30
+ +31 (0)40 212 0 111</div>
31
+ </div>
32
+ <!--
33
+ TOP NAV
34
+ -->
35
+ <div class="none"><a href="#maincontent">To main falconry content</a></div>
36
+ <div id="nav-main">
37
+ <a href="#ctl00_Menu1_SkipLink"><img alt="Skip Navigation Links" src="/WebResource.axd?d=4FWwFzWQYcRdS_TEUHEdIg2&amp;t=632990204761246483" width="0" height="0" border="0" /></a><table id="ctl00_Menu1" class="ctl00_Menu1_2" cellpadding="0" cellspacing="0" border="0">
38
+ <tr>
39
+ <td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="Falconcrest Falconry Centre and Birds Of Prey Park Home Page" id="ctl00_Menu1n0"><table cellpadding="0" cellspacing="0" border="0" width="100%">
40
+ <tr>
41
+ <td nowrap="nowrap"><a class="ctl00_Menu1_1" href="/Falconcrest-Falconry-and-Raptor-Park.aspx">Home</a></td>
42
+ </tr>
43
+ </table></td><td width="3"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="Falconry and Birds Of Prey Offer" id="ctl00_Menu1n1"><table cellpadding="0" cellspacing="0" border="0" width="100%">
44
+ <tr>
45
+ <td nowrap="nowrap"><a class="ctl00_Menu1_1" href="/Items.aspx">Offer</a></td>
46
+ </tr>
47
+ </table></td><td width="3"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="The Falconers of Falconcrest" id="ctl00_Menu1n2"><table cellpadding="0" cellspacing="0" border="0" width="100%">
48
+ <tr>
49
+ <td nowrap="nowrap"><a class="ctl00_Menu1_1" href="/Falconers.aspx">Falconers</a></td>
50
+ </tr>
51
+ </table></td><td width="3"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="Falconry and Birds of Prey News from and about Falconcrest" id="ctl00_Menu1n3"><table cellpadding="0" cellspacing="0" border="0" width="100%">
52
+ <tr>
53
+ <td nowrap="nowrap"><a class="ctl00_Menu1_1" href="/Falconry-News-and-Events.aspx">News</a></td>
54
+ </tr>
55
+ </table></td><td width="3"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="Falconcrest Falconry Centre and Birds of Prey Parl Overview" id="ctl00_Menu1n4"><table cellpadding="0" cellspacing="0" border="0" width="100%">
56
+ <tr>
57
+ <td nowrap="nowrap"><a class="ctl00_Menu1_1" href="/About-Falconcrest.aspx">About</a></td>
58
+ </tr>
59
+ </table></td><td width="3"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="Falconcrest Falconry Centre and Birds Of Prey Park Information" id="ctl00_Menu1n5"><table cellpadding="0" cellspacing="0" border="0" width="100%">
60
+ <tr>
61
+ <td nowrap="nowrap"><a class="ctl00_Menu1_1" href="/Contact.aspx">Contact</a></td>
62
+ </tr>
63
+ </table></td><td width="3"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="Falconcrest Falconry and Birds Of Prey Image Galleries" id="ctl00_Menu1n6"><table cellpadding="0" cellspacing="0" border="0" width="100%">
64
+ <tr>
65
+ <td nowrap="nowrap"><a class="ctl00_Menu1_1" href="/Galleries.aspx">Galleries</a></td>
66
+ </tr>
67
+ </table></td>
68
+ </tr>
69
+ </table><a id="ctl00_Menu1_SkipLink"></a>
70
+ <div>
71
+ &nbsp;&nbsp;&nbsp;
72
+ <div><a href="javascript:favorieten()"><img src="/Images/favorieten.gif" border="0" width="15" height="15" alt="add to your falconry favourites" /></a></div>
73
+ </div>
74
+ </div>
75
+ <a id="maincontent"></a>
76
+
77
+ <div id="content-container-single-column">
78
+ <h1>SPAM IP Block List</h1>
79
+ <p>Below is the list of detected form spam agents.
80
+ This list is a combination of automated spam bot and human abuse activities.
81
+ Abuse of the 'contact' or 'guestbook' forms is automatically detected, registered, added to the IP block list and exposed on this page.
82
+ Webmasters are welcome to check and use this list as they please.</p>
83
+ <p>If you find an IP number and believe it should not be in this list, please contact us directly.</p>
84
+ <h2>IP Block List</h2>
85
+ <p>
86
+ <span id="ctl00_ContentPlaceHolder1_LabelIPBL"></span></p>
87
+ <table id="ctl00_ContentPlaceHolder1_DataListBlockIP" cellspacing="0" rules="all" border="1">
88
+ <tr>
89
+ <td>
90
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl00_LabelBlockeIP">(175.44.5.227</span>
91
+ </td><td>
92
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl2012_LabelBlockeIP">144.76.236.137</span>
93
+ </td><td>
94
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl4023_LabelBlockeIP">187.206.115.242</span>
95
+ </td><td>
96
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl6034_LabelBlockeIP">202.64.102.80</span>
97
+ </td><td>
98
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl8045_LabelBlockeIP">37.112.133.186</span>
99
+ </td><td>
100
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl10056_LabelBlockeIP">65.254.56.226</span>
101
+ </td><td>
102
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl12067_LabelBlockeIP">86.121.57.160</span>
103
+ </td>
104
+ </tr><tr>
105
+ <td>
106
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl01_LabelBlockeIP">1.1.145.175</span>
107
+ </td><td>
108
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl2013_LabelBlockeIP">144.76.247.203</span>
109
+ </td><td>
110
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl4024_LabelBlockeIP">187.21.214.216</span>
111
+ </td><td>
112
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl6035_LabelBlockeIP">202.65.154.66</span>
113
+ </td><td>
114
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl8046_LabelBlockeIP">37.112.135.165</span>
115
+ </td><td>
116
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl10057_LabelBlockeIP">65.254.60.11</span>
117
+ </td><td>
118
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl12068_LabelBlockeIP">86.123.131.173</span>
119
+ </td>
120
+ </tr><tr>
121
+ <td>
122
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl02_LabelBlockeIP">1.1.245.141</span>
123
+ </td><td>
124
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl2014_LabelBlockeIP">144.76.42.76</span>
125
+ </td><td>
126
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl4025_LabelBlockeIP">187.214.7.251</span>
127
+ </td><td>
128
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl6036_LabelBlockeIP">202.66.133.137</span>
129
+ </td><td>
130
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl8047_LabelBlockeIP">37.112.136.151</span>
131
+ </td><td>
132
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl10058_LabelBlockeIP">65.36.241.235</span>
133
+ </td><td>
134
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl12069_LabelBlockeIP">86.124.8.195</span>
135
+ </td>
136
+ </tr><tr>
137
+ <td>
138
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl2010_LabelBlockeIP">144.76.194.187</span>
139
+ </td><td>
140
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl4022_LabelBlockeIP">187.205.252.169</span>
141
+ </td><td>
142
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl6033_LabelBlockeIP">202.63.117.80</span>
143
+ </td><td>
144
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl8044_LabelBlockeIP">37.112.133.151</span>
145
+ </td><td>
146
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl10055_LabelBlockeIP">65.254.225.177</span>
147
+ </td><td>
148
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl12066_LabelBlockeIP">86.120.44.212</span>
149
+ </td><td>
150
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl14077_LabelBlockeIP">99.71.246.38</span>
151
+ </td>
152
+ </tr><tr>
153
+ <td>
154
+ <span id="ctl00_ContentPlaceHolder1_DataListBlockIP_ctl2011_LabelBlockeIP">144.76.200.177</span>
155
+ </td><td></td><td></td><td></td><td></td><td></td><td></td>
156
+ </tr>
157
+ </table>
158
+ </div>
159
+ <!--
160
+ FOOTER
161
+ -->
162
+ <div id="footer">
163
+ Copyright &copy; 2002-<span id="ctl00_LabelYear">2014</span> Falconcrest Falconry Centre And Birds Of Prey Park <a href="/Legal-Notice.aspx" title="Falconcrest Birds Of Prey Park Terms and Conditions">terms and conditions</a>
164
+ <div>
165
+ <table style="margin:0 0 0 0; border-collapse:collapse;">
166
+ <tr>
167
+ <td style="width:5px;"></td>
168
+ <td>
169
+ <a id="ctl00_HL_RSS" title="RSS newsfeed" href="/RSSFeedEN.aspx"><img id="ctl00_I_RSS" src="Images/icon-rss.png" alt="RSS newsfeed" height="14" width="14" border="0" /></a>
170
+ </td>
171
+ <td style="width:5px;"></td>
172
+ <td>
173
+ <a id="ctl00_HL_Stumbleupon" title="Thumb this on Stumbleupon" rel="external nofollow" href="http://www.stumbleupon.com/submit?url=http%3a%2f%2fwww.falconcrest.eu%2fIPBL.aspx&amp;title=" target="_Blank"><img id="ctl00_I_Stumbleupon" src="Images/icon-stumbleupon.gif" alt="Thumb this on Stumbleupon" height="14" width="14" border="0" /></a>
174
+ </td>
175
+ <td style="width:5px;"></td>
176
+ <td>
177
+ <a id="ctl00_HL_Facebook" title="Share on Facebook" rel="external nofollow" href="http://www.facebook.com/sharer.php?u=http%3a%2f%2fwww.falconcrest.eu%2fIPBL.aspx&amp;t=" target="_Blank"><img id="ctl00_I_Facebook" src="Images/icon-facebook.gif" alt="Share on Facebook" height="14" width="14" border="0" /></a>
178
+ </td>
179
+ <td style="width:5px;"></td>
180
+ <td>
181
+ <a id="ctl00_HL_Twitter" title="Twitter : Tweet This" rel="external nofollow" href="http://twitter.com/home/?status=RT++http%3a%2f%2fwww.falconcrest.eu%2fIPBL.aspx" target="_Blank"><img id="ctl00_I_Twitter" src="Images/icon-twitter.jpg" alt="Twitter : Tweet This" height="14" width="14" border="0" /></a>
182
+ </td>
183
+ <td style="width:5px;"></td>
184
+ <td>
185
+ <a id="ctl00_HL_Digg"><img id="ctl00_I_Digg" src="Images/icon-digg.jpg" alt="Digg This" height="14" width="14" border="0" /></a>
186
+ </td>
187
+ <td style="width:5px;"></td>
188
+ <td>
189
+ <a id="ctl00_HL_Delicious" title="Bookmark this on del.ico.us" rel="external nofollow" href="http://del.icio.us/post?url=http%3a%2f%2fwww.falconcrest.eu%2fIPBL.aspx&amp;title=" target="_Blank"><img id="ctl00_I_Delicious" src="Images/icon-delicious.jpg" alt="Bookmark this on del.ico.us" height="14" width="14" border="0" /></a>
190
+ </td>
191
+ <td style="width:5px;"></td>
192
+ <td>
193
+ <a id="ctl00_HL_Yahoo" title="Bookmark this on Yahoo" rel="external nofollow" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3a%2f%2fwww.falconcrest.eu%2fIPBL.aspx&amp;t=" target="_Blank"><img id="ctl00_I_Yahoo" src="Images/icon-yahoo.jpg" alt="Bookmark this on Yahoo" height="14" width="14" border="0" /></a>
194
+ </td>
195
+ <td style="width:5px;"></td>
196
+ <td>
197
+ <a id="ctl00_HL_Google" title="Bookmark this on Google" rel="external nofollow" href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http%3a%2f%2fwww.falconcrest.eu%2fIPBL.aspx&amp;title=" target="_Blank"><img id="ctl00_I_Google" src="Images/icon-google.gif" alt="Bookmark this on Google" height="14" width="14" border="0" /></a>
198
+ </td>
199
+ </tr>
200
+ </table>
201
+ </div>
202
+ </div>
203
+ <div id="footer-sub" align="center" style="text-align:center;">
204
+ <table border="0">
205
+ <tr>
206
+ <td width="20%"></td>
207
+ <td>
208
+ <a href="#ctl00_Menu2_SkipLink"><img alt="Skip Navigation Links" src="/WebResource.axd?d=4FWwFzWQYcRdS_TEUHEdIg2&amp;t=632990204761246483" width="0" height="0" border="0" /></a><table id="ctl00_Menu2" class="ctl00_Menu2_2" cellpadding="0" cellspacing="0" border="0">
209
+ <tr>
210
+ <td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="Falconcrest Falconry Centre and Birds Of Prey Park Home Page" id="ctl00_Menu2n0"><table cellpadding="0" cellspacing="0" border="0" width="100%">
211
+ <tr>
212
+ <td nowrap="nowrap"><a class="ctl00_Menu2_1" href="/Falconcrest-Falconry-and-Raptor-Park.aspx">Home</a></td>
213
+ </tr>
214
+ </table></td><td width="3"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="Falconry and Birds Of Prey Offer" id="ctl00_Menu2n1"><table cellpadding="0" cellspacing="0" border="0" width="100%">
215
+ <tr>
216
+ <td nowrap="nowrap"><a class="ctl00_Menu2_1" href="/Items.aspx">Offer</a></td>
217
+ </tr>
218
+ </table></td><td width="3"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="The Falconers of Falconcrest" id="ctl00_Menu2n2"><table cellpadding="0" cellspacing="0" border="0" width="100%">
219
+ <tr>
220
+ <td nowrap="nowrap"><a class="ctl00_Menu2_1" href="/Falconers.aspx">Falconers</a></td>
221
+ </tr>
222
+ </table></td><td width="3"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="Falconry and Birds of Prey News from and about Falconcrest" id="ctl00_Menu2n3"><table cellpadding="0" cellspacing="0" border="0" width="100%">
223
+ <tr>
224
+ <td nowrap="nowrap"><a class="ctl00_Menu2_1" href="/Falconry-News-and-Events.aspx">News</a></td>
225
+ </tr>
226
+ </table></td><td width="3"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="Falconcrest Falconry Centre and Birds of Prey Parl Overview" id="ctl00_Menu2n4"><table cellpadding="0" cellspacing="0" border="0" width="100%">
227
+ <tr>
228
+ <td nowrap="nowrap"><a class="ctl00_Menu2_1" href="/About-Falconcrest.aspx">About</a></td>
229
+ </tr>
230
+ </table></td><td width="3"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="Falconcrest Falconry Centre and Birds Of Prey Park Information" id="ctl00_Menu2n5"><table cellpadding="0" cellspacing="0" border="0" width="100%">
231
+ <tr>
232
+ <td nowrap="nowrap"><a class="ctl00_Menu2_1" href="/Contact.aspx">Contact</a></td>
233
+ </tr>
234
+ </table></td><td width="3"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" title="Falconcrest Falconry and Birds Of Prey Image Galleries" id="ctl00_Menu2n6"><table cellpadding="0" cellspacing="0" border="0" width="100%">
235
+ <tr>
236
+ <td nowrap="nowrap"><a class="ctl00_Menu2_1" href="/Galleries.aspx">Galleries</a></td>
237
+ </tr>
238
+ </table></td>
239
+ </tr>
240
+ </table><a id="ctl00_Menu2_SkipLink"></a>
241
+ </td>
242
+ <td>
243
+ &nbsp;<a id="ctl00_HyperlinkEmplyment" href="Employment.aspx" target="_self">Employment</a>
244
+ </td>
245
+ <td>
246
+ &nbsp;<a id="ctl00_HyperlinkFAQ" href="FAQ.aspx" target="_sef">FAQ</a>
247
+ </td>
248
+ <td>
249
+ &nbsp;<a id="ctl00_links" href="Links.htm" target="_self">Links</a>
250
+ </td>
251
+ <td>&nbsp;<a id="ctl00_Publications" href="Falconcrest-Publications.aspx" target="_self">Publications</a></td>
252
+ <td style="white-space:nowrap;">&nbsp;<a id="ctl00_FalconryServices" href="Items/CatID/Falconry-Public-Services.aspx" target="_self">Falconry Services</a></td>
253
+ <td width="20%"></td>
254
+ </tr>
255
+ </table>
256
+ </div>
257
+
258
+ <script type="text/javascript">
259
+ <!--
260
+ var ctl00_Menu1_Data = new Object();
261
+ ctl00_Menu1_Data.disappearAfter = 500;
262
+ ctl00_Menu1_Data.horizontalOffset = 0;
263
+ ctl00_Menu1_Data.verticalOffset = 0;
264
+ var ctl00_Menu2_Data = new Object();
265
+ ctl00_Menu2_Data.disappearAfter = 500;
266
+ ctl00_Menu2_Data.horizontalOffset = 0;
267
+ ctl00_Menu2_Data.verticalOffset = 0;
268
+ // -->
269
+ </script>
270
+ </form>
271
+ <script type="text/javascript" src="/google.js"></script>
272
+ <script type="text/javascript">
273
+ <!--
274
+ var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
275
+ document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
276
+ -->
277
+ </script>
278
+ <script type="text/javascript">
279
+ <!--
280
+ var pageTracker = _gat._getTracker("UA-4150085-3");
281
+ pageTracker._trackPageview();
282
+ -->
283
+ </script>
284
+ <script type="text/javascript">
285
+ <!--
286
+ var aySound = new Array();
287
+ aySound[0] = "/sounds/little_owl.wav";
288
+ aySound[1] = "/sounds/falcon.mp3";
289
+ aySound[2] = "/sounds/buzzard.wav";
290
+ document.write('<BGSOUND ID="auIEContainer">')
291
+ IE = (navigator.appVersion.indexOf("MSIE") != -1 && document.all) ? 1 : 0;
292
+ NS = (navigator.appName == "Netscape" && navigator.plugins["LiveAudio"]) ? 1 : 0;
293
+ ver4 = IE || NS ? 1 : 0;
294
+ onload = auPreload;
295
+ function auPreload() {
296
+ if (!ver4) return;
297
+ if (NS) auEmb = new Layer(0, window);
298
+ else {
299
+ Str = "<DIV ID='auEmb' STYLE='position:absolute;'></DIV>";
300
+ document.body.insertAdjacentHTML("BeforeEnd", Str);
301
+ }
302
+ var Str = '';
303
+ for (i = 0; i < aySound.length; i++)
304
+ Str += "<EMBED SRC='" + aySound[i] + "' AUTOSTART='FALSE' HIDDEN='TRUE'>"
305
+ if (IE) auEmb.innerHTML = Str;
306
+ else {
307
+ auEmb.document.open();
308
+ auEmb.document.write(Str);
309
+ auEmb.document.close();
310
+ }
311
+ auCon = IE ? document.all.auIEContainer : auEmb;
312
+ auCon.control = auCtrl;
313
+ }
314
+ function auCtrl(whSound, play) {
315
+ if (IE) this.src = play ? aySound[whSound] : '';
316
+ else eval("this.document.embeds[whSound]." + (play ? "play()" : "stop()"))
317
+ }
318
+ function playSound(whSound) { if (window.auCon) auCon.control(whSound, true); }
319
+ function stopSound(whSound) { if (window.auCon) auCon.control(whSound, false); }
320
+ -->
321
+ </script>
322
+ <script type="text/javascript">
323
+ <!--
324
+ var bookmarkurl = "http://www.falconcrest.eu/";
325
+ var bookmarktitel = "Falconcrest Falconry Centre and Birds Of Prey Park";
326
+ function favorieten() {
327
+ if (document.all)
328
+ window.external.AddFavorite(bookmarkurl, bookmarktitel);
329
+ }
330
+ -->
331
+ </script>
332
+ <script type="text/javascript">
333
+ <!--
334
+ _qoptions = {
335
+ qacct: "p-66HCdZKpvAs3E"
336
+ };
337
+ -->
338
+ </script>
339
+ <script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
340
+ <noscript>
341
+ <img src="http://pixel.quantserve.com/pixel/p-66HCdZKpvAs3E.gif" style="display: none;" border="0" height="1" width="1" alt=""/>
342
+ </noscript>
343
+ </body>
344
+ </html>
345
+
@@ -0,0 +1,18 @@
1
+ ##########################################################################
2
+ # Feodo Domain Blocklist #
3
+ # #
4
+ # For questions please refer to https://feodotracker.abuse.ch/blocklist/ #
5
+ ##########################################################################
6
+ # START
7
+ avcctrnrxx.com
8
+ belijvetercat.ru
9
+ beliyvolkalak.ru
10
+ bestofthewest.ru
11
+ buriymishka.ru
12
+ deepandtouch.ru
13
+ djubkafriend.ru
14
+ europastewmk.ru
15
+ giaddkbzcyaoim.com
16
+ godaddy-up.ru
17
+ hawozkino.com
18
+ jvrdwnload.ru
@@ -0,0 +1,20 @@
1
+ ##########################################################################
2
+ # Feodo IP Blocklist #
3
+ # #
4
+ # For questions please refer to https://feodotracker.abuse.ch/blocklist/ #
5
+ ##########################################################################
6
+ # START
7
+ 103.25.59.120
8
+ 103.28.148.51
9
+ 109.235.76.136
10
+ 114.32.54.164
11
+ 119.81.5.242
12
+ 122.155.3.6
13
+ 149.171.156.234
14
+ 173.203.112.215
15
+ 173.236.153.210
16
+ 173.236.185.238
17
+ 173.236.86.214
18
+ 176.28.31.137
19
+ 182.160.162.65
20
+ 182.253.237.6
@@ -0,0 +1,20 @@
1
+ 192.210.195.14:80
2
+ 82.165.152.226:8080
3
+ 74.221.221.58:8080
4
+ 93.189.95.148:8080
5
+ 178.79.161.146:443
6
+ 141.105.121.139:8080
7
+ 217.160.92.114:443
8
+ 101.255.36.171:443
9
+ 5.79.6.6:8080
10
+ 162.144.84.238:8080
11
+ 94.199.242.85:8080
12
+ 91.109.2.132:8080
13
+ 162.218.236.73:8080
14
+ 37.59.212.214:8080
15
+ 198.74.56.121:443
16
+ 195.154.225.137:443
17
+ 187.95.34.3:80
18
+ 95.110.166.71:8080
19
+ 91.121.13.78:8080
20
+ 83.192.168.26:8080
@@ -0,0 +1,24 @@
1
+ # hosts-Partial.txt
2
+ #
3
+ # The following hosts were added to hpHosts AFTER the last full release.
4
+ #
5
+ #Last partial update: 9/5/2014 9:32:27 AM
6
+ #Last FULL hpHosts update: 201481651036
7
+ #DEBUG INFO:
8
+ # DB: 2014050993227
9
+ # File: 201416851036
10
+ # First: 1599283 (8/30/2014 5:52:43 PM)
11
+ # Last: 1546551
12
+ 127.0.0.1 0.cordelia8.waslittrefxwpc.eu
13
+ 127.0.0.1 0002.tonsciryqbty.eu
14
+ 127.0.0.1 0025.gaa08056.waslittrefxwpc.eu
15
+ 127.0.0.1 003a32c.rithertningiuao.eu
16
+ 127.0.0.1 004.bloglnewarciniabe.ru
17
+ 127.0.0.1 006e0ed5.bloglnewarcinialy.ru
18
+ 127.0.0.1 0071525d.bevedidnzbep.eu
19
+ 127.0.0.1 007c746.suburonounx.eu
20
+ 127.0.0.1 008845.bevedidnzbep.eu
21
+ 127.0.0.1 008845.tonsciryqbty.eu
22
+ 127.0.0.1 008f9e2.tonsciryqbty.eu
23
+ 127.0.0.1 009.blogfoxnewsators.ru
24
+ 127.0.0.1 009.bloglfoxnewsareb.ru
@@ -0,0 +1,16 @@
1
+ # Tue Jul 8 07:10:01 CDT 2014
2
+
3
+ 99.69.103.21
4
+ 99.188.58.18
5
+ 95.79.148.122
6
+ 95.65.31.161
7
+ 95.221.86.160
8
+ 95.221.71.219
9
+ 95.178.180.145
10
+ 95.153.177.1
11
+ 95.153.170.102
12
+ 94.77.239.126
13
+ 94.41.71.52
14
+ 94.41.244.143
15
+ 94.231.70.53
16
+ 94.23.19.116
@@ -0,0 +1,33 @@
1
+
2
+ #
3
+ # Prior VABL list can be viewed at www.infiltrated.net/vabl-q1-2011.txt
4
+ # Prior VABL list can be viewed at www.infiltrated.net/vabl-q2-2011.txt
5
+
6
+ # WARNING: The new addition to this list is "APT" which is short for the
7
+ # listed here, it is listed for a reason. Use/block those IP addresses
8
+ # obvious "Advanced Persistent Threat" buzzword. The hosts listed with
9
+ # this flag are either C&C sources, pivots, and so forth. If it is
10
+ # with caution
11
+
12
+
13
+ 108.59.1.205 | BRU | VABL | 20110609 | e22b6e201b3533a0dd1ac8bb47426169 | 30633 | 108.59.0.0/20 | LEASEWEB-US | US | - | LEASEWEB USA INC
14
+ 108.59.1.205 | BRU | VABL | 20110708 | 8850509672ee7d983d9a511e31b13a9a | 30633 | 108.59.0.0/20 | LEASEWEB-US | US | - | LEASEWEB USA INC
15
+ 108.59.1.5 | BRU | VABL | 20110726 | 4fd0c880f8cbe31e4efc18890b4ac51a | 30633 | 108.59.0.0/20 | LEASEWEB-US | US | - | LEASEWEB USA INC
16
+ 108.59.1.5 | BRU | VABL | 20110726 | fb17621acd4b0626c80ba8e66e963518 | 30633 | 108.59.0.0/20 | LEASEWEB-US | US | - | LEASEWEB USA INC
17
+ 108.59.1.5 | BRU | VABL | 20110727 | 8850509672ee7d983d9a511e31b13a9a | 30633 | 108.59.0.0/20 | LEASEWEB-US | US | - | LEASEWEB USA INC
18
+ 108.59.1.5 | BRU | VABL | 20110729 | 8850509672ee7d983d9a511e31b13a9a | 30633 | 108.59.0.0/20 | LEASEWEB-US | US | - | LEASEWEB USA INC
19
+ 108.59.1.5 | BRU | VABL | 20110730 | 8850509672ee7d983d9a511e31b13a9a | 30633 | 108.59.0.0/20 | LEASEWEB-US | US | - | LEASEWEB USA INC
20
+ 108.59.5.139 | BRU | VABL | 20110720 | 4fd0c880f8cbe31e4efc18890b4ac51a | 30633 | 108.59.0.0/20 | LEASEWEB-US | US | - | LEASEWEB USA INC
21
+ 108.59.5.139 | BRU | VABL | 20110720 | fb17621acd4b0626c80ba8e66e963518 | 30633 | 108.59.0.0/20 | LEASEWEB-US | US | - | LEASEWEB USA INC
22
+ 108.59.5.139 | BRU | VABL | 20110725 | 8850509672ee7d983d9a511e31b13a9a | 30633 | 108.59.0.0/20 | LEASEWEB-US | US | - | LEASEWEB USA INC
23
+ 108.85.139.165 | BRU | VABL | 20110611 | fb17621acd4b0626c80ba8e66e963518 | 7132 | 108.64.0.0/11 | SBIS-AS | US | ATT.COM | AT&T INTERNET SERVICES
24
+ 109.123.83.130 | BRU | VABL | 20110606 | 8850509672ee7d983d9a511e31b13a9a | 13213 | 109.123.64.0/18 | UK2NET | UK | THECOUNTRYKITTEN.COM | UK2 - LTD
25
+ 109.168.200.104 | ATK | HPOT | 20110818 | fb17621acd4b0626c80ba8e66e963518 | 34060 | 94.176.216.0/22 | TCCFR | RO | ELECTROSIM.RO | JUMP INTERNET SERVICES SRL
26
+ 109.168.200.104 | ATK | HPOT | 20110818 | fb17621acd4b0626c80ba8e66e963518 | 34104 | 91.93.32.0/21 | GLOBAL | TR | TELETEKTELEKOM.COM | GLOBAL ILETISIM HIZMETLERI A.S
27
+ 109.168.200.104 | ATK | HPOT | 20110819 | fb17621acd4b0626c80ba8e66e963518 | 34060 | 94.176.216.0/22 | TCCFR | RO | ELECTROSIM.RO | JUMP INTERNET SERVICES SRL
28
+ 109.168.200.104 | ATK | HPOT | 20110819 | fb17621acd4b0626c80ba8e66e963518 | 34104 | 91.93.32.0/21 | GLOBAL | TR | TELETEKTELEKOM.COM | GLOBAL ILETISIM HIZMETLERI A.S
29
+ 109.169.60.121 | BRU | VABL | 20110618 | bf85b024eec53c533630a4551d9f63a7 | 29761 | 109.169.60.0/23 | OC3-NETWORKS-AS-NUMB | US | BMTRADAGROUP.COM | RAPIDSWITCH LTD
30
+ 109.169.60.121 | BRU | VABL | 20110621 | 8850509672ee7d983d9a511e31b13a9a | 29761 | 109.169.60.0/23 | OC3-NETWORKS-AS-NUMB | US | BMTRADAGROUP.COM | RAPIDSWITCH LTD
31
+ 109.169.60.121 | BRU | VABL | 20110622 | bf85b024eec53c533630a4551d9f63a7 | 29761 | 109.169.60.0/23 | OC3-NETWORKS-AS-NUMB | US | BMTRADAGROUP.COM | RAPIDSWITCH LTD
32
+ 109.169.60.121 | BRU | VABL | 20110711 | 8850509672ee7d983d9a511e31b13a9a | 29761 | 109.169.60.0/23 | OC3-NETWORKS-AS-NUMB | US | AIMSDESPATCH.COM | RAPIDSWITCH LTD
33
+ 109.169.60.121 | BRU | VABL | 20110713 | 4fd0c880f8cbe31e4efc18890b4ac51a | 29761 | 109.169.60.0/23 | OC3-NETWORKS-AS-NUMB | US | AIMSDESPATCH.COM | RAPIDSWITCH LTD