threatinator 0.1.6 → 0.2.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 (197) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +13 -2
  3. data/Gemfile +18 -13
  4. data/Rakefile +1 -1
  5. data/VERSION +1 -1
  6. data/feeds/ET_block-ip_reputation.feed +26 -0
  7. data/feeds/ET_openbadlist-ip_reputation.feed +35 -0
  8. data/feeds/bambenek_c2_masterlist-domain_reputation.feed +15 -0
  9. data/feeds/bambenek_c2_masterlist-ip_reputation.feed +15 -0
  10. data/feeds/bambenek_dga_feed-domain_reputation.feed +15 -0
  11. data/feeds/berkeley-ip_reputation.feed +23 -0
  12. data/feeds/bitcash_cz_blacklist.feed +20 -0
  13. data/feeds/botscout-ip_reputation.feed +24 -0
  14. data/feeds/cert_mxpoison-ip_reputation.feed +21 -0
  15. data/feeds/chaosreigns-ip_reputation.feed +36 -0
  16. data/feeds/cydef_torexit-ip_reputation.feed +24 -0
  17. data/feeds/danger_bruteforce-ip_reputation.feed +23 -0
  18. data/feeds/falconcrest-ip_reputation.feed +18 -0
  19. data/feeds/h3x_asprox.feed +17 -0
  20. data/feeds/hosts-file_hphostspartial-domain_reputation.feed +18 -0
  21. data/feeds/infiltrated_vabl-ip_reputation.feed +29 -0
  22. data/feeds/isc_suspicious_high-domain_reputation.feed +25 -0
  23. data/feeds/isc_suspicious_low-domain_reputation.feed +25 -0
  24. data/feeds/isc_suspicious_medium-domain_reputation.feed +25 -0
  25. data/feeds/malwaredomainlist-url_reputation.feed +16 -0
  26. data/feeds/malwaredomains-domain_reputation.feed +27 -0
  27. data/feeds/malwaredomains_dyndns-domain_reputation.feed +27 -0
  28. data/feeds/malwaredomains_justdomains-domain_reputation.feed +18 -0
  29. data/feeds/multiproxy-ip_reputation.feed +20 -0
  30. data/feeds/openphish-url_reputation.feed +22 -0
  31. data/feeds/packetmail_perimeterbad-ip_reputation.feed +26 -0
  32. data/feeds/phishtank.feed +1 -1
  33. data/feeds/sigmaproject_atma.feed +25 -0
  34. data/feeds/sigmaproject_spyware.feed +24 -0
  35. data/feeds/sigmaproject_webexploit.feed +26 -0
  36. data/feeds/snort_bpf-ip_reputation.feed +19 -0
  37. data/feeds/steeman-ip_reputation.feed +19 -0
  38. data/feeds/trustedsec-ip_reputation.feed +17 -0
  39. data/feeds/virbl-ip_reputation.feed +24 -0
  40. data/feeds/vxvault-url_reputation.feed +22 -0
  41. data/feeds/yoyo_adservers-domain_reputation.feed +16 -0
  42. data/lib/threatinator/actions/run/action.rb +15 -3
  43. data/lib/threatinator/actions/run/coverage_observer.rb +12 -7
  44. data/lib/threatinator/actions/run/status_observer.rb +37 -0
  45. data/lib/threatinator/cli.rb +9 -3
  46. data/lib/threatinator/cli/parser.rb +14 -4
  47. data/lib/threatinator/config.rb +1 -0
  48. data/lib/threatinator/config/logger.rb +14 -0
  49. data/lib/threatinator/event.rb +28 -18
  50. data/lib/threatinator/event_builder.rb +52 -23
  51. data/lib/threatinator/exceptions.rb +3 -6
  52. data/lib/threatinator/feed.rb +1 -1
  53. data/lib/threatinator/feed_runner.rb +63 -7
  54. data/lib/threatinator/logger.rb +66 -0
  55. data/lib/threatinator/logging.rb +20 -0
  56. data/lib/threatinator/model/base.rb +23 -0
  57. data/lib/threatinator/model/collection.rb +64 -0
  58. data/lib/threatinator/model/observables/fqdn_collection.rb +13 -0
  59. data/lib/threatinator/model/observables/ipv4.rb +30 -0
  60. data/lib/threatinator/model/observables/ipv4_collection.rb +14 -0
  61. data/lib/threatinator/model/observables/url_collection.rb +16 -0
  62. data/lib/threatinator/model/validations.rb +1 -0
  63. data/lib/threatinator/model/validations/type.rb +21 -0
  64. data/lib/threatinator/plugins/output/csv.rb +20 -9
  65. data/spec/feeds/ET_block-ip_reputation_spec.rb +50 -0
  66. data/spec/feeds/ET_compromised-ip_reputation_spec.rb +2 -5
  67. data/spec/feeds/ET_openbadlist-ip_reputation_spec.rb +56 -0
  68. data/spec/feeds/alienvault-ip_reputation_spec.rb +2 -5
  69. data/spec/feeds/arbor_fastflux-domain_reputation_spec.rb +0 -3
  70. data/spec/feeds/arbor_ssh-ip_reputation_spec.rb +2 -5
  71. data/spec/feeds/autoshun_shunlist_spec.rb +1 -4
  72. data/spec/feeds/bambenek_c2_masterlist-domain_reputation_spec.rb +39 -0
  73. data/spec/feeds/bambenek_c2_masterlist-ip_reputation_spec.rb +39 -0
  74. data/spec/feeds/bambenek_dga_feed-domain_reputation_spec.rb +39 -0
  75. data/spec/feeds/berkeley-ip_reputation_spec.rb +47 -0
  76. data/spec/feeds/bitcash_cz_blacklist-ip_reputation_spec.rb +50 -0
  77. data/spec/feeds/blocklist_de_apache-ip_reputation_spec.rb +2 -5
  78. data/spec/feeds/blocklist_de_bots-ip_reputation_spec.rb +2 -5
  79. data/spec/feeds/blocklist_de_ftp-ip_reputation_spec.rb +2 -5
  80. data/spec/feeds/blocklist_de_imap-ip_reputation_spec.rb +2 -5
  81. data/spec/feeds/blocklist_de_pop3-ip_reputation_spec.rb +2 -5
  82. data/spec/feeds/blocklist_de_proftpd-ip_reputation_spec.rb +2 -5
  83. data/spec/feeds/blocklist_de_sip-ip_reputation_spec.rb +2 -5
  84. data/spec/feeds/blocklist_de_ssh-ip_reputation_spec.rb +2 -5
  85. data/spec/feeds/blocklist_de_strongips-ip_reputation_spec.rb +2 -5
  86. data/spec/feeds/botscout-ip_reputation_spec.rb +50 -0
  87. data/spec/feeds/cert_mxpoison-ip_reputation_spec.rb +47 -0
  88. data/spec/feeds/chaosreigns-ip_reputation_spec.rb +50 -0
  89. data/spec/feeds/ciarmy-ip_reputation_spec.rb +2 -5
  90. data/spec/feeds/cruzit-ip_reputation_spec.rb +2 -5
  91. data/spec/feeds/cydef_torexit-ip_reputation_spec.rb +47 -0
  92. data/spec/feeds/dan_me_uk_torlist-ip_reputation_spec.rb +2 -5
  93. data/spec/feeds/danger_bruteforce-ip_reputation_spec.rb +47 -0
  94. data/spec/feeds/data/ET_block-ip_reputation.txt +80 -0
  95. data/spec/feeds/data/ET_openbadlist-ip_reputation.txt +62 -0
  96. data/spec/feeds/data/bambenek_c2-dommasterlist.csv +30 -0
  97. data/spec/feeds/data/bambenek_c2-ipmasterlist.csv +27 -0
  98. data/spec/feeds/data/bambenek_dga_feed.csv +42 -0
  99. data/spec/feeds/data/berkeley.txt +29 -0
  100. data/spec/feeds/data/bitcash_cz_blacklist.txt +7 -0
  101. data/spec/feeds/data/botscout-ip-reputation.txt +713 -0
  102. data/spec/feeds/data/cert_mxpoison-ip_reputation.txt +17 -0
  103. data/spec/feeds/data/chaosreigns-ip-reputation.txt +26 -0
  104. data/spec/feeds/data/cydef_torexit-ip_reputation.txt +27 -0
  105. data/spec/feeds/data/danger_bruteforce-ip_reputation.txt +12 -0
  106. data/spec/feeds/data/falconcrest_iplist.txt +345 -0
  107. data/spec/feeds/data/h3x_asprox.txt +20 -0
  108. data/spec/feeds/data/hosts-file_hphostspartial_domainlist.txt +24 -0
  109. data/spec/feeds/data/infiltrated_vabl_iplist.txt +33 -0
  110. data/spec/feeds/data/isc_suspicious_high_domainlist.txt +26 -0
  111. data/spec/feeds/data/isc_suspicious_low_domainlist.txt +34 -0
  112. data/spec/feeds/data/isc_suspicious_medium_domainlist.txt +32 -0
  113. data/spec/feeds/data/malwaredomainlist-url-reputation.txt +8 -0
  114. data/spec/feeds/data/malwaredomains_domainlist.txt +24 -0
  115. data/spec/feeds/data/malwaredomains_dyndns_domainlist.txt +34 -0
  116. data/spec/feeds/data/malwaredomains_justdomains_domainlist.txt +18 -0
  117. data/spec/feeds/data/multiproxy_iplist.txt +15 -0
  118. data/spec/feeds/data/openphish-url-reputation.txt +16 -0
  119. data/spec/feeds/data/packetmail_perimeterbad-ip_reputation.txt +44 -0
  120. data/spec/feeds/data/sigmaproject_atma.return.gz +0 -0
  121. data/spec/feeds/data/sigmaproject_spyware.return.gz +0 -0
  122. data/spec/feeds/data/sigmaproject_webexploit.return.gz +0 -0
  123. data/spec/feeds/data/snort_bpf-ip_reputation.txt +16 -0
  124. data/spec/feeds/data/steeman-ip-reputation.txt +13 -0
  125. data/spec/feeds/data/trustedsec-ip-reputation.txt +12 -0
  126. data/spec/feeds/data/virbl-ip_reputation.txt +14 -0
  127. data/spec/feeds/data/vxvault-url-reputation.txt +15 -0
  128. data/spec/feeds/data/yoyo_adservers.txt +25 -0
  129. data/spec/feeds/dshield_attackers-top1000_spec.rb +1 -4
  130. data/spec/feeds/falconcrest-ip_reputation_spec.rb +37 -0
  131. data/spec/feeds/feodo-domain_reputation_spec.rb +0 -3
  132. data/spec/feeds/feodo-ip_reputation_spec.rb +2 -5
  133. data/spec/feeds/h3x_asprox-ip_reputation_spec.rb +50 -0
  134. data/spec/feeds/hosts-file_hphostspartial-domain_reputation_spec.rb +47 -0
  135. data/spec/feeds/infiltrated-ip_reputation_spec.rb +2 -5
  136. data/spec/feeds/infiltrated_vabl-ip_reputation_spec.rb +47 -0
  137. data/spec/feeds/isc_suspicious_high-domain_reputation_spec.rb +47 -0
  138. data/spec/feeds/isc_suspicious_low-domain_reputation_spec.rb +47 -0
  139. data/spec/feeds/isc_suspicious_medium-domain_reputation_spec.rb +47 -0
  140. data/spec/feeds/malc0de-domain_reputation_spec.rb +0 -3
  141. data/spec/feeds/malc0de-ip_reputation_spec.rb +2 -5
  142. data/spec/feeds/malwaredomainlist_url_reputation_spec.rb +50 -0
  143. data/spec/feeds/malwaredomains-domain_reputation_spec.rb +47 -0
  144. data/spec/feeds/malwaredomains_dyndns-domain_reputation_spec.rb +47 -0
  145. data/spec/feeds/malwaredomains_justdomains-domain_reputation_spec.rb +47 -0
  146. data/spec/feeds/mirc-domain_reputation_spec.rb +0 -3
  147. data/spec/feeds/multiproxy-ip_reputation_spec.rb +47 -0
  148. data/spec/feeds/nothink_irc-ip_reputation_spec.rb +2 -5
  149. data/spec/feeds/nothink_ssh-ip_reputation_spec.rb +2 -5
  150. data/spec/feeds/openbl-ip_reputation_spec.rb +2 -5
  151. data/spec/feeds/openphish_url_reputation_spec.rb +50 -0
  152. data/spec/feeds/packetmail_perimeterbad-ip_reputation_spec.rb +47 -0
  153. data/spec/feeds/palevo-domain_reputation_spec.rb +0 -3
  154. data/spec/feeds/palevo-ip_reputation_spec.rb +2 -5
  155. data/spec/feeds/phishtank_spec.rb +2 -5
  156. data/spec/feeds/sigmaproject_atma_spec.rb +63 -0
  157. data/spec/feeds/sigmaproject_spyware_spec.rb +64 -0
  158. data/spec/feeds/sigmaproject_webexploit_spec.rb +63 -0
  159. data/spec/feeds/snort_bpf-ip_reputation_spec.rb +47 -0
  160. data/spec/feeds/spyeye-domain_reputation_spec.rb +0 -3
  161. data/spec/feeds/spyeye-ip_reputation_spec.rb +2 -5
  162. data/spec/feeds/steeman-ip_reputation_spec.rb +50 -0
  163. data/spec/feeds/t-arend-de_ssh-ip_reputation_spec.rb +2 -5
  164. data/spec/feeds/the_haleys_ssh-ip_reputation_spec.rb +2 -5
  165. data/spec/feeds/trustedsec-ip_reputation_spec.rb +47 -0
  166. data/spec/feeds/virbl-ip_reputation_spec.rb +47 -0
  167. data/spec/feeds/vxvault_url_reputation_spec.rb +50 -0
  168. data/spec/feeds/yourcmc_ssh-ip_reputation_spec.rb +2 -5
  169. data/spec/feeds/yoyo_adservers_spec.rb +47 -0
  170. data/spec/feeds/zeus-domain_reputation_spec.rb +0 -3
  171. data/spec/feeds/zeus-ip_reputation_spec.rb +2 -5
  172. data/spec/spec_helper.rb +2 -0
  173. data/spec/support/factories/event.rb +11 -7
  174. data/spec/support/factories/feed.rb +28 -1
  175. data/spec/support/factories/ipv4.rb +36 -0
  176. data/spec/support/factories/url.rb +34 -0
  177. data/spec/support/shared/feed_runner_observer.rb +136 -0
  178. data/spec/support/shared/feeds.rb +19 -4
  179. data/spec/support/shared/model/collection.rb +164 -0
  180. data/spec/threatinator/actions/run/action_spec.rb +27 -10
  181. data/spec/threatinator/actions/run/coverage_observer_spec.rb +39 -4
  182. data/spec/threatinator/actions/run/status_observer_spec.rb +86 -0
  183. data/spec/threatinator/event_builder_spec.rb +111 -21
  184. data/spec/threatinator/event_spec.rb +237 -13
  185. data/spec/threatinator/event_spec.rb.new +319 -0
  186. data/spec/threatinator/feed_builder_spec.rb +0 -3
  187. data/spec/threatinator/feed_runner_spec.rb +254 -70
  188. data/spec/threatinator/logger_spec.rb +29 -0
  189. data/spec/threatinator/model/observables/fqdn_collection_spec.rb +42 -0
  190. data/spec/threatinator/model/observables/ipv4_collection_spec.rb +36 -0
  191. data/spec/threatinator/model/observables/ipv4_spec.rb +75 -0
  192. data/spec/threatinator/model/observables/url_collection_spec.rb +45 -0
  193. data/spec/threatinator/model/validations/type_spec.rb +37 -0
  194. data/spec/threatinator/plugins/output/csv_spec.rb +4 -3
  195. metadata +216 -19
  196. data/lib/threatinator/property_definer.rb +0 -101
  197. data/spec/threatinator/property_definer_spec.rb +0 -155
@@ -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,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,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,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,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