From e3295a815cd7ad634b8116f05086980c0239b852 Mon Sep 17 00:00:00 2001 From: guoguangwu Date: Wed, 27 Sep 2023 16:19:43 +0800 Subject: [PATCH] fix: typo --- README.md | 2 +- SECURITY.md | 2 +- utils.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1d7bda7..d2f376f 100644 --- a/README.md +++ b/README.md @@ -332,7 +332,7 @@ https://heroku.com [+] Break Out The Box [*] Loading entries from: endpoints.txt [*] Attempting to query metadata endpoint: 'https://heroku.com' -[!] Reponse from 'https://heroku.com' -> 200 +[!] Response from 'https://heroku.com' -> 200 [+] Finished # echo $? diff --git a/SECURITY.md b/SECURITY.md index 149c8e0..01fa32e 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -19,7 +19,7 @@ The following released versions are supported by security updates: Complete transparency is the goal and your contribution is welcomed. -Please report a security vulnerabiltiy by submitting a Pull Request and providing the following: +Please report a security vulnerability by submitting a Pull Request and providing the following: - CVS3 Score with Vector - A minimal PoC that can show how to exploit the vulnerability and show impact diff --git a/utils.go b/utils.go index 0c3f22d..4a57b87 100644 --- a/utils.go +++ b/utils.go @@ -288,7 +288,7 @@ func queryEndpoint(url string) bool { } } if respCode > 0 { - fmt.Printf("[!] Reponse from '%s' -> %d\n", url, respCode) + fmt.Printf("[!] Response from '%s' -> %d\n", url, respCode) return true } return false