Merge pull request #253 from VakarisZ/scanner_telemetry_fix

Fixed a bug where telemetry expects a 'scanner' field
This commit is contained in:
Daniel Goldberg 2019-01-29 15:31:05 +02:00 committed by GitHub
commit 1f8693eee2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 12 deletions

View File

@ -149,8 +149,7 @@ class Telemetry(flask_restful.Resource):
new_scan = \ new_scan = \
{ {
"timestamp": telemetry_json["timestamp"], "timestamp": telemetry_json["timestamp"],
"data": data, "data": data
"scanner": telemetry_json['data']['scanner']
} }
mongo.db.edge.update( mongo.db.edge.update(
{"_id": edge["_id"]}, {"_id": edge["_id"]},
@ -160,7 +159,6 @@ class Telemetry(flask_restful.Resource):
node = mongo.db.node.find_one({"_id": edge["to"]}) node = mongo.db.node.find_one({"_id": edge["to"]})
if node is not None: if node is not None:
if new_scan["scanner"] == "TcpScanner":
scan_os = new_scan["data"]["os"] scan_os = new_scan["data"]["os"]
if "type" in scan_os: if "type" in scan_os:
mongo.db.node.update({"_id": node["_id"]}, mongo.db.node.update({"_id": node["_id"]},