mirror of
https://github.com/muraenateam/muraena.git
synced 2026-07-17 16:44:50 +00:00
Using Debug log verbosity instead of info in victim tracker
This commit is contained in:
parent
6776a45773
commit
46e7ca3198
1 changed files with 3 additions and 4 deletions
|
|
@ -39,7 +39,7 @@ func (module *Tracker) ShowCredentials() {
|
|||
var rows [][]string
|
||||
|
||||
victims, err := db.GetAllVictims()
|
||||
log.Info("All Victims: %v", victims)
|
||||
log.Debug("All Victims: %v", victims)
|
||||
|
||||
if err != nil {
|
||||
module.Debug("error fetching all victims: %s", err)
|
||||
|
|
@ -51,7 +51,7 @@ func (module *Tracker) ShowCredentials() {
|
|||
module.Debug("error fetching victim %s: %s", vID, err)
|
||||
}
|
||||
|
||||
log.Info("Creds for victim %s: %d", vID, victim.CredsCount)
|
||||
log.Debug("Creds for victim %s: %d", vID, victim.CredsCount)
|
||||
|
||||
for i := 0; i < victim.CredsCount; i++ {
|
||||
t := tui.Green(victim.ID)
|
||||
|
|
@ -133,10 +133,9 @@ func (module *Tracker) ShowVictims() {
|
|||
module.Debug("error fetching all victims: %s", err)
|
||||
}
|
||||
|
||||
log.Info("All Victims: %v", victims)
|
||||
log.Debug("All Victims: %v", victims)
|
||||
|
||||
for _, vId := range victims {
|
||||
log.Info("victim id: %v", vId)
|
||||
|
||||
v, err := db.GetVictim(vId)
|
||||
if err != nil {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue