File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,8 +14,9 @@ libnmap is a python toolkit for manipulating nmap. It currently offers the follo
1414- plugins: enables you to support datastores for your scan results directly in the "NmapReport" object from report module
1515
1616 - mongodb: only plugin implemented so far, ultra basic, for POC purpose only
17+ - sqlalchemy: Allow to store/retreive NmapReport to sqlite/mysql/... all engine supported by sqlalchemy
18+ - rabbitMQ : todo
1719 - couchdb: todo
18- - sqlalchemy: todo
1920 - elastic search: todo
2021 - csv: todo
2122
Original file line number Diff line number Diff line change @@ -627,7 +627,7 @@ def save(self, backend):
627627
628628 The primary key of the stored object is returned.
629629
630- :return: integer
630+ :return: str
631631 """
632632 if backend is not None :
633633 #do stuff
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ def insert(self, NmapReport):
1414 """
1515 insert NmapReport in the backend
1616 :param NmapReport:
17- :return: the ident of the object in the backend for future usage
17+ :return: str the ident of the object in the backend for future usage
1818 or None
1919 """
2020 raise NotImplementedError
You can’t perform that action at this time.
0 commit comments