Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typo #27

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 $?
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

2 changes: 1 addition & 1 deletion utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down