Skip to content

Commit

Permalink
Merge pull request #26 from belane/patch-1
Browse files Browse the repository at this point in the history
Suppress medusa startup banner
  • Loading branch information
x90skysn3k committed Sep 19, 2018
2 parents e2e5c47 + 40029ee commit 56e0b07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brutespray.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def brute(service,port,fname,output):
aarg = ''
auth = ''

p = subprocess.Popen(['medusa', '-H', fname, uarg, userlist, parg, passlist, '-M', service, '-t', args.threads, '-n', port, '-T', args.hosts, cont, aarg, auth], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, bufsize=-1)
p = subprocess.Popen(['medusa', '-b', '-H', fname, uarg, userlist, parg, passlist, '-M', service, '-t', args.threads, '-n', port, '-T', args.hosts, cont, aarg, auth], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, bufsize=-1)

out = "[" + colors.green + "+" + colors.normal + "] "
output_file = output + '/' + port + '-' + service + '-success.txt'
Expand Down

0 comments on commit 56e0b07

Please sign in to comment.