Skip to content

Commit

Permalink
Change: create_task optional argument name
Browse files Browse the repository at this point in the history
Added an optional argument to the function create_task to adjust the name
  • Loading branch information
ITSEC-DACHSER authored and y0urself committed Nov 11, 2024
1 parent c5c6b1b commit 869341a
Showing 1 changed file with 5 additions and 2 deletions.
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

0 comments on commit 869341a

Please sign in to comment.