diff --git a/_posts/2020-09-30-How-To-Make-A-MISP-Import-Script.md b/_posts/2020-09-30-How-To-Make-A-MISP-Import-Script.md index 878d81a..35e739a 100644 --- a/_posts/2020-09-30-How-To-Make-A-MISP-Import-Script.md +++ b/_posts/2020-09-30-How-To-Make-A-MISP-Import-Script.md @@ -123,12 +123,15 @@ The PyMISP connection is instantiated with following parameters coming from the ### Object creation -We create a MISP object, the name is object template name: +We create a MISP object, the name is the object template name: ~~~~python misp_object = MISPObject(name="github-user") ~~~~ +**tips:** you can find the object template name is the [MISP object template repository](https://github.com/MISP/misp-objects). +**contributing:** if an object template is missing, you can propose your own. + ### User data User data from the GitHub API are transformed into a JSON in order to be parsed by the following commands: