active_stix 0.1.21
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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +32 -0
- data/app/assets/config/active_stix_manifest.js +2 -0
- data/app/assets/javascripts/active_stix/application.js +15 -0
- data/app/assets/javascripts/active_stix/artifacts.js +2 -0
- data/app/assets/javascripts/active_stix/attack_patterns.js +2 -0
- data/app/assets/javascripts/active_stix/bcc_refs.js +2 -0
- data/app/assets/javascripts/active_stix/bundled_objects.js +2 -0
- data/app/assets/javascripts/active_stix/bundles.js +2 -0
- data/app/assets/javascripts/active_stix/campaigns.js +2 -0
- data/app/assets/javascripts/active_stix/course_of_actions.js +2 -0
- data/app/assets/javascripts/active_stix/cyber_observables.js +2 -0
- data/app/assets/javascripts/active_stix/email_messages.js +2 -0
- data/app/assets/javascripts/active_stix/external_references.js +2 -0
- data/app/assets/javascripts/active_stix/files.js +2 -0
- data/app/assets/javascripts/active_stix/identities.js +2 -0
- data/app/assets/javascripts/active_stix/indicator_labels.js +2 -0
- data/app/assets/javascripts/active_stix/indicators.js +2 -0
- data/app/assets/javascripts/active_stix/intrusion_sets.js +2 -0
- data/app/assets/javascripts/active_stix/kill_chain_phases.js +2 -0
- data/app/assets/javascripts/active_stix/kill_chains.js +2 -0
- data/app/assets/javascripts/active_stix/malwares.js +2 -0
- data/app/assets/javascripts/active_stix/marking_definitions.js +2 -0
- data/app/assets/javascripts/active_stix/observed_data.js +2 -0
- data/app/assets/javascripts/active_stix/open_vocabularies.js +2 -0
- data/app/assets/javascripts/active_stix/phases.js +2 -0
- data/app/assets/javascripts/active_stix/recipients.js +2 -0
- data/app/assets/javascripts/active_stix/relationships.js +2 -0
- data/app/assets/javascripts/active_stix/reports.js +2 -0
- data/app/assets/javascripts/active_stix/threat_actors.js +2 -0
- data/app/assets/javascripts/active_stix/tools.js +2 -0
- data/app/assets/javascripts/active_stix/urls.js +2 -0
- data/app/assets/javascripts/active_stix/users.js +2 -0
- data/app/assets/stylesheets/active_stix/application.css +15 -0
- data/app/assets/stylesheets/active_stix/artifacts.css +4 -0
- data/app/assets/stylesheets/active_stix/attack_patterns.css +4 -0
- data/app/assets/stylesheets/active_stix/bcc_refs.css +4 -0
- data/app/assets/stylesheets/active_stix/bundled_objects.css +4 -0
- data/app/assets/stylesheets/active_stix/bundles.css +4 -0
- data/app/assets/stylesheets/active_stix/campaigns.css +4 -0
- data/app/assets/stylesheets/active_stix/course_of_actions.css +4 -0
- data/app/assets/stylesheets/active_stix/cyber_observables.css +4 -0
- data/app/assets/stylesheets/active_stix/email_messages.css +4 -0
- data/app/assets/stylesheets/active_stix/external_references.css +4 -0
- data/app/assets/stylesheets/active_stix/files.css +4 -0
- data/app/assets/stylesheets/active_stix/identities.css +4 -0
- data/app/assets/stylesheets/active_stix/indicator_labels.css +4 -0
- data/app/assets/stylesheets/active_stix/indicators.css +4 -0
- data/app/assets/stylesheets/active_stix/intrusion_sets.css +4 -0
- data/app/assets/stylesheets/active_stix/kill_chain_phases.css +4 -0
- data/app/assets/stylesheets/active_stix/kill_chains.css +4 -0
- data/app/assets/stylesheets/active_stix/malwares.css +4 -0
- data/app/assets/stylesheets/active_stix/marking_definitions.css +4 -0
- data/app/assets/stylesheets/active_stix/observed_data.css +4 -0
- data/app/assets/stylesheets/active_stix/open_vocabularies.css +4 -0
- data/app/assets/stylesheets/active_stix/phases.css +4 -0
- data/app/assets/stylesheets/active_stix/recipients.css +4 -0
- data/app/assets/stylesheets/active_stix/relationships.css +4 -0
- data/app/assets/stylesheets/active_stix/reports.css +4 -0
- data/app/assets/stylesheets/active_stix/threat_actors.css +4 -0
- data/app/assets/stylesheets/active_stix/tools.css +4 -0
- data/app/assets/stylesheets/active_stix/urls.css +4 -0
- data/app/assets/stylesheets/active_stix/users.css +4 -0
- data/app/assets/stylesheets/scaffold.css +80 -0
- data/app/controllers/active_stix/application_controller.rb +5 -0
- data/app/controllers/active_stix/artifacts_controller.rb +62 -0
- data/app/controllers/active_stix/attack_patterns_controller.rb +27 -0
- data/app/controllers/active_stix/bcc_refs_controller.rb +62 -0
- data/app/controllers/active_stix/bundled_objects_controller.rb +62 -0
- data/app/controllers/active_stix/bundles_controller.rb +11 -0
- data/app/controllers/active_stix/campaigns_controller.rb +74 -0
- data/app/controllers/active_stix/course_of_actions_controller.rb +62 -0
- data/app/controllers/active_stix/cyber_observables_controller.rb +62 -0
- data/app/controllers/active_stix/email_addresses_controller.rb +74 -0
- data/app/controllers/active_stix/email_messages_controller.rb +26 -0
- data/app/controllers/active_stix/external_references_controller.rb +62 -0
- data/app/controllers/active_stix/files_controller.rb +74 -0
- data/app/controllers/active_stix/identities_controller.rb +128 -0
- data/app/controllers/active_stix/indicator_labels_controller.rb +62 -0
- data/app/controllers/active_stix/indicators_controller.rb +62 -0
- data/app/controllers/active_stix/intrusion_sets_controller.rb +62 -0
- data/app/controllers/active_stix/kill_chain_phases_controller.rb +62 -0
- data/app/controllers/active_stix/kill_chains_controller.rb +62 -0
- data/app/controllers/active_stix/malwares_controller.rb +62 -0
- data/app/controllers/active_stix/marking_definitions_controller.rb +62 -0
- data/app/controllers/active_stix/observed_data_controller.rb +62 -0
- data/app/controllers/active_stix/open_vocabularies_controller.rb +62 -0
- data/app/controllers/active_stix/phases_controller.rb +62 -0
- data/app/controllers/active_stix/recipients_controller.rb +62 -0
- data/app/controllers/active_stix/relationships_controller.rb +62 -0
- data/app/controllers/active_stix/reports_controller.rb +62 -0
- data/app/controllers/active_stix/threat_actors_controller.rb +75 -0
- data/app/controllers/active_stix/tools_controller.rb +62 -0
- data/app/controllers/active_stix/urls_controller.rb +62 -0
- data/app/controllers/active_stix/user_accounts_controller.rb +74 -0
- data/app/controllers/active_stix/users_controller.rb +62 -0
- data/app/helpers/active_stix/application_helper.rb +4 -0
- data/app/helpers/active_stix/artifacts_helper.rb +4 -0
- data/app/helpers/active_stix/attack_patterns_helper.rb +4 -0
- data/app/helpers/active_stix/bcc_refs_helper.rb +4 -0
- data/app/helpers/active_stix/bundled_objects_helper.rb +4 -0
- data/app/helpers/active_stix/bundles_helper.rb +4 -0
- data/app/helpers/active_stix/campaigns_helper.rb +4 -0
- data/app/helpers/active_stix/course_of_actions_helper.rb +4 -0
- data/app/helpers/active_stix/cyber_observables_helper.rb +4 -0
- data/app/helpers/active_stix/email_messages_helper.rb +4 -0
- data/app/helpers/active_stix/external_references_helper.rb +4 -0
- data/app/helpers/active_stix/files_helper.rb +4 -0
- data/app/helpers/active_stix/identities_helper.rb +4 -0
- data/app/helpers/active_stix/indicator_labels_helper.rb +4 -0
- data/app/helpers/active_stix/indicators_helper.rb +4 -0
- data/app/helpers/active_stix/intrusion_sets_helper.rb +4 -0
- data/app/helpers/active_stix/kill_chain_phases_helper.rb +4 -0
- data/app/helpers/active_stix/kill_chains_helper.rb +4 -0
- data/app/helpers/active_stix/malwares_helper.rb +4 -0
- data/app/helpers/active_stix/marking_definitions_helper.rb +4 -0
- data/app/helpers/active_stix/observed_data_helper.rb +4 -0
- data/app/helpers/active_stix/open_vocabularies_helper.rb +4 -0
- data/app/helpers/active_stix/phases_helper.rb +4 -0
- data/app/helpers/active_stix/recipients_helper.rb +4 -0
- data/app/helpers/active_stix/relationships_helper.rb +4 -0
- data/app/helpers/active_stix/reports_helper.rb +4 -0
- data/app/helpers/active_stix/threat_actors_helper.rb +4 -0
- data/app/helpers/active_stix/tools_helper.rb +4 -0
- data/app/helpers/active_stix/urls_helper.rb +4 -0
- data/app/helpers/active_stix/users_helper.rb +4 -0
- data/app/jobs/active_stix/application_job.rb +4 -0
- data/app/mailers/active_stix/application_mailer.rb +6 -0
- data/app/models/active_stix/application_record.rb +5 -0
- data/app/models/active_stix/artifact.rb +23 -0
- data/app/models/active_stix/attack_pattern.rb +150 -0
- data/app/models/active_stix/bcc_ref.rb +6 -0
- data/app/models/active_stix/bundle.rb +108 -0
- data/app/models/active_stix/bundled_object.rb +4 -0
- data/app/models/active_stix/campaign.rb +65 -0
- data/app/models/active_stix/cc_ref.rb +6 -0
- data/app/models/active_stix/course_of_action.rb +54 -0
- data/app/models/active_stix/cyber_observable.rb +4 -0
- data/app/models/active_stix/email_address.rb +27 -0
- data/app/models/active_stix/email_message.rb +339 -0
- data/app/models/active_stix/external_reference.rb +48 -0
- data/app/models/active_stix/file.rb +2 -0
- data/app/models/active_stix/identity.rb +141 -0
- data/app/models/active_stix/indicator.rb +58 -0
- data/app/models/active_stix/indicator_label.rb +4 -0
- data/app/models/active_stix/intrusion_set.rb +69 -0
- data/app/models/active_stix/kill_chain.rb +7 -0
- data/app/models/active_stix/kill_chain_phase.rb +6 -0
- data/app/models/active_stix/label.rb +17 -0
- data/app/models/active_stix/label_malware.rb +4 -0
- data/app/models/active_stix/label_report.rb +4 -0
- data/app/models/active_stix/label_tool.rb +4 -0
- data/app/models/active_stix/malware.rb +98 -0
- data/app/models/active_stix/marking_definition.rb +21 -0
- data/app/models/active_stix/markup.rb +6 -0
- data/app/models/active_stix/object_marking.rb +11 -0
- data/app/models/active_stix/observed_datum.rb +67 -0
- data/app/models/active_stix/open_vocabulary.rb +8 -0
- data/app/models/active_stix/phase.rb +41 -0
- data/app/models/active_stix/recipient.rb +4 -0
- data/app/models/active_stix/reference_item.rb +4 -0
- data/app/models/active_stix/relationship.rb +95 -0
- data/app/models/active_stix/report.rb +93 -0
- data/app/models/active_stix/report_object.rb +9 -0
- data/app/models/active_stix/threat_actor.rb +139 -0
- data/app/models/active_stix/to_ref.rb +6 -0
- data/app/models/active_stix/tool.rb +112 -0
- data/app/models/active_stix/url.rb +15 -0
- data/app/models/active_stix/user.rb +4 -0
- data/app/models/active_stix/user_account.rb +3 -0
- data/app/views/active_stix/artifacts/_form.html.erb +57 -0
- data/app/views/active_stix/artifacts/edit.html.erb +6 -0
- data/app/views/active_stix/artifacts/index.html.erb +41 -0
- data/app/views/active_stix/artifacts/new.html.erb +5 -0
- data/app/views/active_stix/artifacts/show.html.erb +44 -0
- data/app/views/active_stix/attack_patterns/_form.html.erb +37 -0
- data/app/views/active_stix/attack_patterns/edit.html.erb +2 -0
- data/app/views/active_stix/attack_patterns/index.html.erb +2 -0
- data/app/views/active_stix/attack_patterns/new.html.erb +2 -0
- data/app/views/active_stix/attack_patterns/show.html.erb +140 -0
- data/app/views/active_stix/bcc_refs/_form.html.erb +27 -0
- data/app/views/active_stix/bcc_refs/edit.html.erb +6 -0
- data/app/views/active_stix/bcc_refs/index.html.erb +29 -0
- data/app/views/active_stix/bcc_refs/new.html.erb +5 -0
- data/app/views/active_stix/bcc_refs/show.html.erb +14 -0
- data/app/views/active_stix/bundles/index.html.erb +1 -0
- data/app/views/active_stix/bundles/show.html.erb +7 -0
- data/app/views/active_stix/campaigns/_form.html.erb +42 -0
- data/app/views/active_stix/campaigns/_stix_campaign.json.jbuilder +2 -0
- data/app/views/active_stix/campaigns/edit.html.erb +6 -0
- data/app/views/active_stix/campaigns/index.html.erb +35 -0
- data/app/views/active_stix/campaigns/index.json.jbuilder +1 -0
- data/app/views/active_stix/campaigns/new.html.erb +5 -0
- data/app/views/active_stix/campaigns/show.html.erb +29 -0
- data/app/views/active_stix/campaigns/show.json.jbuilder +1 -0
- data/app/views/active_stix/email_messages/_form.html.erb +62 -0
- data/app/views/active_stix/email_messages/_stix_email_message.json.jbuilder +2 -0
- data/app/views/active_stix/email_messages/edit.html.erb +6 -0
- data/app/views/active_stix/email_messages/index.html.erb +43 -0
- data/app/views/active_stix/email_messages/index.json.jbuilder +1 -0
- data/app/views/active_stix/email_messages/new.html.erb +5 -0
- data/app/views/active_stix/email_messages/show.html.erb +165 -0
- data/app/views/active_stix/email_messages/show.json.jbuilder +1 -0
- data/app/views/active_stix/files/_form.html.erb +92 -0
- data/app/views/active_stix/files/_stix_file.json.jbuilder +2 -0
- data/app/views/active_stix/files/edit.html.erb +6 -0
- data/app/views/active_stix/files/index.html.erb +55 -0
- data/app/views/active_stix/files/index.json.jbuilder +1 -0
- data/app/views/active_stix/files/new.html.erb +5 -0
- data/app/views/active_stix/files/show.html.erb +79 -0
- data/app/views/active_stix/files/show.json.jbuilder +1 -0
- data/app/views/active_stix/identities/_form.html.erb +27 -0
- data/app/views/active_stix/identities/_individual.html.erb +100 -0
- data/app/views/active_stix/identities/_organization.html.erb +72 -0
- data/app/views/active_stix/identities/_received_email_messages.html.erb +27 -0
- data/app/views/active_stix/identities/_sent_email_messages.html.erb +27 -0
- data/app/views/active_stix/identities/_threat_icons.html.erb +3 -0
- data/app/views/active_stix/identities/edit.html.erb +2 -0
- data/app/views/active_stix/identities/index.html.erb +37 -0
- data/app/views/active_stix/identities/new.html.erb +5 -0
- data/app/views/active_stix/identities/show.html.erb +15 -0
- data/app/views/active_stix/layouts/active_stix/application.html.erb +16 -0
- data/app/views/active_stix/recipients/_form.html.erb +27 -0
- data/app/views/active_stix/recipients/edit.html.erb +6 -0
- data/app/views/active_stix/recipients/index.html.erb +29 -0
- data/app/views/active_stix/recipients/new.html.erb +5 -0
- data/app/views/active_stix/recipients/show.html.erb +14 -0
- data/app/views/active_stix/threat_actors/_form.html.erb +32 -0
- data/app/views/active_stix/threat_actors/_stix_threat_actor.json.jbuilder +2 -0
- data/app/views/active_stix/threat_actors/edit.html.erb +6 -0
- data/app/views/active_stix/threat_actors/flags.html.erb +184 -0
- data/app/views/active_stix/threat_actors/index.html.erb +26 -0
- data/app/views/active_stix/threat_actors/index.json.jbuilder +1 -0
- data/app/views/active_stix/threat_actors/new.html.erb +5 -0
- data/app/views/active_stix/threat_actors/show.html.erb +4 -0
- data/app/views/active_stix/threat_actors/show.json.jbuilder +1 -0
- data/app/views/layouts/active_stix/application.html.erb +16 -0
- data/config/routes.rb +39 -0
- data/db/migrate/20191204200025_create_active_stix_bundled_objects.rb +11 -0
- data/db/migrate/20191204213707_create_active_stix_bundles.rb +10 -0
- data/db/migrate/20191204213802_create_active_stix_campaigns.rb +15 -0
- data/db/migrate/20191204213926_create_active_stix_course_of_actions.rb +12 -0
- data/db/migrate/20191204214020_create_active_stix_cyber_observables.rb +11 -0
- data/db/migrate/20191204214955_create_active_stix_email_messages.rb +20 -0
- data/db/migrate/20191204215029_create_active_stix_external_references.rb +12 -0
- data/db/migrate/20191204215302_create_active_stix_files.rb +23 -0
- data/db/migrate/20191204215419_create_active_stix_identities.rb +13 -0
- data/db/migrate/20191204215542_create_active_stix_indicator_labels.rb +10 -0
- data/db/migrate/20191204215637_create_active_stix_indicators.rb +16 -0
- data/db/migrate/20191204215849_create_active_stix_intrusion_sets.rb +15 -0
- data/db/migrate/20191204215929_create_active_stix_kill_chain_phases.rb +10 -0
- data/db/migrate/20191204215951_create_active_stix_kill_chains.rb +9 -0
- data/db/migrate/20191204220149_create_active_stix_malwares.rb +12 -0
- data/db/migrate/20191204220539_create_active_stix_marking_definitions.rb +12 -0
- data/db/migrate/20191204220853_create_active_stix_observed_data.rb +12 -0
- data/db/migrate/20191204220917_create_active_stix_open_vocabularies.rb +9 -0
- data/db/migrate/20191204220952_create_active_stix_phases.rb +11 -0
- data/db/migrate/20191204221129_create_active_stix_recipients.rb +10 -0
- data/db/migrate/20191204221227_create_active_stix_relationships.rb +16 -0
- data/db/migrate/20191204221323_create_active_stix_report_objects.rb +11 -0
- data/db/migrate/20191204221359_create_active_stix_reports.rb +14 -0
- data/db/migrate/20191204221425_create_active_stix_threat_actors.rb +11 -0
- data/db/migrate/20191204221454_create_active_stix_tools.rb +12 -0
- data/db/migrate/20191204221639_create_active_stix_urls.rb +9 -0
- data/db/migrate/20191204221849_create_active_stix_users.rb +22 -0
- data/db/migrate/20191205182234_create_active_stix_bcc_refs.rb +10 -0
- data/db/migrate/20191205182255_create_active_stix_cc_refs.rb +10 -0
- data/db/migrate/20191205182316_create_active_stix_to_refs.rb +10 -0
- data/db/migrate/20191212203611_add_spec_version_to_bundles.rb +5 -0
- data/db/migrate/20191212215136_create_active_stix_attack_patterns.rb +12 -0
- data/db/migrate/20191212220222_create_active_stix_reference_items.rb +11 -0
- data/db/migrate/20191213135204_create_active_stix_labels.rb +10 -0
- data/db/migrate/20191213140951_create_active_stix_markups.rb +11 -0
- data/db/migrate/20191221210537_fix_observed_data.rb +6 -0
- data/db/migrate/20191221223602_create_active_stix_artifacts.rb +16 -0
- data/db/migrate/20191223075550_change_artifact_ref_to_string.rb +5 -0
- data/db/migrate/20191223154000_add_stix_id_to_email_messages.rb +5 -0
- data/db/migrate/20200114162245_add_labels_to_active_stix_identities.rb +5 -0
- data/db/migrate/20200404223006_add_aliases_to_tools.rb +5 -0
- data/db/migrate/20200404223047_add_aliases_to_attack_patterns.rb +5 -0
- data/db/migrate/20200404223158_add_aliases_to_malwares.rb +5 -0
- data/db/migrate/20200404223210_add_aliases_to_threat_actors.rb +5 -0
- data/lib/active_stix.rb +8 -0
- data/lib/active_stix/engine.rb +13 -0
- data/lib/active_stix/version.rb +3 -0
- data/lib/tasks/active_stix_tasks.rake +4 -0
- metadata +358 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
class CreateActiveStixUsers < ActiveRecord::Migration[5.2]
|
|
2
|
+
def change
|
|
3
|
+
create_table :active_stix_users do |t|
|
|
4
|
+
t.string :account
|
|
5
|
+
t.string :user_id
|
|
6
|
+
t.string :account_login
|
|
7
|
+
t.string :account_type
|
|
8
|
+
t.string :display_name
|
|
9
|
+
t.boolean :is_service_account
|
|
10
|
+
t.boolean :is_privileged
|
|
11
|
+
t.boolean :can_escalate_privs
|
|
12
|
+
t.boolean :is_disabled
|
|
13
|
+
t.datetime :account_created
|
|
14
|
+
t.datetime :account_expires
|
|
15
|
+
t.datetime :password_last_changed
|
|
16
|
+
t.datetime :account_first_login
|
|
17
|
+
t.datetime :account_last_login
|
|
18
|
+
|
|
19
|
+
t.timestamps
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
class CreateActiveStixAttackPatterns < ActiveRecord::Migration[5.2]
|
|
2
|
+
def change
|
|
3
|
+
create_table :active_stix_attack_patterns do |t|
|
|
4
|
+
t.string :name
|
|
5
|
+
t.text :description
|
|
6
|
+
t.jsonb :kill_chain_phases
|
|
7
|
+
t.string :stix_id
|
|
8
|
+
|
|
9
|
+
t.timestamps
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
class CreateActiveStixArtifacts < ActiveRecord::Migration[5.2]
|
|
2
|
+
def change
|
|
3
|
+
create_table :active_stix_artifacts do |t|
|
|
4
|
+
t.string :stix_id
|
|
5
|
+
t.string :type
|
|
6
|
+
t.string :mime_type
|
|
7
|
+
t.binary :payload_bin
|
|
8
|
+
t.string :url
|
|
9
|
+
t.jsonb :hashes
|
|
10
|
+
t.jsonb :encryption_algorithm
|
|
11
|
+
t.string :decryption_key
|
|
12
|
+
|
|
13
|
+
t.timestamps
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
data/lib/active_stix.rb
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
module ActiveStix
|
|
2
|
+
class Engine < ::Rails::Engine
|
|
3
|
+
isolate_namespace ActiveStix
|
|
4
|
+
|
|
5
|
+
initializer :append_migrations do |app|
|
|
6
|
+
unless app.root.to_s.match root.to_s
|
|
7
|
+
config.paths["db/migrate"].expanded.each do |expanded_path|
|
|
8
|
+
app.config.paths["db/migrate"] << expanded_path
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,358 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: active_stix
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.21
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Adam Dalton
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2020-04-11 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rails
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 6.0.2
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 6.0.2
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: pg
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
description: A mountable engine for STIX 2.0 in Rails.
|
|
42
|
+
email:
|
|
43
|
+
- adalton@ihmc.us
|
|
44
|
+
executables: []
|
|
45
|
+
extensions: []
|
|
46
|
+
extra_rdoc_files: []
|
|
47
|
+
files:
|
|
48
|
+
- MIT-LICENSE
|
|
49
|
+
- README.md
|
|
50
|
+
- Rakefile
|
|
51
|
+
- app/assets/config/active_stix_manifest.js
|
|
52
|
+
- app/assets/javascripts/active_stix/application.js
|
|
53
|
+
- app/assets/javascripts/active_stix/artifacts.js
|
|
54
|
+
- app/assets/javascripts/active_stix/attack_patterns.js
|
|
55
|
+
- app/assets/javascripts/active_stix/bcc_refs.js
|
|
56
|
+
- app/assets/javascripts/active_stix/bundled_objects.js
|
|
57
|
+
- app/assets/javascripts/active_stix/bundles.js
|
|
58
|
+
- app/assets/javascripts/active_stix/campaigns.js
|
|
59
|
+
- app/assets/javascripts/active_stix/course_of_actions.js
|
|
60
|
+
- app/assets/javascripts/active_stix/cyber_observables.js
|
|
61
|
+
- app/assets/javascripts/active_stix/email_messages.js
|
|
62
|
+
- app/assets/javascripts/active_stix/external_references.js
|
|
63
|
+
- app/assets/javascripts/active_stix/files.js
|
|
64
|
+
- app/assets/javascripts/active_stix/identities.js
|
|
65
|
+
- app/assets/javascripts/active_stix/indicator_labels.js
|
|
66
|
+
- app/assets/javascripts/active_stix/indicators.js
|
|
67
|
+
- app/assets/javascripts/active_stix/intrusion_sets.js
|
|
68
|
+
- app/assets/javascripts/active_stix/kill_chain_phases.js
|
|
69
|
+
- app/assets/javascripts/active_stix/kill_chains.js
|
|
70
|
+
- app/assets/javascripts/active_stix/malwares.js
|
|
71
|
+
- app/assets/javascripts/active_stix/marking_definitions.js
|
|
72
|
+
- app/assets/javascripts/active_stix/observed_data.js
|
|
73
|
+
- app/assets/javascripts/active_stix/open_vocabularies.js
|
|
74
|
+
- app/assets/javascripts/active_stix/phases.js
|
|
75
|
+
- app/assets/javascripts/active_stix/recipients.js
|
|
76
|
+
- app/assets/javascripts/active_stix/relationships.js
|
|
77
|
+
- app/assets/javascripts/active_stix/reports.js
|
|
78
|
+
- app/assets/javascripts/active_stix/threat_actors.js
|
|
79
|
+
- app/assets/javascripts/active_stix/tools.js
|
|
80
|
+
- app/assets/javascripts/active_stix/urls.js
|
|
81
|
+
- app/assets/javascripts/active_stix/users.js
|
|
82
|
+
- app/assets/stylesheets/active_stix/application.css
|
|
83
|
+
- app/assets/stylesheets/active_stix/artifacts.css
|
|
84
|
+
- app/assets/stylesheets/active_stix/attack_patterns.css
|
|
85
|
+
- app/assets/stylesheets/active_stix/bcc_refs.css
|
|
86
|
+
- app/assets/stylesheets/active_stix/bundled_objects.css
|
|
87
|
+
- app/assets/stylesheets/active_stix/bundles.css
|
|
88
|
+
- app/assets/stylesheets/active_stix/campaigns.css
|
|
89
|
+
- app/assets/stylesheets/active_stix/course_of_actions.css
|
|
90
|
+
- app/assets/stylesheets/active_stix/cyber_observables.css
|
|
91
|
+
- app/assets/stylesheets/active_stix/email_messages.css
|
|
92
|
+
- app/assets/stylesheets/active_stix/external_references.css
|
|
93
|
+
- app/assets/stylesheets/active_stix/files.css
|
|
94
|
+
- app/assets/stylesheets/active_stix/identities.css
|
|
95
|
+
- app/assets/stylesheets/active_stix/indicator_labels.css
|
|
96
|
+
- app/assets/stylesheets/active_stix/indicators.css
|
|
97
|
+
- app/assets/stylesheets/active_stix/intrusion_sets.css
|
|
98
|
+
- app/assets/stylesheets/active_stix/kill_chain_phases.css
|
|
99
|
+
- app/assets/stylesheets/active_stix/kill_chains.css
|
|
100
|
+
- app/assets/stylesheets/active_stix/malwares.css
|
|
101
|
+
- app/assets/stylesheets/active_stix/marking_definitions.css
|
|
102
|
+
- app/assets/stylesheets/active_stix/observed_data.css
|
|
103
|
+
- app/assets/stylesheets/active_stix/open_vocabularies.css
|
|
104
|
+
- app/assets/stylesheets/active_stix/phases.css
|
|
105
|
+
- app/assets/stylesheets/active_stix/recipients.css
|
|
106
|
+
- app/assets/stylesheets/active_stix/relationships.css
|
|
107
|
+
- app/assets/stylesheets/active_stix/reports.css
|
|
108
|
+
- app/assets/stylesheets/active_stix/threat_actors.css
|
|
109
|
+
- app/assets/stylesheets/active_stix/tools.css
|
|
110
|
+
- app/assets/stylesheets/active_stix/urls.css
|
|
111
|
+
- app/assets/stylesheets/active_stix/users.css
|
|
112
|
+
- app/assets/stylesheets/scaffold.css
|
|
113
|
+
- app/controllers/active_stix/application_controller.rb
|
|
114
|
+
- app/controllers/active_stix/artifacts_controller.rb
|
|
115
|
+
- app/controllers/active_stix/attack_patterns_controller.rb
|
|
116
|
+
- app/controllers/active_stix/bcc_refs_controller.rb
|
|
117
|
+
- app/controllers/active_stix/bundled_objects_controller.rb
|
|
118
|
+
- app/controllers/active_stix/bundles_controller.rb
|
|
119
|
+
- app/controllers/active_stix/campaigns_controller.rb
|
|
120
|
+
- app/controllers/active_stix/course_of_actions_controller.rb
|
|
121
|
+
- app/controllers/active_stix/cyber_observables_controller.rb
|
|
122
|
+
- app/controllers/active_stix/email_addresses_controller.rb
|
|
123
|
+
- app/controllers/active_stix/email_messages_controller.rb
|
|
124
|
+
- app/controllers/active_stix/external_references_controller.rb
|
|
125
|
+
- app/controllers/active_stix/files_controller.rb
|
|
126
|
+
- app/controllers/active_stix/identities_controller.rb
|
|
127
|
+
- app/controllers/active_stix/indicator_labels_controller.rb
|
|
128
|
+
- app/controllers/active_stix/indicators_controller.rb
|
|
129
|
+
- app/controllers/active_stix/intrusion_sets_controller.rb
|
|
130
|
+
- app/controllers/active_stix/kill_chain_phases_controller.rb
|
|
131
|
+
- app/controllers/active_stix/kill_chains_controller.rb
|
|
132
|
+
- app/controllers/active_stix/malwares_controller.rb
|
|
133
|
+
- app/controllers/active_stix/marking_definitions_controller.rb
|
|
134
|
+
- app/controllers/active_stix/observed_data_controller.rb
|
|
135
|
+
- app/controllers/active_stix/open_vocabularies_controller.rb
|
|
136
|
+
- app/controllers/active_stix/phases_controller.rb
|
|
137
|
+
- app/controllers/active_stix/recipients_controller.rb
|
|
138
|
+
- app/controllers/active_stix/relationships_controller.rb
|
|
139
|
+
- app/controllers/active_stix/reports_controller.rb
|
|
140
|
+
- app/controllers/active_stix/threat_actors_controller.rb
|
|
141
|
+
- app/controllers/active_stix/tools_controller.rb
|
|
142
|
+
- app/controllers/active_stix/urls_controller.rb
|
|
143
|
+
- app/controllers/active_stix/user_accounts_controller.rb
|
|
144
|
+
- app/controllers/active_stix/users_controller.rb
|
|
145
|
+
- app/helpers/active_stix/application_helper.rb
|
|
146
|
+
- app/helpers/active_stix/artifacts_helper.rb
|
|
147
|
+
- app/helpers/active_stix/attack_patterns_helper.rb
|
|
148
|
+
- app/helpers/active_stix/bcc_refs_helper.rb
|
|
149
|
+
- app/helpers/active_stix/bundled_objects_helper.rb
|
|
150
|
+
- app/helpers/active_stix/bundles_helper.rb
|
|
151
|
+
- app/helpers/active_stix/campaigns_helper.rb
|
|
152
|
+
- app/helpers/active_stix/course_of_actions_helper.rb
|
|
153
|
+
- app/helpers/active_stix/cyber_observables_helper.rb
|
|
154
|
+
- app/helpers/active_stix/email_messages_helper.rb
|
|
155
|
+
- app/helpers/active_stix/external_references_helper.rb
|
|
156
|
+
- app/helpers/active_stix/files_helper.rb
|
|
157
|
+
- app/helpers/active_stix/identities_helper.rb
|
|
158
|
+
- app/helpers/active_stix/indicator_labels_helper.rb
|
|
159
|
+
- app/helpers/active_stix/indicators_helper.rb
|
|
160
|
+
- app/helpers/active_stix/intrusion_sets_helper.rb
|
|
161
|
+
- app/helpers/active_stix/kill_chain_phases_helper.rb
|
|
162
|
+
- app/helpers/active_stix/kill_chains_helper.rb
|
|
163
|
+
- app/helpers/active_stix/malwares_helper.rb
|
|
164
|
+
- app/helpers/active_stix/marking_definitions_helper.rb
|
|
165
|
+
- app/helpers/active_stix/observed_data_helper.rb
|
|
166
|
+
- app/helpers/active_stix/open_vocabularies_helper.rb
|
|
167
|
+
- app/helpers/active_stix/phases_helper.rb
|
|
168
|
+
- app/helpers/active_stix/recipients_helper.rb
|
|
169
|
+
- app/helpers/active_stix/relationships_helper.rb
|
|
170
|
+
- app/helpers/active_stix/reports_helper.rb
|
|
171
|
+
- app/helpers/active_stix/threat_actors_helper.rb
|
|
172
|
+
- app/helpers/active_stix/tools_helper.rb
|
|
173
|
+
- app/helpers/active_stix/urls_helper.rb
|
|
174
|
+
- app/helpers/active_stix/users_helper.rb
|
|
175
|
+
- app/jobs/active_stix/application_job.rb
|
|
176
|
+
- app/mailers/active_stix/application_mailer.rb
|
|
177
|
+
- app/models/active_stix/application_record.rb
|
|
178
|
+
- app/models/active_stix/artifact.rb
|
|
179
|
+
- app/models/active_stix/attack_pattern.rb
|
|
180
|
+
- app/models/active_stix/bcc_ref.rb
|
|
181
|
+
- app/models/active_stix/bundle.rb
|
|
182
|
+
- app/models/active_stix/bundled_object.rb
|
|
183
|
+
- app/models/active_stix/campaign.rb
|
|
184
|
+
- app/models/active_stix/cc_ref.rb
|
|
185
|
+
- app/models/active_stix/course_of_action.rb
|
|
186
|
+
- app/models/active_stix/cyber_observable.rb
|
|
187
|
+
- app/models/active_stix/email_address.rb
|
|
188
|
+
- app/models/active_stix/email_message.rb
|
|
189
|
+
- app/models/active_stix/external_reference.rb
|
|
190
|
+
- app/models/active_stix/file.rb
|
|
191
|
+
- app/models/active_stix/identity.rb
|
|
192
|
+
- app/models/active_stix/indicator.rb
|
|
193
|
+
- app/models/active_stix/indicator_label.rb
|
|
194
|
+
- app/models/active_stix/intrusion_set.rb
|
|
195
|
+
- app/models/active_stix/kill_chain.rb
|
|
196
|
+
- app/models/active_stix/kill_chain_phase.rb
|
|
197
|
+
- app/models/active_stix/label.rb
|
|
198
|
+
- app/models/active_stix/label_malware.rb
|
|
199
|
+
- app/models/active_stix/label_report.rb
|
|
200
|
+
- app/models/active_stix/label_tool.rb
|
|
201
|
+
- app/models/active_stix/malware.rb
|
|
202
|
+
- app/models/active_stix/marking_definition.rb
|
|
203
|
+
- app/models/active_stix/markup.rb
|
|
204
|
+
- app/models/active_stix/object_marking.rb
|
|
205
|
+
- app/models/active_stix/observed_datum.rb
|
|
206
|
+
- app/models/active_stix/open_vocabulary.rb
|
|
207
|
+
- app/models/active_stix/phase.rb
|
|
208
|
+
- app/models/active_stix/recipient.rb
|
|
209
|
+
- app/models/active_stix/reference_item.rb
|
|
210
|
+
- app/models/active_stix/relationship.rb
|
|
211
|
+
- app/models/active_stix/report.rb
|
|
212
|
+
- app/models/active_stix/report_object.rb
|
|
213
|
+
- app/models/active_stix/threat_actor.rb
|
|
214
|
+
- app/models/active_stix/to_ref.rb
|
|
215
|
+
- app/models/active_stix/tool.rb
|
|
216
|
+
- app/models/active_stix/url.rb
|
|
217
|
+
- app/models/active_stix/user.rb
|
|
218
|
+
- app/models/active_stix/user_account.rb
|
|
219
|
+
- app/views/active_stix/artifacts/_form.html.erb
|
|
220
|
+
- app/views/active_stix/artifacts/edit.html.erb
|
|
221
|
+
- app/views/active_stix/artifacts/index.html.erb
|
|
222
|
+
- app/views/active_stix/artifacts/new.html.erb
|
|
223
|
+
- app/views/active_stix/artifacts/show.html.erb
|
|
224
|
+
- app/views/active_stix/attack_patterns/_form.html.erb
|
|
225
|
+
- app/views/active_stix/attack_patterns/edit.html.erb
|
|
226
|
+
- app/views/active_stix/attack_patterns/index.html.erb
|
|
227
|
+
- app/views/active_stix/attack_patterns/new.html.erb
|
|
228
|
+
- app/views/active_stix/attack_patterns/show.html.erb
|
|
229
|
+
- app/views/active_stix/bcc_refs/_form.html.erb
|
|
230
|
+
- app/views/active_stix/bcc_refs/edit.html.erb
|
|
231
|
+
- app/views/active_stix/bcc_refs/index.html.erb
|
|
232
|
+
- app/views/active_stix/bcc_refs/new.html.erb
|
|
233
|
+
- app/views/active_stix/bcc_refs/show.html.erb
|
|
234
|
+
- app/views/active_stix/bundles/index.html.erb
|
|
235
|
+
- app/views/active_stix/bundles/show.html.erb
|
|
236
|
+
- app/views/active_stix/campaigns/_form.html.erb
|
|
237
|
+
- app/views/active_stix/campaigns/_stix_campaign.json.jbuilder
|
|
238
|
+
- app/views/active_stix/campaigns/edit.html.erb
|
|
239
|
+
- app/views/active_stix/campaigns/index.html.erb
|
|
240
|
+
- app/views/active_stix/campaigns/index.json.jbuilder
|
|
241
|
+
- app/views/active_stix/campaigns/new.html.erb
|
|
242
|
+
- app/views/active_stix/campaigns/show.html.erb
|
|
243
|
+
- app/views/active_stix/campaigns/show.json.jbuilder
|
|
244
|
+
- app/views/active_stix/email_messages/_form.html.erb
|
|
245
|
+
- app/views/active_stix/email_messages/_stix_email_message.json.jbuilder
|
|
246
|
+
- app/views/active_stix/email_messages/edit.html.erb
|
|
247
|
+
- app/views/active_stix/email_messages/index.html.erb
|
|
248
|
+
- app/views/active_stix/email_messages/index.json.jbuilder
|
|
249
|
+
- app/views/active_stix/email_messages/new.html.erb
|
|
250
|
+
- app/views/active_stix/email_messages/show.html.erb
|
|
251
|
+
- app/views/active_stix/email_messages/show.json.jbuilder
|
|
252
|
+
- app/views/active_stix/files/_form.html.erb
|
|
253
|
+
- app/views/active_stix/files/_stix_file.json.jbuilder
|
|
254
|
+
- app/views/active_stix/files/edit.html.erb
|
|
255
|
+
- app/views/active_stix/files/index.html.erb
|
|
256
|
+
- app/views/active_stix/files/index.json.jbuilder
|
|
257
|
+
- app/views/active_stix/files/new.html.erb
|
|
258
|
+
- app/views/active_stix/files/show.html.erb
|
|
259
|
+
- app/views/active_stix/files/show.json.jbuilder
|
|
260
|
+
- app/views/active_stix/identities/_form.html.erb
|
|
261
|
+
- app/views/active_stix/identities/_individual.html.erb
|
|
262
|
+
- app/views/active_stix/identities/_organization.html.erb
|
|
263
|
+
- app/views/active_stix/identities/_received_email_messages.html.erb
|
|
264
|
+
- app/views/active_stix/identities/_sent_email_messages.html.erb
|
|
265
|
+
- app/views/active_stix/identities/_threat_icons.html.erb
|
|
266
|
+
- app/views/active_stix/identities/edit.html.erb
|
|
267
|
+
- app/views/active_stix/identities/index.html.erb
|
|
268
|
+
- app/views/active_stix/identities/new.html.erb
|
|
269
|
+
- app/views/active_stix/identities/show.html.erb
|
|
270
|
+
- app/views/active_stix/layouts/active_stix/application.html.erb
|
|
271
|
+
- app/views/active_stix/recipients/_form.html.erb
|
|
272
|
+
- app/views/active_stix/recipients/edit.html.erb
|
|
273
|
+
- app/views/active_stix/recipients/index.html.erb
|
|
274
|
+
- app/views/active_stix/recipients/new.html.erb
|
|
275
|
+
- app/views/active_stix/recipients/show.html.erb
|
|
276
|
+
- app/views/active_stix/threat_actors/_form.html.erb
|
|
277
|
+
- app/views/active_stix/threat_actors/_stix_threat_actor.json.jbuilder
|
|
278
|
+
- app/views/active_stix/threat_actors/edit.html.erb
|
|
279
|
+
- app/views/active_stix/threat_actors/flags.html.erb
|
|
280
|
+
- app/views/active_stix/threat_actors/index.html.erb
|
|
281
|
+
- app/views/active_stix/threat_actors/index.json.jbuilder
|
|
282
|
+
- app/views/active_stix/threat_actors/new.html.erb
|
|
283
|
+
- app/views/active_stix/threat_actors/show.html.erb
|
|
284
|
+
- app/views/active_stix/threat_actors/show.json.jbuilder
|
|
285
|
+
- app/views/layouts/active_stix/application.html.erb
|
|
286
|
+
- config/routes.rb
|
|
287
|
+
- db/migrate/20191204200025_create_active_stix_bundled_objects.rb
|
|
288
|
+
- db/migrate/20191204213707_create_active_stix_bundles.rb
|
|
289
|
+
- db/migrate/20191204213802_create_active_stix_campaigns.rb
|
|
290
|
+
- db/migrate/20191204213926_create_active_stix_course_of_actions.rb
|
|
291
|
+
- db/migrate/20191204214020_create_active_stix_cyber_observables.rb
|
|
292
|
+
- db/migrate/20191204214955_create_active_stix_email_messages.rb
|
|
293
|
+
- db/migrate/20191204215029_create_active_stix_external_references.rb
|
|
294
|
+
- db/migrate/20191204215302_create_active_stix_files.rb
|
|
295
|
+
- db/migrate/20191204215419_create_active_stix_identities.rb
|
|
296
|
+
- db/migrate/20191204215542_create_active_stix_indicator_labels.rb
|
|
297
|
+
- db/migrate/20191204215637_create_active_stix_indicators.rb
|
|
298
|
+
- db/migrate/20191204215849_create_active_stix_intrusion_sets.rb
|
|
299
|
+
- db/migrate/20191204215929_create_active_stix_kill_chain_phases.rb
|
|
300
|
+
- db/migrate/20191204215951_create_active_stix_kill_chains.rb
|
|
301
|
+
- db/migrate/20191204220149_create_active_stix_malwares.rb
|
|
302
|
+
- db/migrate/20191204220539_create_active_stix_marking_definitions.rb
|
|
303
|
+
- db/migrate/20191204220853_create_active_stix_observed_data.rb
|
|
304
|
+
- db/migrate/20191204220917_create_active_stix_open_vocabularies.rb
|
|
305
|
+
- db/migrate/20191204220952_create_active_stix_phases.rb
|
|
306
|
+
- db/migrate/20191204221129_create_active_stix_recipients.rb
|
|
307
|
+
- db/migrate/20191204221227_create_active_stix_relationships.rb
|
|
308
|
+
- db/migrate/20191204221323_create_active_stix_report_objects.rb
|
|
309
|
+
- db/migrate/20191204221359_create_active_stix_reports.rb
|
|
310
|
+
- db/migrate/20191204221425_create_active_stix_threat_actors.rb
|
|
311
|
+
- db/migrate/20191204221454_create_active_stix_tools.rb
|
|
312
|
+
- db/migrate/20191204221639_create_active_stix_urls.rb
|
|
313
|
+
- db/migrate/20191204221849_create_active_stix_users.rb
|
|
314
|
+
- db/migrate/20191205182234_create_active_stix_bcc_refs.rb
|
|
315
|
+
- db/migrate/20191205182255_create_active_stix_cc_refs.rb
|
|
316
|
+
- db/migrate/20191205182316_create_active_stix_to_refs.rb
|
|
317
|
+
- db/migrate/20191212203611_add_spec_version_to_bundles.rb
|
|
318
|
+
- db/migrate/20191212215136_create_active_stix_attack_patterns.rb
|
|
319
|
+
- db/migrate/20191212220222_create_active_stix_reference_items.rb
|
|
320
|
+
- db/migrate/20191213135204_create_active_stix_labels.rb
|
|
321
|
+
- db/migrate/20191213140951_create_active_stix_markups.rb
|
|
322
|
+
- db/migrate/20191221210537_fix_observed_data.rb
|
|
323
|
+
- db/migrate/20191221223602_create_active_stix_artifacts.rb
|
|
324
|
+
- db/migrate/20191223075550_change_artifact_ref_to_string.rb
|
|
325
|
+
- db/migrate/20191223154000_add_stix_id_to_email_messages.rb
|
|
326
|
+
- db/migrate/20200114162245_add_labels_to_active_stix_identities.rb
|
|
327
|
+
- db/migrate/20200404223006_add_aliases_to_tools.rb
|
|
328
|
+
- db/migrate/20200404223047_add_aliases_to_attack_patterns.rb
|
|
329
|
+
- db/migrate/20200404223158_add_aliases_to_malwares.rb
|
|
330
|
+
- db/migrate/20200404223210_add_aliases_to_threat_actors.rb
|
|
331
|
+
- lib/active_stix.rb
|
|
332
|
+
- lib/active_stix/engine.rb
|
|
333
|
+
- lib/active_stix/version.rb
|
|
334
|
+
- lib/tasks/active_stix_tasks.rake
|
|
335
|
+
homepage: https://github.com/ActiveTarget/ActiveStix
|
|
336
|
+
licenses:
|
|
337
|
+
- MIT
|
|
338
|
+
metadata: {}
|
|
339
|
+
post_install_message:
|
|
340
|
+
rdoc_options: []
|
|
341
|
+
require_paths:
|
|
342
|
+
- lib
|
|
343
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
344
|
+
requirements:
|
|
345
|
+
- - ">="
|
|
346
|
+
- !ruby/object:Gem::Version
|
|
347
|
+
version: '0'
|
|
348
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
349
|
+
requirements:
|
|
350
|
+
- - ">="
|
|
351
|
+
- !ruby/object:Gem::Version
|
|
352
|
+
version: '0'
|
|
353
|
+
requirements: []
|
|
354
|
+
rubygems_version: 3.0.3
|
|
355
|
+
signing_key:
|
|
356
|
+
specification_version: 4
|
|
357
|
+
summary: A mountable engine for STIX 2.0 in Rails.
|
|
358
|
+
test_files: []
|