Created
September 28, 2017 00:12
-
-
Save ejholmes/d7341988bfe67e5d6f14122c4494c707 to your computer and use it in GitHub Desktop.
Credentials in Go error messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"log" | |
"net/http" | |
) | |
func main() { | |
_, err := http.Get("http://notso:[email protected]") | |
if err != nil { | |
log.Fatal(err) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Now I have your secrets.