Raphaël Vinot
e568a0cf00
fix: Typo in the *feed methods
2018-04-26 14:43:21 +02:00
Raphaël Vinot
21f1a64293
chg: normalize the RestResponse calls.
2018-04-25 16:44:00 +02:00
Raphaël Vinot
c89d70140d
new: Add more feed management methods
...
Fix #221
2018-04-25 11:06:07 +02:00
Raphaël Vinot
36e7e5aedd
new: Add update_attribute method
2018-04-21 16:29:38 +02:00
Raphaël Vinot
5ca97d165c
new: Add event_timestamp to REST search
...
Fix #220
2018-04-12 10:43:21 +02:00
Paul Stark
43f167d934
Add the ability to add an Autonomous System(AS) via the API
2018-03-30 11:33:30 -04:00
Raphaël Vinot
0a4860b481
Merge pull request #210 from mlodic/master
...
added change_analysis_status API
2018-03-27 10:04:02 +02:00
user
1503508c16
Fix add_named_attribute regression, update add_named_attribute.py example
2018-03-26 17:37:02 +02:00
Raphaël Vinot
9e44ec6616
fix: Properly create fail2ban object
2018-03-26 17:03:16 +02:00
Matteo Lodi
84adf0f708
added change_analysis_status API
2018-03-26 16:38:26 +02:00
Richard van den Berg
079048545c
Point to right anchor for client side certificates
2018-02-26 17:04:38 +01:00
ANSSI-BSO-D
9087768b1d
add search on sighting
...
added the possibility to search sightings :
Here some example :
```python
print(misp.sighting_list(424242))
```
The answer will give a sighting list corresponding to the attribute 424242.
```python
print(misp.sighting_list(element_id=42, org_id=2, scope=event))
```
The return will be a sighting list of event 42 with a filter for organisation 2.
2018-02-21 15:12:26 +01:00
Raphaël Vinot
cd6b596574
new: APIs to manage sharing groups
...
Fix #185
2018-02-13 11:25:05 +01:00
Raphaël Vinot
3e8e588846
new: returnMetaAttributes flag for freeTextImport API
...
Fix #188
2018-02-13 10:50:51 +01:00
Raphaël Vinot
05bbfac658
fix: Encode string in _encode_file_to_upload
2018-01-29 10:30:37 +01:00
Raphaël Vinot
837372cf3e
fix: Allow to pass value, UUID, or ID to a sighting.
2018-01-25 16:24:24 +01:00
Raphaël Vinot
076393d55e
add: Allow to fetch warninglists
...
Fix #180
2018-01-25 16:02:58 +01:00
Kory Kyzar
914ac84194
Linting
2018-01-19 15:44:10 -06:00
Kory Kyzar
c797f4dfc4
Bug fix
2018-01-19 13:46:04 -06:00
Kory Kyzar
788a7842fa
Change in add_attachment. Allow explicit attachment naming
2018-01-19 13:27:49 -06:00
Armīns Palms
9158985f3f
Change in new_tag function. Added attributie 'hide_tag'
2018-01-19 16:57:40 +02:00
Armīns Palms
aaf18fa3c8
Change the comment of attribute
2018-01-18 15:17:52 +02:00
Raphaël Vinot
c862800df2
fix: add_hashes was broken
...
Fix #174
2018-01-12 18:47:50 +01:00
Raphaël Vinot
baa617aae4
fix: Download old samples was broken.
2018-01-10 23:39:27 +01:00
AninaAntonie
72597c1b8a
set_sightings
...
Maybe I didn't use it correctly but the method set_sightings didn't work for me. It's working now but I'm not sure whether sending a request for every sighting in the list is the best solution.
2017-12-28 10:17:57 +01:00
Raphaël Vinot
8013e90e40
fix: Typo in set_sightings
...
Fix #161
2017-12-27 14:25:12 +01:00
Raphaël Vinot
4708786959
chg: Add MISPSighting class.
2017-12-26 17:13:57 +01:00
Raphaël Vinot
e8e13f3218
chg: Update documentation
2017-12-22 17:22:07 +01:00
Raphaël Vinot
a497613a85
chg: Update documentation, cleanup
2017-12-22 14:49:14 +01:00
Raphaël Vinot
9e9bad731d
new: Add last field to get_csv
2017-12-21 17:25:12 +01:00
Raphaël Vinot
892ebbf077
chg: Add __repr__ methods (fix last commit)
2017-12-15 17:34:54 +01:00
Raphaël Vinot
19a50a7ba7
chg: Use new format for filtering.
2017-12-14 11:06:52 +01:00
Raphaël Vinot
6db31b397a
new: Add methods to get taxonomy(ies)
...
Thanks to @truckydev
2017-12-13 16:43:21 +01:00
Raphaël Vinot
6c4e2b2861
Merge pull request #150 from sdrees/first-friendly-contribution-enhance-coverage
...
First friendly contribution enhance coverage
2017-12-13 15:47:43 +01:00
Raphaël Vinot
5cbcc09d7d
new: Add method to get all the events modified in an interval
2017-12-11 15:01:25 +01:00
Raphaël Vinot
9f8f15fb2b
Merge branch 'get_last_modified_event' of https://github.com/truckydev/PyMISP into truckydev-get_last_modified_event
2017-12-11 14:03:37 +01:00
Stefan Hagen (Individual)
e7f395a92c
enhance coverage and fix en passant with focus on api
2017-12-11 14:00:43 +01:00
StrayLightning
748be6a093
Improve the exception message for a server 500+ response with no response content
2017-12-05 18:04:11 +00:00
StrayLightning
8a8b0c113d
Check for zero-length 500 response from the server and produce a suitable error message
...
In experimenting with PyMISP I am triggering problems on the server I
am using. Occasionally the server will return a 500 response with a
message indicating an internal error, but more often than not it returns
a 500 response with no contents, and _check_response falls over itself,
generating hard-to-fathom exception from the json internals.
This commit hardens _check_response by detecting zero-length responses
and raising a suitable exception.
Also fix a missing bracket in one of the subsequent exception strings.
2017-12-05 17:44:15 +00:00
Raphaël Vinot
5e931ffde7
Merge pull request #144 from c-goes/objects_delete
...
allow deletion of objects and object references
2017-12-02 21:36:44 +01:00
Raphaël Vinot
be65733d73
chg: Do not get the event from the server before publishing if PyMISP.publish gets an ID
2017-12-01 16:47:06 +01:00
Raphaël Vinot
f4439ae970
chg: Add live tests for recommended pymisp version and describeTypes up-to-date
2017-12-01 16:15:46 +01:00
Raphaël Vinot
9a2b82a2ae
chg: Add a way to check if the ACL is up-to-date
2017-12-01 14:35:19 +01:00
Raphaël Vinot
eb5cf6c06c
chg: Add validators for describeTypes on the live instance
2017-12-01 14:02:04 +01:00
Raphaël Vinot
9c7923fe0a
new: Add get CSV method.
2017-12-01 12:01:42 +01:00
Tristan METAYER
60f3111f47
- Correction for 'last' param.
...
'last' gives the latest events that have been published
- add get_events_last_modified()
this function returns the modified events based on timestamp
2017-11-29 16:46:41 +01:00
c-goes
4416fe30b1
allow deletion of objects and object references
2017-11-23 17:51:04 +01:00
3c7
069023e802
Adding multiple named attributes require a single POST request now
2017-11-22 14:57:11 +01:00
c-goes
2e5fcf4e31
fixed typo
2017-11-20 15:11:30 +01:00
Steve Clement
89a5558014
- Remove CIRCL reference from README.md
...
- Updated 2 bad indentations where epydoc was Warning
2017-11-19 10:02:03 +01:00