From 38d5086b88a90597e31aac5fad992c21cb0c464d Mon Sep 17 00:00:00 2001 From: "Gabriel M. Dutra" Date: Mon, 9 Dec 2019 17:49:11 -0300 Subject: [PATCH] Added implicit verification (#4032) --- 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()