ioccheck
ioccheck copied to clipboard
A tool for simplifying the process of researching IOCs.
`tweepy-4.x` was released a while [back](https://github.com/tweepy/tweepy/releases). Unfortunately is updating not as simple as bumping the dependency. ```bash ImportError while loading conftest '/build/source/test/conftest.py'. test/conftest.py:10: in from ioccheck.iocs import IP, Hash ioccheck/iocs/__init__.py:5:...
This PR addresses issue #66, #68, and #69.
[CI jobs](https://github.com/ranguli/ioccheck/runs/3705178319) are currently failing. ``` Run poetry install Creating virtualenv ioccheck-hyRtOvis-py3.8 in /home/runner/.cache/pypoetry/virtualenvs [RuntimeError] Unable to read the lock file (Unexpected character: 'e' at line 1066 col 25). Error:...
```python def make_text(self) -> Optional[str]: table = [["Vendor", "Behaviour", "Threat"]] for result in self.ioc.behavior: # type: ignore if result.threat is None: continue if result.threat == 1: threat = colored("Neutral", "green")...
Expected behavior is for a `.html` file to be created in the current directory when `--report HTML` is passed as an argument. [This](https://github.com/ranguli/ioccheck/blob/db02d921e2519b77523a200ca2d78417802463db/ioccheck/cli/__init__.py#L125) if statement in `iocheck/cli/__init__.py` fails. ``` if...