Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions scripts/scan-new-system.gmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,11 @@ def create_target(gmp, ipaddress, port_list_id):
return response.get("id")


def create_task(gmp, ipaddress, target_id, scan_config_id, scanner_id):
name = f"Scan Suspect Host {ipaddress}"
def create_task(gmp, ipaddress, target_id, scan_config_id, scanner_id, name="Scan Suspect Host"):
if name == "Scan Suspect Host":
name = f"Scan Suspect Host {ipaddress}"
else:
name = f"{name}"
response = gmp.create_task(
name=name,
config_id=scan_config_id,
Expand Down