From 9550aa7c9d3a3adfcfbd1a9a40915b9a98288a41 Mon Sep 17 00:00:00 2001 From: "Gabriel M. Dutra" Date: Mon, 9 Dec 2019 14:46:08 -0600 Subject: [PATCH] Added implicit verification --- sqlmapapi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqlmapapi.py b/sqlmapapi.py index 5eabbdded..9c903b81d 100755 --- a/sqlmapapi.py +++ b/sqlmapapi.py @@ -63,9 +63,9 @@ def main(): (args, _) = apiparser.parse_args() # Start the client or the server - if args.server is True: + if args.server: server(args.host, args.port, adapter=args.adapter, username=args.username, password=args.password) - elif args.client is True: + elif args.client: client(args.host, args.port, username=args.username, password=args.password) else: apiparser.print_help()