├── README.md ├── amp4e ├── README.md ├── jsanbowe_AMP-RTC │ ├── .DS_Store │ ├── AMP Remediation.pdf │ ├── README.md │ ├── amp-remediation-v0.99.1.tgz │ └── amp-remediation-v0.99.1 │ │ ├── .DS_Store │ │ ├── _lib_ │ │ ├── Constants.pm │ │ ├── LWP.pm │ │ ├── LWP │ │ │ ├── Protocol │ │ │ │ ├── http.pm │ │ │ │ └── https.pm │ │ │ └── UserAgent.pm │ │ └── Net │ │ │ └── Netmask.pm │ │ ├── amp.pl │ │ └── module.template ├── loxx_AMP-ISE-RTC │ ├── README.md │ ├── RTC-AMP-ISE Script.pptx │ ├── anc_endpoints.json │ ├── anc_labels.json │ ├── debug.log │ ├── get-anc-endpoints.py │ ├── get-anc-labels.py │ ├── logfile.log │ ├── parameters.json │ ├── rest_methods.py │ └── rtc_amp_ise.py ├── neipatel_automatic-triage │ ├── README.md │ ├── automatic_triage.py │ ├── parameters.json │ └── rest_methods.py ├── neipatel_event-stream │ ├── README.md │ ├── amp_api.py │ ├── amp_api.pyc │ ├── amp_event_stream.py │ ├── debug.log │ ├── example_queue.rb │ └── parameters.json └── neipatel_get-events │ ├── README.md │ └── events.py ├── firepower ├── .DS_Store ├── README.md ├── neipatel_day0-setup │ ├── README.md │ ├── connect.py │ ├── connect.pyc │ └── setup.py ├── neipatel_fmc-randomrules │ ├── README.md │ ├── connect.py │ └── setup.py ├── neipatel_securityCenter-HostInput │ ├── .DS_Store │ ├── v0 │ │ ├── InputPlugins │ │ │ ├── README.PluginArchitecture │ │ │ └── csv.pm │ │ ├── README │ │ ├── README.md │ │ ├── ReadMe.docx │ │ ├── SFCheckPreReq.pm │ │ ├── SFHIClient.pm │ │ ├── SFHILog.pm │ │ ├── SFHostInputAgent.pm │ │ ├── SFPkcs12.pm │ │ ├── parameters.json │ │ ├── query_vuln.py │ │ ├── securitycenter │ │ │ ├── LICENSE.txt │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── base.py │ │ │ ├── base.pyc │ │ │ ├── nessus.py │ │ │ ├── nessus.pyc │ │ │ ├── pvs.py │ │ │ ├── pvs.pyc │ │ │ ├── sc4.py │ │ │ ├── sc4.pyc │ │ │ ├── sc5.py │ │ │ └── sc5.pyc │ │ └── sf_host_input_agent.pl │ └── v1 │ │ ├── .DS_Store │ │ ├── InputPlugins │ │ ├── README.PluginArchitecture │ │ └── csv.pm │ │ ├── README.md │ │ ├── ReadMe.docx │ │ ├── SFCheckPreReq.pm │ │ ├── SFHIClient.pm │ │ ├── SFHILog.pm │ │ ├── SFHostInputAgent.pm │ │ ├── SFPkcs12.pm │ │ ├── config.cfg │ │ ├── csvin.txt │ │ ├── csvupdate.txt │ │ ├── import_vuln.py │ │ ├── security_center.py │ │ ├── security_center.pyc │ │ └── sf_host_input_agent.pl └── neipatel_timebasedRules │ ├── README.md │ ├── connect.py │ ├── connect.pyc │ └── setup.py ├── stealthwatch ├── README.md ├── ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch │ ├── README.md │ ├── get-anc-endpoints.py │ ├── get-anc-labels.py │ ├── get-stealthwatch-security-event-list.py │ ├── parameters.json │ ├── rest_methods.py │ └── rtc_stealthwatch_ise.py └── ankanani_Stealthwatch-ISE-RTC_with_Syslog_on_Swatch │ ├── README.md │ ├── rest_methods.py │ └── sw-rtc.py ├── threatgrid ├── README.md ├── bgreenba_TGIFF │ ├── README.md │ ├── TGIFF.cfg │ └── TGIFF.py └── neipatel_tg-intelligence │ ├── README.md │ └── tg-intelligence-feed.py └── umbrella └── README.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/README.md -------------------------------------------------------------------------------- /amp4e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/README.md -------------------------------------------------------------------------------- /amp4e/jsanbowe_AMP-RTC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/jsanbowe_AMP-RTC/.DS_Store -------------------------------------------------------------------------------- /amp4e/jsanbowe_AMP-RTC/AMP Remediation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/jsanbowe_AMP-RTC/AMP Remediation.pdf -------------------------------------------------------------------------------- /amp4e/jsanbowe_AMP-RTC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/jsanbowe_AMP-RTC/README.md -------------------------------------------------------------------------------- /amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1.tgz -------------------------------------------------------------------------------- /amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/.DS_Store -------------------------------------------------------------------------------- /amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/_lib_/Constants.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/_lib_/Constants.pm -------------------------------------------------------------------------------- /amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/_lib_/LWP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/_lib_/LWP.pm -------------------------------------------------------------------------------- /amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/_lib_/LWP/Protocol/http.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/_lib_/LWP/Protocol/http.pm -------------------------------------------------------------------------------- /amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/_lib_/LWP/Protocol/https.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/_lib_/LWP/Protocol/https.pm -------------------------------------------------------------------------------- /amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/_lib_/LWP/UserAgent.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/_lib_/LWP/UserAgent.pm -------------------------------------------------------------------------------- /amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/_lib_/Net/Netmask.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/_lib_/Net/Netmask.pm -------------------------------------------------------------------------------- /amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/amp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/amp.pl -------------------------------------------------------------------------------- /amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/module.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/jsanbowe_AMP-RTC/amp-remediation-v0.99.1/module.template -------------------------------------------------------------------------------- /amp4e/loxx_AMP-ISE-RTC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/loxx_AMP-ISE-RTC/README.md -------------------------------------------------------------------------------- /amp4e/loxx_AMP-ISE-RTC/RTC-AMP-ISE Script.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/loxx_AMP-ISE-RTC/RTC-AMP-ISE Script.pptx -------------------------------------------------------------------------------- /amp4e/loxx_AMP-ISE-RTC/anc_endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/loxx_AMP-ISE-RTC/anc_endpoints.json -------------------------------------------------------------------------------- /amp4e/loxx_AMP-ISE-RTC/anc_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/loxx_AMP-ISE-RTC/anc_labels.json -------------------------------------------------------------------------------- /amp4e/loxx_AMP-ISE-RTC/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/loxx_AMP-ISE-RTC/debug.log -------------------------------------------------------------------------------- /amp4e/loxx_AMP-ISE-RTC/get-anc-endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/loxx_AMP-ISE-RTC/get-anc-endpoints.py -------------------------------------------------------------------------------- /amp4e/loxx_AMP-ISE-RTC/get-anc-labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/loxx_AMP-ISE-RTC/get-anc-labels.py -------------------------------------------------------------------------------- /amp4e/loxx_AMP-ISE-RTC/logfile.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/loxx_AMP-ISE-RTC/logfile.log -------------------------------------------------------------------------------- /amp4e/loxx_AMP-ISE-RTC/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/loxx_AMP-ISE-RTC/parameters.json -------------------------------------------------------------------------------- /amp4e/loxx_AMP-ISE-RTC/rest_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/loxx_AMP-ISE-RTC/rest_methods.py -------------------------------------------------------------------------------- /amp4e/loxx_AMP-ISE-RTC/rtc_amp_ise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/loxx_AMP-ISE-RTC/rtc_amp_ise.py -------------------------------------------------------------------------------- /amp4e/neipatel_automatic-triage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/neipatel_automatic-triage/README.md -------------------------------------------------------------------------------- /amp4e/neipatel_automatic-triage/automatic_triage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/neipatel_automatic-triage/automatic_triage.py -------------------------------------------------------------------------------- /amp4e/neipatel_automatic-triage/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/neipatel_automatic-triage/parameters.json -------------------------------------------------------------------------------- /amp4e/neipatel_automatic-triage/rest_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/neipatel_automatic-triage/rest_methods.py -------------------------------------------------------------------------------- /amp4e/neipatel_event-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/neipatel_event-stream/README.md -------------------------------------------------------------------------------- /amp4e/neipatel_event-stream/amp_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/neipatel_event-stream/amp_api.py -------------------------------------------------------------------------------- /amp4e/neipatel_event-stream/amp_api.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/neipatel_event-stream/amp_api.pyc -------------------------------------------------------------------------------- /amp4e/neipatel_event-stream/amp_event_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/neipatel_event-stream/amp_event_stream.py -------------------------------------------------------------------------------- /amp4e/neipatel_event-stream/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/neipatel_event-stream/debug.log -------------------------------------------------------------------------------- /amp4e/neipatel_event-stream/example_queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/neipatel_event-stream/example_queue.rb -------------------------------------------------------------------------------- /amp4e/neipatel_event-stream/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/neipatel_event-stream/parameters.json -------------------------------------------------------------------------------- /amp4e/neipatel_get-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/neipatel_get-events/README.md -------------------------------------------------------------------------------- /amp4e/neipatel_get-events/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/amp4e/neipatel_get-events/events.py -------------------------------------------------------------------------------- /firepower/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/.DS_Store -------------------------------------------------------------------------------- /firepower/README.md: -------------------------------------------------------------------------------- 1 | API scripts and code for Firepower products 2 | -------------------------------------------------------------------------------- /firepower/neipatel_day0-setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_day0-setup/README.md -------------------------------------------------------------------------------- /firepower/neipatel_day0-setup/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_day0-setup/connect.py -------------------------------------------------------------------------------- /firepower/neipatel_day0-setup/connect.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_day0-setup/connect.pyc -------------------------------------------------------------------------------- /firepower/neipatel_day0-setup/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_day0-setup/setup.py -------------------------------------------------------------------------------- /firepower/neipatel_fmc-randomrules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_fmc-randomrules/README.md -------------------------------------------------------------------------------- /firepower/neipatel_fmc-randomrules/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_fmc-randomrules/connect.py -------------------------------------------------------------------------------- /firepower/neipatel_fmc-randomrules/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_fmc-randomrules/setup.py -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/.DS_Store -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/InputPlugins/README.PluginArchitecture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/InputPlugins/README.PluginArchitecture -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/InputPlugins/csv.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/InputPlugins/csv.pm -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/README -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/README.md -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/ReadMe.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/ReadMe.docx -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/SFCheckPreReq.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/SFCheckPreReq.pm -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/SFHIClient.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/SFHIClient.pm -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/SFHILog.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/SFHILog.pm -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/SFHostInputAgent.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/SFHostInputAgent.pm -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/SFPkcs12.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/SFPkcs12.pm -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/parameters.json -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/query_vuln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/query_vuln.py -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/securitycenter/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/securitycenter/LICENSE.txt -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/securitycenter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/securitycenter/__init__.py -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/securitycenter/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/securitycenter/__init__.pyc -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/securitycenter/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/securitycenter/base.py -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/securitycenter/base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/securitycenter/base.pyc -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/securitycenter/nessus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/securitycenter/nessus.py -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/securitycenter/nessus.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/securitycenter/nessus.pyc -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/securitycenter/pvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/securitycenter/pvs.py -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/securitycenter/pvs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/securitycenter/pvs.pyc -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/securitycenter/sc4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/securitycenter/sc4.py -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/securitycenter/sc4.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/securitycenter/sc4.pyc -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/securitycenter/sc5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/securitycenter/sc5.py -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/securitycenter/sc5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/securitycenter/sc5.pyc -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v0/sf_host_input_agent.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v0/sf_host_input_agent.pl -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/.DS_Store -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/InputPlugins/README.PluginArchitecture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/InputPlugins/README.PluginArchitecture -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/InputPlugins/csv.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/InputPlugins/csv.pm -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/README.md -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/ReadMe.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/ReadMe.docx -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/SFCheckPreReq.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/SFCheckPreReq.pm -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/SFHIClient.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/SFHIClient.pm -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/SFHILog.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/SFHILog.pm -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/SFHostInputAgent.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/SFHostInputAgent.pm -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/SFPkcs12.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/SFPkcs12.pm -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/config.cfg -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/csvin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/csvin.txt -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/csvupdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/csvupdate.txt -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/import_vuln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/import_vuln.py -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/security_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/security_center.py -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/security_center.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/security_center.pyc -------------------------------------------------------------------------------- /firepower/neipatel_securityCenter-HostInput/v1/sf_host_input_agent.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_securityCenter-HostInput/v1/sf_host_input_agent.pl -------------------------------------------------------------------------------- /firepower/neipatel_timebasedRules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_timebasedRules/README.md -------------------------------------------------------------------------------- /firepower/neipatel_timebasedRules/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_timebasedRules/connect.py -------------------------------------------------------------------------------- /firepower/neipatel_timebasedRules/connect.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_timebasedRules/connect.pyc -------------------------------------------------------------------------------- /firepower/neipatel_timebasedRules/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/firepower/neipatel_timebasedRules/setup.py -------------------------------------------------------------------------------- /stealthwatch/README.md: -------------------------------------------------------------------------------- 1 | API scripts and code for Stealthwatch 2 | -------------------------------------------------------------------------------- /stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/README.md -------------------------------------------------------------------------------- /stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/get-anc-endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/get-anc-endpoints.py -------------------------------------------------------------------------------- /stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/get-anc-labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/get-anc-labels.py -------------------------------------------------------------------------------- /stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/get-stealthwatch-security-event-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/get-stealthwatch-security-event-list.py -------------------------------------------------------------------------------- /stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/parameters.json -------------------------------------------------------------------------------- /stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/rest_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/rest_methods.py -------------------------------------------------------------------------------- /stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/rtc_stealthwatch_ise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_REST_API_on_Swatch/rtc_stealthwatch_ise.py -------------------------------------------------------------------------------- /stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_Syslog_on_Swatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_Syslog_on_Swatch/README.md -------------------------------------------------------------------------------- /stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_Syslog_on_Swatch/rest_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_Syslog_on_Swatch/rest_methods.py -------------------------------------------------------------------------------- /stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_Syslog_on_Swatch/sw-rtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/stealthwatch/ankanani_Stealthwatch-ISE-RTC_with_Syslog_on_Swatch/sw-rtc.py -------------------------------------------------------------------------------- /threatgrid/README.md: -------------------------------------------------------------------------------- 1 | API code and scripts for Threat Grid 2 | -------------------------------------------------------------------------------- /threatgrid/bgreenba_TGIFF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/threatgrid/bgreenba_TGIFF/README.md -------------------------------------------------------------------------------- /threatgrid/bgreenba_TGIFF/TGIFF.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/threatgrid/bgreenba_TGIFF/TGIFF.cfg -------------------------------------------------------------------------------- /threatgrid/bgreenba_TGIFF/TGIFF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/threatgrid/bgreenba_TGIFF/TGIFF.py -------------------------------------------------------------------------------- /threatgrid/neipatel_tg-intelligence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/threatgrid/neipatel_tg-intelligence/README.md -------------------------------------------------------------------------------- /threatgrid/neipatel_tg-intelligence/tg-intelligence-feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiLoxx/ATS-APIs/HEAD/threatgrid/neipatel_tg-intelligence/tg-intelligence-feed.py -------------------------------------------------------------------------------- /umbrella/README.md: -------------------------------------------------------------------------------- 1 | API scripts and code for Umbrella 2 | --------------------------------------------------------------------------------