InQuest / iocextract

Defanged Indicator of Compromise (IOC) Extractor.
https://inquest.readthedocs.io/projects/iocextract/
GNU General Public License v2.0
505 stars 91 forks source link

Add a function to import directly from a server and extract IOCs. #74

Closed ZeroDot1 closed 1 year ago

ZeroDot1 commented 1 year ago

Exampleiocextract --input 'https://toast.home.us/random' --output '/home/user/k1.txt' --extract-ipv4s

battleoverflow commented 1 year ago

Hi, @ZeroDot1

Due to how the --input argument is currently configured, I decided to create a separate argument to allow for a quicker resolution. You can find the command below, which should pull down the IOCs, extract the data from the file, and save them to k1.txt.

iocextract -ri --url 'https://toast.home.us/random' --output '/home/user/k1.txt' --extract-ipv4s

Once the new version is available, you can run the following command to update your installation:

pip install iocextract -U
battleoverflow commented 1 year ago

@ZeroDot1 I wanted to ping you to let you know the new version is now available!

PyPI: https://pypi.org/project/iocextract/1.16.0/ Release: https://github.com/InQuest/iocextract/releases/tag/v1.16.0