Andras Iklody
0b0f57b30c
Update countrycode.py
2018-06-06 08:31:41 +02:00
Alexandre Dulaunoy
1e1e694169
add: mixing modules
2018-05-30 06:56:42 +02:00
Alexandre Dulaunoy
2d9b0cd172
Merge branch 'master' of github.com:MISP/misp-modules
2018-05-29 21:59:25 +02:00
Alexandre Dulaunoy
0af064ac40
fix: missing cve module test
2018-05-29 21:57:38 +02:00
Alexandre Dulaunoy
9664127b85
add: new expansion module to check hashes against hashdd.com including NSLR dataset.
2018-05-29 21:54:22 +02:00
Alexandre Dulaunoy
b9d2a003e5
Merge pull request #190 from chrisr3d/master
...
Updated csv import following our recent discussions
2018-05-18 20:46:12 +02:00
chrisr3d
2b509a2fd3
Updated delimiter finder function
2018-05-18 11:38:13 +02:00
chrisr3d
1fb72f3c7a
add: Added user config to specify if there is a header in the csv to import
2018-05-18 11:33:53 +02:00
chrisr3d
4ca8e8e0de
Merge branch 'master' of github.com:MISP/misp-modules
2018-05-17 16:48:13 +02:00
chrisr3d
dba8bd8c5b
fix: Avoid trying to build attributes with not intended fields
...
- Previously: if the header field is not an attribute type, then
it was added as an attribute field.
PyMISP then used to skip it if needed
- Now: Those fields are discarded before they are put in an attribute
2018-05-17 16:24:11 +02:00
Andras Iklody
65168a2e9d
Merge pull request #189 from chrisr3d/master
...
Using userConfig to define the header instead of moduleconfig
2018-05-17 13:53:30 +02:00
chrisr3d
c088b13f03
fix: Using userConfig to define the header instead of moduleconfig
2018-05-17 13:47:49 +02:00
chrisr3d
a51287496f
Merge branch 'master' of github.com:MISP/misp-modules into documentation
2018-05-17 08:56:28 +02:00
Christophe Vandeplas
e32a39c6f0
Merge pull request #188 from cvandeplas/master
...
ta import - noise removal
2018-05-16 11:53:19 +02:00
Christophe Vandeplas
2fd4a5f8cc
Merge branch 'master' into master
2018-05-16 11:53:12 +02:00
Christophe Vandeplas
0593dbb408
ta import - more filter for pollution
2018-05-16 11:50:47 +02:00
Christophe Vandeplas
67cecc89d0
threatanalyzer_import - minor generic noise removal
2018-05-15 13:02:17 +02:00
Christophe Vandeplas
ce826dbabb
Merge pull request #187 from cvandeplas/master
...
threatanalyzer_import - minor generic noise removal
2018-05-15 13:01:08 +02:00
Christophe Vandeplas
7b4db1ce5c
threatanalyzer_import - minor generic noise removal
2018-05-15 12:59:55 +02:00
Christophe Vandeplas
8ed472c7d1
Merge pull request #185 from cvandeplas/master
...
threatanalyzer_import - loads sample info + pollution fix
2018-05-03 09:43:15 +02:00
Christophe Vandeplas
27a22e5d86
threatanalyzer_import - loads sample info + pollution fix
2018-05-03 09:42:38 +02:00
Christophe Vandeplas
35a19b118a
Merge pull request #184 from cvandeplas/master
...
threatanalyzer_import - fix regkey issue
2018-05-02 12:44:13 +02:00
Christophe Vandeplas
370011c081
threatanalyzer_import - fix regkey issue
2018-05-02 12:43:34 +02:00
chrisr3d
9d8b363fcc
Merge branch 'master' of github.com:MISP/misp-modules into documentation
2018-04-14 13:47:26 +02:00
Alexandre Dulaunoy
d29e300312
Merge pull request #177 from TheDr1ver/patch-1
...
fix missing comma
2018-03-31 10:51:55 +02:00
chrisr3d
60b1f187d0
Merge branch 'master' of github.com:MISP/misp-modules into documentation
2018-03-31 02:52:39 +02:00
Nick Driver
252d190714
fix missing comma
...
fix ip-dst and vulnerability input
2018-03-30 14:27:37 -04:00
Alexandre Dulaunoy
fd054a305b
Merge pull request #176 from cudeso/master
...
Fix VMRay API access error
2018-03-30 15:41:56 +02:00
Koen Van Impe
6d23d4f4c7
Fix VMRay API access error
...
hotfix for the "Unable to access VMRay API" error
2018-03-30 15:11:25 +02:00
Koen Van Impe
326e701260
Merge remote-tracking branch 'MISP/master'
2018-03-30 15:07:43 +02:00
chrisr3d
f9332c17ff
Merge branch 'master' of github.com:MISP/misp-modules into documentation
2018-03-11 22:25:19 +01:00
Alexandre Dulaunoy
7a8aacb986
Merge pull request #173 from m3047/master
...
Add exception blocks for query errors.
2018-03-10 13:53:58 +01:00
Fred Morris
d0f618b648
Add exception blocks for query errors.
2018-03-08 15:26:39 -08:00
Alexandre Dulaunoy
a2ebcdb358
Merge pull request #170 from P4rs3R/patch-1
...
Improving regex (validating e-mail)
2018-03-06 20:07:49 +01:00
x41\x43
0436118747
Improving regex (validating e-mail)
...
Line 48:
The previous regex ` ^[\w\.\+\-]+\@[\w]+\.[a-z]{2,3}$ ` matched only a small subset of valid e-mail address (e.g.: didn't match domain names longer than 3 chars or user@this-domain.de or user@multiple.level.dom ) and needed to be with start (^) and end ($).
This ` [a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])? ` is not perfect (e.g: can't match oriental chars), but imho is much more complete.
Regex tested with several e-mail addresses with Python 3.6.4 and Python 2.7.14 on Linux 4.14.
2018-03-06 18:12:36 +01:00
chrisr3d
68b20f2dd5
Merge branch 'master' of github.com:MISP/misp-modules into documentation
2018-03-06 17:34:36 +01:00
chrisr3d
834f022824
First try of documentation for import & export modules
...
- Providing information about the general purpose of
the modules, their requirements, how to use them
(if there are special features), some references
about the format concerned or the vendors, and their
input and output.
- Documentation to be completed by additional fields
of documentation and / or more detailed descriptions
2018-03-06 17:29:53 +01:00
chrisr3d
013e552f90
Added Documentation explanations on readme file
2018-03-06 16:22:46 +01:00
chrisr3d
ba2a5f7515
CSV import documentation first try
2018-03-06 11:04:19 +01:00
chrisr3d
b27425f306
GoAML modules documentation first try
2018-03-06 11:03:34 +01:00
Alexandre Dulaunoy
297343b7fc
Merge pull request #169 from chrisr3d/master
...
Updated GoAML import including Object References
2018-03-05 21:35:18 +01:00
chrisr3d
d885286792
Clarified functions arguments using a class
2018-03-05 19:59:30 +01:00
chrisr3d
4d7642ac91
add: Added Object References in the objects imported
2018-03-05 14:58:31 +01:00
Alexandre Dulaunoy
b1dd21fd06
Merge pull request #168 from chrisr3d/goaml
...
GoAML import module & GoAML export updates
2018-03-02 11:39:23 +01:00
chrisr3d
82fe8ba78c
fix: Fixed input & output of the module
2018-03-02 11:03:21 +01:00
chrisr3d
0a96d44810
Merge branch 'master' of github.com:MISP/misp-modules into goaml
2018-03-02 09:56:33 +01:00
chrisr3d
70436b7ddb
Merge branch 'csvimport' of github.com:chrisr3d/misp-modules into goaml
2018-03-02 09:40:46 +01:00
Alexandre Dulaunoy
8ad11e4be1
Merge pull request #167 from chrisr3d/csvimport
...
Updated csvimport
2018-03-02 09:15:54 +01:00
chrisr3d
c9ef578262
Removed print
2018-03-02 09:09:12 +01:00
chrisr3d
8d345d8cf5
Merge branch 'master' of github.com:MISP/misp-modules into csvimport
2018-03-02 09:05:46 +01:00