digTarget return the output of the dig command for target
()
| 102 | |
| 103 | // digTarget return the output of the dig command for target |
| 104 | func curlTarget() ([]byte, error) { |
| 105 | out, err := exec.Command("curl", *target).Output() |
| 106 | return out, err |
| 107 | } |
| 108 | |
| 109 | // sha256Username returns the SHA256 value of username |
| 110 | func sha256Username() []byte { |