http://open-source-security-software.net/project/pyHIDS/releases.atomRecent releases for pyHIDS2024-11-15T09:23:40.167131+00:00python-feedgenpyHIDS v0.5.3pyHIDS v0.5.32023-07-19T21:53:09+00:00v0.5.3 Release 0.5.3 (2023-07-19) - Highlands release
Major improvements to the arguments parser.
Generating a RSA signature and verifying the integrity
of the database is now optional: you can use an other
tool.2023-07-19T21:53:09+00:00pyHIDS v0.6.0pyHIDS v0.6.02023-08-03T12:33:46+00:00- Integration with [Hashlookup](https://github.com/hashlookup);
- Integration with [Pandora](https://github.com/pandora-analysis);
- Various minor improvements.2023-08-03T12:33:46+00:00pyHIDS v0.6.1pyHIDS v0.6.12023-08-04T04:48:39+00:00Fixed the installation with pipx and imporved the README.2023-08-04T04:48:39+00:00pyHIDS v0.6.2pyHIDS v0.6.22023-08-04T22:32:38+00:00This release fixes an issue when no configuration file is found.2023-08-04T22:32:38+00:00pyHIDS v0.7.0pyHIDS v0.7.02023-10-04T09:48:29+00:00## New
[MISP](https://github.com/MISP) can now be used in order to look for malicious files in the database of pyHIDS.2023-10-04T09:48:29+00:00pyHIDS v0.7.1pyHIDS v0.7.12023-10-05T09:33:40+00:00Small fixes and improvements.2023-10-05T09:33:40+00:00pyHIDS v0.8.0pyHIDS v0.8.02023-10-06T20:54:54+00:00[YARA](https://github.com/virustotal/yara) can now be used in order to look for malicious files in the database of pyHIDS.2023-10-06T20:54:54+00:00pyHIDS v0.9.0pyHIDS v0.9.02023-10-10T07:48:57+00:00### New
It is now possible to export the database of pyHIDS in a Bloom or a Cuckoo filter.
```bash
$ pyhids export --bloom-filter
Bloom filter generated and stored: var/bloom/bloomfilter.bf
$ pyhids export --cuckoo-filter
Cuckoo filter generated and stored: var/cuckoo/cuckoofilter.cf
```
### Changes
Various improvements and minor fixes.2023-10-10T07:48:57+00:00pyHIDS v0.9.1pyHIDS v0.9.12023-10-13T19:47:16+00:00#### Changes
- various improvements to the command line;
- new argument in order to specify if the output must be more verbose;
- new argument in order to display the version of the software;
- improved the creation of the default folders (for the YARA rules, Bloom filter and Cuckoo filter).2023-10-13T19:47:16+00:00pyHIDS v0.9.2pyHIDS v0.9.22023-10-13T19:56:43+00:00## Fix
Fixed an issue related to the function responsible of returning the version of the software.2023-10-13T19:56:43+00:00pyHIDS v0.9.3pyHIDS v0.9.32023-10-14T17:47:34+00:00## Changes
- improved files handling and exit codes;
- improved checks on the loaded database;
- route errors from subprocess.run() to /dev/null.2023-10-14T17:47:34+00:00pyHIDS v0.9.4pyHIDS v0.9.42023-10-30T07:51:59+00:00### Changes
- [MISP lookup] The SHA1 values are now submitted in a single query;
- [MISP lookup] A new argument lets the user specify if the final output must be returned as a list of PyMISP Objects instead of the plain json output;
- [MISP lookup] Added possibility to specify the return format (json, stix2, csv, etc.);
- [core] Errors are always displayed, even in non-verbose mode.
#### Example
```
$ pyhids misp --help
usage: pyhids misp [-h] [--pythonify] [--return-format {openioc,json,xml,suricata,snort,text,rpz,csv,cache,stix-xml,stix,stix2,yara,yara-json,attack,attack-sightings,context,context-markdown}]
options:
-h, --help show this help message and exit
--pythonify Returns a list of PyMISP Objects instead of the plain json output.
--return-format {openioc,json,xml,suricata,snort,text,rpz,csv,cache,stix-xml,stix,stix2,yara,yara-json,attack,attack-sightings,context,context-markdown}
Set the return format of the search.
$ pyhids misp --pythonify
[<MISPAttribute(type=filename|sha1, value=df3f35df7d529b38e524275bee0672cb|da39a3ee5e6b4b0d3255bfef95601890afd80709), <MISPAttribute(type=filename|sha1, value=sT2kYW.exe|da39a3ee5e6b4b0d3255bfef95601890afd80709),]
```2023-10-30T07:51:59+00:00