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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -2
- data/Gemfile +18 -13
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/feeds/ET_block-ip_reputation.feed +26 -0
- data/feeds/ET_openbadlist-ip_reputation.feed +35 -0
- data/feeds/bambenek_c2_masterlist-domain_reputation.feed +15 -0
- data/feeds/bambenek_c2_masterlist-ip_reputation.feed +15 -0
- data/feeds/bambenek_dga_feed-domain_reputation.feed +15 -0
- data/feeds/berkeley-ip_reputation.feed +23 -0
- data/feeds/bitcash_cz_blacklist.feed +20 -0
- data/feeds/botscout-ip_reputation.feed +24 -0
- data/feeds/cert_mxpoison-ip_reputation.feed +21 -0
- data/feeds/chaosreigns-ip_reputation.feed +36 -0
- data/feeds/cydef_torexit-ip_reputation.feed +24 -0
- data/feeds/danger_bruteforce-ip_reputation.feed +23 -0
- data/feeds/falconcrest-ip_reputation.feed +18 -0
- data/feeds/h3x_asprox.feed +17 -0
- data/feeds/hosts-file_hphostspartial-domain_reputation.feed +18 -0
- data/feeds/infiltrated_vabl-ip_reputation.feed +29 -0
- data/feeds/isc_suspicious_high-domain_reputation.feed +25 -0
- data/feeds/isc_suspicious_low-domain_reputation.feed +25 -0
- data/feeds/isc_suspicious_medium-domain_reputation.feed +25 -0
- data/feeds/malwaredomainlist-url_reputation.feed +16 -0
- data/feeds/malwaredomains-domain_reputation.feed +27 -0
- data/feeds/malwaredomains_dyndns-domain_reputation.feed +27 -0
- data/feeds/malwaredomains_justdomains-domain_reputation.feed +18 -0
- data/feeds/multiproxy-ip_reputation.feed +20 -0
- data/feeds/openphish-url_reputation.feed +22 -0
- data/feeds/packetmail_perimeterbad-ip_reputation.feed +26 -0
- data/feeds/phishtank.feed +1 -1
- data/feeds/sigmaproject_atma.feed +25 -0
- data/feeds/sigmaproject_spyware.feed +24 -0
- data/feeds/sigmaproject_webexploit.feed +26 -0
- data/feeds/snort_bpf-ip_reputation.feed +19 -0
- data/feeds/steeman-ip_reputation.feed +19 -0
- data/feeds/trustedsec-ip_reputation.feed +17 -0
- data/feeds/virbl-ip_reputation.feed +24 -0
- data/feeds/vxvault-url_reputation.feed +22 -0
- data/feeds/yoyo_adservers-domain_reputation.feed +16 -0
- data/lib/threatinator/actions/run/action.rb +15 -3
- data/lib/threatinator/actions/run/coverage_observer.rb +12 -7
- data/lib/threatinator/actions/run/status_observer.rb +37 -0
- data/lib/threatinator/cli.rb +9 -3
- data/lib/threatinator/cli/parser.rb +14 -4
- data/lib/threatinator/config.rb +1 -0
- data/lib/threatinator/config/logger.rb +14 -0
- data/lib/threatinator/event.rb +28 -18
- data/lib/threatinator/event_builder.rb +52 -23
- data/lib/threatinator/exceptions.rb +3 -6
- data/lib/threatinator/feed.rb +1 -1
- data/lib/threatinator/feed_runner.rb +63 -7
- data/lib/threatinator/logger.rb +66 -0
- data/lib/threatinator/logging.rb +20 -0
- data/lib/threatinator/model/base.rb +23 -0
- data/lib/threatinator/model/collection.rb +64 -0
- data/lib/threatinator/model/observables/fqdn_collection.rb +13 -0
- data/lib/threatinator/model/observables/ipv4.rb +30 -0
- data/lib/threatinator/model/observables/ipv4_collection.rb +14 -0
- data/lib/threatinator/model/observables/url_collection.rb +16 -0
- data/lib/threatinator/model/validations.rb +1 -0
- data/lib/threatinator/model/validations/type.rb +21 -0
- data/lib/threatinator/plugins/output/csv.rb +20 -9
- data/spec/feeds/ET_block-ip_reputation_spec.rb +50 -0
- data/spec/feeds/ET_compromised-ip_reputation_spec.rb +2 -5
- data/spec/feeds/ET_openbadlist-ip_reputation_spec.rb +56 -0
- data/spec/feeds/alienvault-ip_reputation_spec.rb +2 -5
- data/spec/feeds/arbor_fastflux-domain_reputation_spec.rb +0 -3
- data/spec/feeds/arbor_ssh-ip_reputation_spec.rb +2 -5
- data/spec/feeds/autoshun_shunlist_spec.rb +1 -4
- data/spec/feeds/bambenek_c2_masterlist-domain_reputation_spec.rb +39 -0
- data/spec/feeds/bambenek_c2_masterlist-ip_reputation_spec.rb +39 -0
- data/spec/feeds/bambenek_dga_feed-domain_reputation_spec.rb +39 -0
- data/spec/feeds/berkeley-ip_reputation_spec.rb +47 -0
- data/spec/feeds/bitcash_cz_blacklist-ip_reputation_spec.rb +50 -0
- data/spec/feeds/blocklist_de_apache-ip_reputation_spec.rb +2 -5
- data/spec/feeds/blocklist_de_bots-ip_reputation_spec.rb +2 -5
- data/spec/feeds/blocklist_de_ftp-ip_reputation_spec.rb +2 -5
- data/spec/feeds/blocklist_de_imap-ip_reputation_spec.rb +2 -5
- data/spec/feeds/blocklist_de_pop3-ip_reputation_spec.rb +2 -5
- data/spec/feeds/blocklist_de_proftpd-ip_reputation_spec.rb +2 -5
- data/spec/feeds/blocklist_de_sip-ip_reputation_spec.rb +2 -5
- data/spec/feeds/blocklist_de_ssh-ip_reputation_spec.rb +2 -5
- data/spec/feeds/blocklist_de_strongips-ip_reputation_spec.rb +2 -5
- data/spec/feeds/botscout-ip_reputation_spec.rb +50 -0
- data/spec/feeds/cert_mxpoison-ip_reputation_spec.rb +47 -0
- data/spec/feeds/chaosreigns-ip_reputation_spec.rb +50 -0
- data/spec/feeds/ciarmy-ip_reputation_spec.rb +2 -5
- data/spec/feeds/cruzit-ip_reputation_spec.rb +2 -5
- data/spec/feeds/cydef_torexit-ip_reputation_spec.rb +47 -0
- data/spec/feeds/dan_me_uk_torlist-ip_reputation_spec.rb +2 -5
- data/spec/feeds/danger_bruteforce-ip_reputation_spec.rb +47 -0
- data/spec/feeds/data/ET_block-ip_reputation.txt +80 -0
- data/spec/feeds/data/ET_openbadlist-ip_reputation.txt +62 -0
- data/spec/feeds/data/bambenek_c2-dommasterlist.csv +30 -0
- data/spec/feeds/data/bambenek_c2-ipmasterlist.csv +27 -0
- data/spec/feeds/data/bambenek_dga_feed.csv +42 -0
- data/spec/feeds/data/berkeley.txt +29 -0
- data/spec/feeds/data/bitcash_cz_blacklist.txt +7 -0
- data/spec/feeds/data/botscout-ip-reputation.txt +713 -0
- data/spec/feeds/data/cert_mxpoison-ip_reputation.txt +17 -0
- data/spec/feeds/data/chaosreigns-ip-reputation.txt +26 -0
- data/spec/feeds/data/cydef_torexit-ip_reputation.txt +27 -0
- data/spec/feeds/data/danger_bruteforce-ip_reputation.txt +12 -0
- data/spec/feeds/data/falconcrest_iplist.txt +345 -0
- data/spec/feeds/data/h3x_asprox.txt +20 -0
- data/spec/feeds/data/hosts-file_hphostspartial_domainlist.txt +24 -0
- data/spec/feeds/data/infiltrated_vabl_iplist.txt +33 -0
- data/spec/feeds/data/isc_suspicious_high_domainlist.txt +26 -0
- data/spec/feeds/data/isc_suspicious_low_domainlist.txt +34 -0
- data/spec/feeds/data/isc_suspicious_medium_domainlist.txt +32 -0
- data/spec/feeds/data/malwaredomainlist-url-reputation.txt +8 -0
- data/spec/feeds/data/malwaredomains_domainlist.txt +24 -0
- data/spec/feeds/data/malwaredomains_dyndns_domainlist.txt +34 -0
- data/spec/feeds/data/malwaredomains_justdomains_domainlist.txt +18 -0
- data/spec/feeds/data/multiproxy_iplist.txt +15 -0
- data/spec/feeds/data/openphish-url-reputation.txt +16 -0
- data/spec/feeds/data/packetmail_perimeterbad-ip_reputation.txt +44 -0
- data/spec/feeds/data/sigmaproject_atma.return.gz +0 -0
- data/spec/feeds/data/sigmaproject_spyware.return.gz +0 -0
- data/spec/feeds/data/sigmaproject_webexploit.return.gz +0 -0
- data/spec/feeds/data/snort_bpf-ip_reputation.txt +16 -0
- data/spec/feeds/data/steeman-ip-reputation.txt +13 -0
- data/spec/feeds/data/trustedsec-ip-reputation.txt +12 -0
- data/spec/feeds/data/virbl-ip_reputation.txt +14 -0
- data/spec/feeds/data/vxvault-url-reputation.txt +15 -0
- data/spec/feeds/data/yoyo_adservers.txt +25 -0
- data/spec/feeds/dshield_attackers-top1000_spec.rb +1 -4
- data/spec/feeds/falconcrest-ip_reputation_spec.rb +37 -0
- data/spec/feeds/feodo-domain_reputation_spec.rb +0 -3
- data/spec/feeds/feodo-ip_reputation_spec.rb +2 -5
- data/spec/feeds/h3x_asprox-ip_reputation_spec.rb +50 -0
- data/spec/feeds/hosts-file_hphostspartial-domain_reputation_spec.rb +47 -0
- data/spec/feeds/infiltrated-ip_reputation_spec.rb +2 -5
- data/spec/feeds/infiltrated_vabl-ip_reputation_spec.rb +47 -0
- data/spec/feeds/isc_suspicious_high-domain_reputation_spec.rb +47 -0
- data/spec/feeds/isc_suspicious_low-domain_reputation_spec.rb +47 -0
- data/spec/feeds/isc_suspicious_medium-domain_reputation_spec.rb +47 -0
- data/spec/feeds/malc0de-domain_reputation_spec.rb +0 -3
- data/spec/feeds/malc0de-ip_reputation_spec.rb +2 -5
- data/spec/feeds/malwaredomainlist_url_reputation_spec.rb +50 -0
- data/spec/feeds/malwaredomains-domain_reputation_spec.rb +47 -0
- data/spec/feeds/malwaredomains_dyndns-domain_reputation_spec.rb +47 -0
- data/spec/feeds/malwaredomains_justdomains-domain_reputation_spec.rb +47 -0
- data/spec/feeds/mirc-domain_reputation_spec.rb +0 -3
- data/spec/feeds/multiproxy-ip_reputation_spec.rb +47 -0
- data/spec/feeds/nothink_irc-ip_reputation_spec.rb +2 -5
- data/spec/feeds/nothink_ssh-ip_reputation_spec.rb +2 -5
- data/spec/feeds/openbl-ip_reputation_spec.rb +2 -5
- data/spec/feeds/openphish_url_reputation_spec.rb +50 -0
- data/spec/feeds/packetmail_perimeterbad-ip_reputation_spec.rb +47 -0
- data/spec/feeds/palevo-domain_reputation_spec.rb +0 -3
- data/spec/feeds/palevo-ip_reputation_spec.rb +2 -5
- data/spec/feeds/phishtank_spec.rb +2 -5
- data/spec/feeds/sigmaproject_atma_spec.rb +63 -0
- data/spec/feeds/sigmaproject_spyware_spec.rb +64 -0
- data/spec/feeds/sigmaproject_webexploit_spec.rb +63 -0
- data/spec/feeds/snort_bpf-ip_reputation_spec.rb +47 -0
- data/spec/feeds/spyeye-domain_reputation_spec.rb +0 -3
- data/spec/feeds/spyeye-ip_reputation_spec.rb +2 -5
- data/spec/feeds/steeman-ip_reputation_spec.rb +50 -0
- data/spec/feeds/t-arend-de_ssh-ip_reputation_spec.rb +2 -5
- data/spec/feeds/the_haleys_ssh-ip_reputation_spec.rb +2 -5
- data/spec/feeds/trustedsec-ip_reputation_spec.rb +47 -0
- data/spec/feeds/virbl-ip_reputation_spec.rb +47 -0
- data/spec/feeds/vxvault_url_reputation_spec.rb +50 -0
- data/spec/feeds/yourcmc_ssh-ip_reputation_spec.rb +2 -5
- data/spec/feeds/yoyo_adservers_spec.rb +47 -0
- data/spec/feeds/zeus-domain_reputation_spec.rb +0 -3
- data/spec/feeds/zeus-ip_reputation_spec.rb +2 -5
- data/spec/spec_helper.rb +2 -0
- data/spec/support/factories/event.rb +11 -7
- data/spec/support/factories/feed.rb +28 -1
- data/spec/support/factories/ipv4.rb +36 -0
- data/spec/support/factories/url.rb +34 -0
- data/spec/support/shared/feed_runner_observer.rb +136 -0
- data/spec/support/shared/feeds.rb +19 -4
- data/spec/support/shared/model/collection.rb +164 -0
- data/spec/threatinator/actions/run/action_spec.rb +27 -10
- data/spec/threatinator/actions/run/coverage_observer_spec.rb +39 -4
- data/spec/threatinator/actions/run/status_observer_spec.rb +86 -0
- data/spec/threatinator/event_builder_spec.rb +111 -21
- data/spec/threatinator/event_spec.rb +237 -13
- data/spec/threatinator/event_spec.rb.new +319 -0
- data/spec/threatinator/feed_builder_spec.rb +0 -3
- data/spec/threatinator/feed_runner_spec.rb +254 -70
- data/spec/threatinator/logger_spec.rb +29 -0
- data/spec/threatinator/model/observables/fqdn_collection_spec.rb +42 -0
- data/spec/threatinator/model/observables/ipv4_collection_spec.rb +36 -0
- data/spec/threatinator/model/observables/ipv4_spec.rb +75 -0
- data/spec/threatinator/model/observables/url_collection_spec.rb +45 -0
- data/spec/threatinator/model/validations/type_spec.rb +37 -0
- data/spec/threatinator/plugins/output/csv_spec.rb +4 -3
- metadata +216 -19
- data/lib/threatinator/property_definer.rb +0 -101
- data/spec/threatinator/property_definer_spec.rb +0 -155
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
describe 'feeds/malwaredomainlist-url_reputation.feed', :feed do
|
|
4
|
+
let(:provider) { 'malwaredomainlist' }
|
|
5
|
+
let(:name) { 'url_reputation' }
|
|
6
|
+
|
|
7
|
+
it_fetches_url 'http://www.malwaredomainlist.com/updatescsv.php'
|
|
8
|
+
|
|
9
|
+
describe_parsing_the_file feed_data('malwaredomainlist-url-reputation.txt') do
|
|
10
|
+
it "should have parsed 8 records" do
|
|
11
|
+
expect(num_records_parsed).to eq(8)
|
|
12
|
+
end
|
|
13
|
+
it "should have filtered 0 records" do
|
|
14
|
+
expect(num_records_filtered).to eq(0)
|
|
15
|
+
end
|
|
16
|
+
it "should have missed 0 records" do
|
|
17
|
+
expect(num_records_missed).to eq(0)
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
describe_parsing_a_record '"2014/09/17_10:11","qwe.affairedhonneur.us/depqfie59y","192.99.197.131","-","exploit kit","Ben Bazar / benbazar2011y@mail.com","16276"' do
|
|
22
|
+
it "should have parsed" do
|
|
23
|
+
expect(status).to eq(:parsed)
|
|
24
|
+
end
|
|
25
|
+
it "should have parsed 1 event" do
|
|
26
|
+
expect(events.count).to eq(1)
|
|
27
|
+
end
|
|
28
|
+
describe 'event 0' do
|
|
29
|
+
subject { events[0] }
|
|
30
|
+
its(:type) { is_expected.to be(:malware_host) }
|
|
31
|
+
its(:urls) { is_expected.to eq(build(:urls, values: ['http://qwe.affairedhonneur.us/depqfie59y'])) }
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
describe_parsing_a_record '"2014/10/01_09:30","aveconomic.trailswest.org:15106/haddan_files/stories.php","87.118.127.230","ns2.km33436-26.keymachine.de.","exploit kit","T Fankhauser / artstaff@stjoearts.org","31103"' do
|
|
36
|
+
it "should have parsed" do
|
|
37
|
+
expect(status).to eq(:parsed)
|
|
38
|
+
end
|
|
39
|
+
it "should have parsed 1 event" do
|
|
40
|
+
expect(events.count).to eq(1)
|
|
41
|
+
end
|
|
42
|
+
describe 'event 0' do
|
|
43
|
+
subject { events[0] }
|
|
44
|
+
its(:type) { is_expected.to be(:malware_host) }
|
|
45
|
+
its(:urls) { is_expected.to eq(build(:urls, values: ['http://aveconomic.trailswest.org:15106/haddan_files/stories.php'])) }
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
describe 'feeds/malwaredomains-domain_reputation.feed', :feed do
|
|
4
|
+
let(:provider) { 'malwaredomains' }
|
|
5
|
+
let(:name) { 'domain_reputation' }
|
|
6
|
+
|
|
7
|
+
it_fetches_url 'http://mirror1.malwaredomains.com/files/domains.txt'
|
|
8
|
+
|
|
9
|
+
describe_parsing_the_file feed_data('malwaredomains_domainlist.txt') do
|
|
10
|
+
it "should have parsed 20 records" do
|
|
11
|
+
expect(num_records_parsed).to eq(20)
|
|
12
|
+
end
|
|
13
|
+
it "should have filtered 4 records" do
|
|
14
|
+
expect(num_records_filtered).to eq(4)
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
describe_parsing_a_record ' 20151231 qyrzfhilst.ru attackpage safebrowsing.google.com 20131227 20120308 20110512' do
|
|
19
|
+
it "should have parsed" do
|
|
20
|
+
expect(status).to eq(:parsed)
|
|
21
|
+
end
|
|
22
|
+
it "should have parsed 1 event" do
|
|
23
|
+
expect(events.count).to eq(1)
|
|
24
|
+
end
|
|
25
|
+
describe 'event 0' do
|
|
26
|
+
subject { events[0] }
|
|
27
|
+
its(:type) { is_expected.to be(:malware_host) }
|
|
28
|
+
its(:fqdns) { is_expected.to match_array(['qyrzfhilst.ru']) }
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
describe_parsing_a_record ' 20151231 xc6.in iframe blog.unmaskparasites.com/2009/06/25/hidden-cn-iframes-are-still-prevalent 20131228 20110311 20090830' do
|
|
33
|
+
it "should have parsed" do
|
|
34
|
+
expect(status).to eq(:parsed)
|
|
35
|
+
end
|
|
36
|
+
it "should have parsed 1 event" do
|
|
37
|
+
expect(events.count).to eq(1)
|
|
38
|
+
end
|
|
39
|
+
describe 'event 0' do
|
|
40
|
+
subject { events[0] }
|
|
41
|
+
its(:type) { is_expected.to be(:malware_host) }
|
|
42
|
+
its(:fqdns) { is_expected.to match_array(['xc6.in']) }
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
describe 'feeds/malwaredomains_dyndns-domain_reputation.feed', :feed do
|
|
4
|
+
let(:provider) { 'malwaredomains' }
|
|
5
|
+
let(:name) { 'dyndns_domain_reputation' }
|
|
6
|
+
|
|
7
|
+
it_fetches_url 'http://mirror2.malwaredomains.com/files/dynamic_dns.txt'
|
|
8
|
+
|
|
9
|
+
describe_parsing_the_file feed_data('malwaredomains_dyndns_domainlist.txt') do
|
|
10
|
+
it "should have parsed 19 records" do
|
|
11
|
+
expect(num_records_parsed).to eq(19)
|
|
12
|
+
end
|
|
13
|
+
it "should have filtered 15 records" do
|
|
14
|
+
expect(num_records_filtered).to eq(15)
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
describe_parsing_a_record '1040ezdotcom.com malicious siteinspector.comodo.com/' do
|
|
19
|
+
it "should have parsed" do
|
|
20
|
+
expect(status).to eq(:parsed)
|
|
21
|
+
end
|
|
22
|
+
it "should have parsed 1 event" do
|
|
23
|
+
expect(events.count).to eq(1)
|
|
24
|
+
end
|
|
25
|
+
describe 'event 0' do
|
|
26
|
+
subject { events[0] }
|
|
27
|
+
its(:type) { is_expected.to be(:scanning) }
|
|
28
|
+
its(:fqdns) { is_expected.to match_array(['1040ezdotcom.com']) }
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
describe_parsing_a_record '1stresponderservices.com malicious siteinspector.comodo.com/' do
|
|
33
|
+
it "should have parsed" do
|
|
34
|
+
expect(status).to eq(:parsed)
|
|
35
|
+
end
|
|
36
|
+
it "should have parsed 1 event" do
|
|
37
|
+
expect(events.count).to eq(1)
|
|
38
|
+
end
|
|
39
|
+
describe 'event 0' do
|
|
40
|
+
subject { events[0] }
|
|
41
|
+
its(:type) { is_expected.to be(:scanning) }
|
|
42
|
+
its(:fqdns) { is_expected.to match_array(['1stresponderservices.com']) }
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
describe 'feeds/malwaredomains_justdomains-domain_reputation.feed', :feed do
|
|
4
|
+
let(:provider) { 'malwaredomains' }
|
|
5
|
+
let(:name) { 'justdomains_domain_reputation' }
|
|
6
|
+
|
|
7
|
+
it_fetches_url 'http://mirror3.malwaredomains.com/files/justdomains'
|
|
8
|
+
|
|
9
|
+
describe_parsing_the_file feed_data('malwaredomains_justdomains_domainlist.txt') do
|
|
10
|
+
it "should have parsed 18 records" do
|
|
11
|
+
expect(num_records_parsed).to eq(18)
|
|
12
|
+
end
|
|
13
|
+
it "should have filtered 0 records" do
|
|
14
|
+
expect(num_records_filtered).to eq(0)
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
describe_parsing_a_record 'cg79wo20kl92doowfn01oqpo9mdieowv5tyj.com' do
|
|
19
|
+
it "should have parsed" do
|
|
20
|
+
expect(status).to eq(:parsed)
|
|
21
|
+
end
|
|
22
|
+
it "should have parsed 1 event" do
|
|
23
|
+
expect(events.count).to eq(1)
|
|
24
|
+
end
|
|
25
|
+
describe 'event 0' do
|
|
26
|
+
subject { events[0] }
|
|
27
|
+
its(:type) { is_expected.to be(:malware_host) }
|
|
28
|
+
its(:fqdns) { is_expected.to match_array(["cg79wo20kl92doowfn01oqpo9mdieowv5tyj.com"]) }
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
describe_parsing_a_record 'x6p.in' do
|
|
33
|
+
it "should have parsed" do
|
|
34
|
+
expect(status).to eq(:parsed)
|
|
35
|
+
end
|
|
36
|
+
it "should have parsed 1 event" do
|
|
37
|
+
expect(events.count).to eq(1)
|
|
38
|
+
end
|
|
39
|
+
describe 'event 0' do
|
|
40
|
+
subject { events[0] }
|
|
41
|
+
its(:type) { is_expected.to be(:malware_host) }
|
|
42
|
+
its(:fqdns) { is_expected.to match_array(["x6p.in"]) }
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
|
|
@@ -13,9 +13,6 @@ describe 'feeds/mirc-domain_reputation.feed', :feed do
|
|
|
13
13
|
it "should have filtered 18 records" do
|
|
14
14
|
expect(num_records_filtered).to eq(18)
|
|
15
15
|
end
|
|
16
|
-
it "should have missed 0 records" do
|
|
17
|
-
expect(num_records_missed).to eq(0)
|
|
18
|
-
end
|
|
19
16
|
end
|
|
20
17
|
|
|
21
18
|
describe_parsing_a_record 'n3=Random US serverSERVER:irc.us.dal.net:6665-6668,7000GROUP:DALnet' do
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
describe 'feeds/multiproxy-ip_reputation.feed', :feed do
|
|
4
|
+
let(:provider) { 'multiproxy' }
|
|
5
|
+
let(:name) { 'ip_reputation' }
|
|
6
|
+
|
|
7
|
+
it_fetches_url 'http://multiproxy.org/txt_all/proxy.txt'
|
|
8
|
+
|
|
9
|
+
describe_parsing_the_file feed_data('multiproxy_iplist.txt') do
|
|
10
|
+
it "should have parsed 15 records" do
|
|
11
|
+
expect(num_records_parsed).to eq(15)
|
|
12
|
+
end
|
|
13
|
+
it "should have filtered 0 records" do
|
|
14
|
+
expect(num_records_filtered).to eq(0)
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
describe_parsing_a_record '190.53.89.103:6588' do
|
|
19
|
+
it "should have parsed" do
|
|
20
|
+
expect(status).to eq(:parsed)
|
|
21
|
+
end
|
|
22
|
+
it "should have parsed 1 event" do
|
|
23
|
+
expect(events.count).to eq(1)
|
|
24
|
+
end
|
|
25
|
+
describe 'event 0' do
|
|
26
|
+
subject { events[0] }
|
|
27
|
+
its(:type) { is_expected.to be(:scanning) }
|
|
28
|
+
its(:ipv4s) { is_expected.to eq(build(:ipv4s, values: ['190.53.89.103'])) }
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
describe_parsing_a_record '211.140.151.214:8080' do
|
|
33
|
+
it "should have parsed" do
|
|
34
|
+
expect(status).to eq(:parsed)
|
|
35
|
+
end
|
|
36
|
+
it "should have parsed 1 event" do
|
|
37
|
+
expect(events.count).to eq(1)
|
|
38
|
+
end
|
|
39
|
+
describe 'event 0' do
|
|
40
|
+
subject { events[0] }
|
|
41
|
+
its(:type) { is_expected.to be(:scanning) }
|
|
42
|
+
its(:ipv4s) { is_expected.to eq(build(:ipv4s, values: ['211.140.151.214'])) }
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
|
|
@@ -13,9 +13,6 @@ describe 'feeds/nothink_irc-ip_reputation.feed', :feed do
|
|
|
13
13
|
it "should have filtered 3 records" do
|
|
14
14
|
expect(num_records_filtered).to eq(3)
|
|
15
15
|
end
|
|
16
|
-
it "should have missed 0 records" do
|
|
17
|
-
expect(num_records_missed).to eq(0)
|
|
18
|
-
end
|
|
19
16
|
end
|
|
20
17
|
|
|
21
18
|
describe_parsing_a_record '189.107.132.113' do
|
|
@@ -28,7 +25,7 @@ describe 'feeds/nothink_irc-ip_reputation.feed', :feed do
|
|
|
28
25
|
describe 'event 0' do
|
|
29
26
|
subject { events[0] }
|
|
30
27
|
its(:type) { is_expected.to be(:c2) }
|
|
31
|
-
its(:ipv4s) { is_expected.to
|
|
28
|
+
its(:ipv4s) { is_expected.to eq(build(:ipv4s, values: ['189.107.132.113'])) }
|
|
32
29
|
end
|
|
33
30
|
end
|
|
34
31
|
|
|
@@ -42,7 +39,7 @@ describe 'feeds/nothink_irc-ip_reputation.feed', :feed do
|
|
|
42
39
|
describe 'event 0' do
|
|
43
40
|
subject { events[0] }
|
|
44
41
|
its(:type) { is_expected.to be(:c2) }
|
|
45
|
-
its(:ipv4s) { is_expected.to
|
|
42
|
+
its(:ipv4s) { is_expected.to eq(build(:ipv4s, values: ['201.48.61.38'])) }
|
|
46
43
|
end
|
|
47
44
|
end
|
|
48
45
|
end
|
|
@@ -13,9 +13,6 @@ describe 'feeds/nothink_ssh-ip_reputation.feed', :feed do
|
|
|
13
13
|
it "should have filtered 3 records" do
|
|
14
14
|
expect(num_records_filtered).to eq(3)
|
|
15
15
|
end
|
|
16
|
-
it "should have missed 0 records" do
|
|
17
|
-
expect(num_records_missed).to eq(0)
|
|
18
|
-
end
|
|
19
16
|
end
|
|
20
17
|
|
|
21
18
|
describe_parsing_a_record '36.39.246.121' do
|
|
@@ -28,7 +25,7 @@ describe 'feeds/nothink_ssh-ip_reputation.feed', :feed do
|
|
|
28
25
|
describe 'event 0' do
|
|
29
26
|
subject { events[0] }
|
|
30
27
|
its(:type) { is_expected.to be(:scanning) }
|
|
31
|
-
its(:ipv4s) { is_expected.to
|
|
28
|
+
its(:ipv4s) { is_expected.to eq(build(:ipv4s, values: ['36.39.246.121'])) }
|
|
32
29
|
end
|
|
33
30
|
end
|
|
34
31
|
|
|
@@ -42,7 +39,7 @@ describe 'feeds/nothink_ssh-ip_reputation.feed', :feed do
|
|
|
42
39
|
describe 'event 0' do
|
|
43
40
|
subject { events[0] }
|
|
44
41
|
its(:type) { is_expected.to be(:scanning) }
|
|
45
|
-
its(:ipv4s) { is_expected.to
|
|
42
|
+
its(:ipv4s) { is_expected.to eq(build(:ipv4s, values: ['94.32.71.168'])) }
|
|
46
43
|
end
|
|
47
44
|
end
|
|
48
45
|
end
|
|
@@ -13,9 +13,6 @@ describe 'feeds/openbl-ip_reputation.feed', :feed do
|
|
|
13
13
|
it "should have filtered 4 records" do
|
|
14
14
|
expect(num_records_filtered).to eq(4)
|
|
15
15
|
end
|
|
16
|
-
it "should have missed 0 records" do
|
|
17
|
-
expect(num_records_missed).to eq(0)
|
|
18
|
-
end
|
|
19
16
|
end
|
|
20
17
|
|
|
21
18
|
describe_parsing_a_record '113.171.10.37' do
|
|
@@ -28,7 +25,7 @@ describe 'feeds/openbl-ip_reputation.feed', :feed do
|
|
|
28
25
|
describe 'event 0' do
|
|
29
26
|
subject { events[0] }
|
|
30
27
|
its(:type) { is_expected.to be(:scanning) }
|
|
31
|
-
its(:ipv4s) { is_expected.to
|
|
28
|
+
its(:ipv4s) { is_expected.to eq(build(:ipv4s, values: ['113.171.10.37'])) }
|
|
32
29
|
end
|
|
33
30
|
end
|
|
34
31
|
|
|
@@ -42,7 +39,7 @@ describe 'feeds/openbl-ip_reputation.feed', :feed do
|
|
|
42
39
|
describe 'event 0' do
|
|
43
40
|
subject { events[0] }
|
|
44
41
|
its(:type) { is_expected.to be(:scanning) }
|
|
45
|
-
its(:ipv4s) { is_expected.to
|
|
42
|
+
its(:ipv4s) { is_expected.to eq(build(:ipv4s, values: ['210.209.84.57'])) }
|
|
46
43
|
end
|
|
47
44
|
end
|
|
48
45
|
end
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
describe 'feeds/openphish-url_reputation.feed', :feed do
|
|
4
|
+
let(:provider) { 'openphish' }
|
|
5
|
+
let(:name) { 'url_reputation' }
|
|
6
|
+
|
|
7
|
+
it_fetches_url 'http://openphish.com/feed.txt'
|
|
8
|
+
|
|
9
|
+
describe_parsing_the_file feed_data('openphish-url-reputation.txt') do
|
|
10
|
+
it "should have parsed 15 records" do
|
|
11
|
+
expect(num_records_parsed).to eq(15)
|
|
12
|
+
end
|
|
13
|
+
it "should have filtered 1 records" do
|
|
14
|
+
expect(num_records_filtered).to eq(1)
|
|
15
|
+
end
|
|
16
|
+
it "should have missed 0 records" do
|
|
17
|
+
expect(num_records_missed).to eq(0)
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
describe_parsing_a_record 'http://107.190.137.202/~akshat/images/fr/webscr.confirmer.secure.connexion.mpp.information.compte.webapps.home/8fa5aed41992b676cf5305ee5c3d4e1e/login.php' do
|
|
22
|
+
it "should have parsed" do
|
|
23
|
+
expect(status).to eq(:parsed)
|
|
24
|
+
end
|
|
25
|
+
it "should have parsed 1 event" do
|
|
26
|
+
expect(events.count).to eq(1)
|
|
27
|
+
end
|
|
28
|
+
describe 'event 0' do
|
|
29
|
+
subject { events[0] }
|
|
30
|
+
its(:type) { is_expected.to be(:malware_host) }
|
|
31
|
+
its(:urls) { is_expected.to eq(build(:urls, values: ['http://107.190.137.202/~akshat/images/fr/webscr.confirmer.secure.connexion.mpp.information.compte.webapps.home/8fa5aed41992b676cf5305ee5c3d4e1e/login.php'])) }
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
describe_parsing_a_record 'http://haraiscompany.com/images/zpsiios/5g60jpjhifajb8rrvx1ixr/?jsp=main' do
|
|
36
|
+
it "should have parsed" do
|
|
37
|
+
expect(status).to eq(:parsed)
|
|
38
|
+
end
|
|
39
|
+
it "should have parsed 1 event" do
|
|
40
|
+
expect(events.count).to eq(1)
|
|
41
|
+
end
|
|
42
|
+
describe 'event 0' do
|
|
43
|
+
subject { events[0] }
|
|
44
|
+
its(:type) { is_expected.to be(:malware_host) }
|
|
45
|
+
its(:urls) { is_expected.to eq(build(:urls, values: ['http://haraiscompany.com/images/zpsiios/5g60jpjhifajb8rrvx1ixr/?jsp=main'])) }
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
describe 'feeds/packetmail_perimeterbad-ip_reputation.feed', :feed do
|
|
4
|
+
let(:provider) { 'packetmail' }
|
|
5
|
+
let(:name) { 'perimeterbad_ip_reputation' }
|
|
6
|
+
|
|
7
|
+
it_fetches_url 'https://www.packetmail.net/iprep_perimeterbad.txt'
|
|
8
|
+
|
|
9
|
+
describe_parsing_the_file feed_data('packetmail_perimeterbad-ip_reputation.txt') do
|
|
10
|
+
it "should have parsed 8 records" do
|
|
11
|
+
expect(num_records_parsed).to eq(8)
|
|
12
|
+
end
|
|
13
|
+
it "should have filtered 36 records" do
|
|
14
|
+
expect(num_records_filtered).to eq(36)
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
describe_parsing_a_record '[03/Sep/2014:13:11:47 -0500] 192.99.152.38 206.82.85.197 403 GET /cc/process.php HTTP/1.1 - Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0 2014-09-03' do
|
|
19
|
+
it "should have parsed" do
|
|
20
|
+
expect(status).to eq(:parsed)
|
|
21
|
+
end
|
|
22
|
+
it "should have parsed 1 event" do
|
|
23
|
+
expect(events.count).to eq(1)
|
|
24
|
+
end
|
|
25
|
+
describe 'event 0' do
|
|
26
|
+
subject { events[0] }
|
|
27
|
+
its(:type) { is_expected.to be(:scanning) }
|
|
28
|
+
its(:ipv4s) { is_expected.to eq(build(:ipv4s, values: ['192.99.152.38'])) }
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
describe_parsing_a_record '[03/Sep/2014:18:06:59 -0500] 69.28.85.204 www.hackbraten.tk 403 HEAD /Hackbraten.zip HTTP/1.1 - curl/7.32.0 2014-09-03' do
|
|
33
|
+
it "should have parsed" do
|
|
34
|
+
expect(status).to eq(:parsed)
|
|
35
|
+
end
|
|
36
|
+
it "should have parsed 1 event" do
|
|
37
|
+
expect(events.count).to eq(1)
|
|
38
|
+
end
|
|
39
|
+
describe 'event 0' do
|
|
40
|
+
subject { events[0] }
|
|
41
|
+
its(:type) { is_expected.to be(:scanning) }
|
|
42
|
+
its(:ipv4s) { is_expected.to eq(build(:ipv4s, values: ['69.28.85.204'])) }
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
|
|
@@ -13,9 +13,6 @@ describe 'feeds/palevo-domain_reputation.feed', :feed do
|
|
|
13
13
|
it "should have filtered 1 records" do
|
|
14
14
|
expect(num_records_filtered).to eq(1)
|
|
15
15
|
end
|
|
16
|
-
it "should have missed 0 records" do
|
|
17
|
-
expect(num_records_missed).to eq(0)
|
|
18
|
-
end
|
|
19
16
|
end
|
|
20
17
|
|
|
21
18
|
describe_parsing_a_record 'legionarios.servecounterstrike.com' do
|