Skip to content
Open
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
4 changes: 2 additions & 2 deletions lib/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self):
__service_name_list = ("active", "passive", "screen", "filter")

usage = "Usage: use --help for further information"
description = "Flashligth: Light your ways through Pentest"
description = "Flashlight: Light your ways through Pentest"
parser = argparse.ArgumentParser(description = description, usage = usage)

parser.add_argument('-p', '--project', dest = 'project', action = 'store', help = 'Project Name', required = True)
Expand Down Expand Up @@ -68,7 +68,7 @@ def __init__(self):

def _run(self, scan_type):

""" Run flashligth as a root"""
""" Run flashlight as a root"""

if os.geteuid() != 0:
Core.print_error("Run as ROOT")
Expand Down