apisniff 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- apisniff-0.0.1/PKG-INFO +15 -0
- apisniff-0.0.1/pyproject.toml +23 -0
- apisniff-0.0.1/src/apisniff/__init__.py +1 -0
- apisniff-0.0.1/uv.lock +8 -0
apisniff-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: apisniff
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: One tool for API recon: preflight defenses, capture real traffic, extract a usable spec.
|
|
5
|
+
Project-URL: Homepage, https://github.com/aaronlau/apisniff
|
|
6
|
+
Author: Aaron Lau
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Keywords: api,mitmproxy,openapi,reverse-engineering,security
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Environment :: Console
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
14
|
+
Classifier: Topic :: Security
|
|
15
|
+
Requires-Python: >=3.12
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "apisniff"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "One tool for API recon: preflight defenses, capture real traffic, extract a usable spec."
|
|
9
|
+
license = "MIT"
|
|
10
|
+
requires-python = ">=3.12"
|
|
11
|
+
authors = [{ name = "Aaron Lau" }]
|
|
12
|
+
keywords = ["api", "reverse-engineering", "mitmproxy", "openapi", "security"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Environment :: Console",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Topic :: Internet :: WWW/HTTP",
|
|
19
|
+
"Topic :: Security",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://github.com/aaronlau/apisniff"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|