Skip to content

Publish Latest 2025-07-30 #453

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

Merged
merged 1 commit into from
Jul 30, 2025
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Application APIs that conform to REST principles use the response status code of
| 307 | Temporary Redirect | Temporary redirection of resource |
| 400 | Bad Request | Malformed request by the client |
| 401 | Unauthorized | Client is not allowed to make requests or access a particular resource |
| 402 | Forbidden | Client is forbidden to access the resource |
| 403 | Forbidden | Client is forbidden to access the resource |
| 404 | Not Found | Resource doesn't exist or incorrect based on the request |
| 405 | Method Not Allowed | Invalid method or unknown method used |
| 500 | Internal Server Error | Server failed to process request due to an internal error |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ APIs can be public or private.

#### Public APIs

Public APIs typically have their details published in a Swagger/OpenAPI document. Gaining access to this document is important to understand the attack surface. Equally important is finding older versions of this document that might show depricated but still functional code that may have security vulnerabilities.
Public APIs typically have their details published in a Swagger/OpenAPI document. Gaining access to this document is important to understand the attack surface. Equally important is finding older versions of this document that might show deprecated but still functional code that may have security vulnerabilities.

Keep in mind that this document, however well intentioned, may not be accurate, and also may not dislose the complete API.

Expand Down