Tripwire/padcheck

Doesn't seem to report on check properly?

Opened this issue · 0 comments

bls commented

Hi when I look at:

		if isVulnerable != true {
			if iteration > 0 {
				if *verboseLevel > 0 {
					fmt.Printf("%s (%s) exhibited an oracle which did not appear on iteration %d. (Not exploitable)\n", serverName, hostname, iteration)
				}
				return errors.New("Oracle disappeared")
			}
			return nil
		}

In padcheck.go, it leaves the line which says:

fmt.Printf("%s (%s) behaves securely\n", serverName, hostname)

As dead code.