mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-04-04 23:06:11 +00:00
remove prompt if no sql servers found
This commit is contained in:
parent
70a91ddcf3
commit
98d8df0ee8
1 changed files with 4 additions and 2 deletions
|
@ -158,8 +158,10 @@ try:
|
|||
for sql in sql_servers:
|
||||
if sql != "":
|
||||
print(sql)
|
||||
print_status("By pressing enter, you will begin the brute force process on all SQL accounts identified in the list above.")
|
||||
test = input("Press {enter} to begin the brute force process.")
|
||||
|
||||
if len(sql_servers) > 2:
|
||||
print_status("By pressing enter, you will begin the brute force process on all SQL accounts identified in the list above.")
|
||||
test = input("Press {enter} to begin the brute force process.")
|
||||
for servers in sql_servers:
|
||||
|
||||
# this will return the following format ipaddr + "," +
|
||||
|
|
Loading…
Add table
Reference in a new issue