Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX: Let modified_pulses_only can be changed #2449

Merged
merged 5 commits into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@
- Minor fixes/improvements and some refactoring (see also above: *Core*...).
- `intelmq.bots.collectors.shadowserver.collector_reports_api`:
- The 'json' option is no longer supported as the 'csv' option provides better performance (PR#2372 by elsif2).
- `intelmq.bots.collectors.alienvault_otx.collector` (PR#2449 by qux-bbb):
qux-bbb marked this conversation as resolved.
Show resolved Hide resolved
- Fix modified_pulses_only is always False.


#### Parsers
- `intelmq.bots.parsers.netlab_360.parser`: Removed as the feed is discontinued. (#2442 by Filip Pokorný)
Expand Down
4 changes: 0 additions & 4 deletions intelmq/bots/collectors/alienvault_otx/collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ def init(self):
if OTXv2 is None:
raise MissingDependencyError("OTXv2")

self.modified_pulses_only = False
if hasattr(self, 'modified_pulses_only'):
self.modified_pulses_only = self.modified_pulses_only

def process(self):
self.logger.info("Downloading report through API.")
otx = OTXv2(self.api_key, proxy=self.https_proxy)
Expand Down
Loading