mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Added implicit verification (#4032)
This commit is contained in:
parent
7b5a640d1f
commit
38d5086b88
|
@ -63,9 +63,9 @@ def main():
|
||||||
(args, _) = apiparser.parse_args()
|
(args, _) = apiparser.parse_args()
|
||||||
|
|
||||||
# Start the client or the server
|
# 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)
|
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)
|
client(args.host, args.port, username=args.username, password=args.password)
|
||||||
else:
|
else:
|
||||||
apiparser.print_help()
|
apiparser.print_help()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user