-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #128 from OWASP/dev
Dev RELEASE: v0.19.2
- Loading branch information
Showing
9 changed files
with
141 additions
and
107 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -205,6 +205,7 @@ oas.yml | |
|
||
## unknown data | ||
.DS_Store | ||
.idea | ||
|
||
## local testing scripts | ||
test.py | ||
|
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
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
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
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
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/python3 | ||
|
||
# Generate a cert: | ||
# openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 | ||
|
||
import http.server | ||
import ssl | ||
|
||
|
||
class SimpleHTTPRequestHandler(http.server.SimpleHTTPRequestHandler): | ||
pass | ||
|
||
|
||
httpd = http.server.HTTPServer(("localhost", 4443), SimpleHTTPRequestHandler) | ||
httpd.socket = ssl.wrap_socket( | ||
httpd.socket, keyfile="key.pem", certfile="cert.pem", server_side=True | ||
) | ||
|
||
print("Serving on https://localhost:4443") | ||
httpd.serve_forever() |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "offat" | ||
version = "0.19.1" | ||
version = "0.19.2" | ||
description = "Offensive API tester tool automates checks for common API vulnerabilities" | ||
authors = ["Dhrumil Mistry <[email protected]>"] | ||
license = "MIT" | ||
|