aiptx 2.0.7__py3-none-any.whl
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.
- aipt_v2/__init__.py +110 -0
- aipt_v2/__main__.py +24 -0
- aipt_v2/agents/AIPTxAgent/__init__.py +10 -0
- aipt_v2/agents/AIPTxAgent/aiptx_agent.py +211 -0
- aipt_v2/agents/__init__.py +46 -0
- aipt_v2/agents/base.py +520 -0
- aipt_v2/agents/exploit_agent.py +688 -0
- aipt_v2/agents/ptt.py +406 -0
- aipt_v2/agents/state.py +168 -0
- aipt_v2/app.py +957 -0
- aipt_v2/browser/__init__.py +31 -0
- aipt_v2/browser/automation.py +458 -0
- aipt_v2/browser/crawler.py +453 -0
- aipt_v2/cli.py +2933 -0
- aipt_v2/compliance/__init__.py +71 -0
- aipt_v2/compliance/compliance_report.py +449 -0
- aipt_v2/compliance/framework_mapper.py +424 -0
- aipt_v2/compliance/nist_mapping.py +345 -0
- aipt_v2/compliance/owasp_mapping.py +330 -0
- aipt_v2/compliance/pci_mapping.py +297 -0
- aipt_v2/config.py +341 -0
- aipt_v2/core/__init__.py +43 -0
- aipt_v2/core/agent.py +630 -0
- aipt_v2/core/llm.py +395 -0
- aipt_v2/core/memory.py +305 -0
- aipt_v2/core/ptt.py +329 -0
- aipt_v2/database/__init__.py +14 -0
- aipt_v2/database/models.py +232 -0
- aipt_v2/database/repository.py +384 -0
- aipt_v2/docker/__init__.py +23 -0
- aipt_v2/docker/builder.py +260 -0
- aipt_v2/docker/manager.py +222 -0
- aipt_v2/docker/sandbox.py +371 -0
- aipt_v2/evasion/__init__.py +58 -0
- aipt_v2/evasion/request_obfuscator.py +272 -0
- aipt_v2/evasion/tls_fingerprint.py +285 -0
- aipt_v2/evasion/ua_rotator.py +301 -0
- aipt_v2/evasion/waf_bypass.py +439 -0
- aipt_v2/execution/__init__.py +23 -0
- aipt_v2/execution/executor.py +302 -0
- aipt_v2/execution/parser.py +544 -0
- aipt_v2/execution/terminal.py +337 -0
- aipt_v2/health.py +437 -0
- aipt_v2/intelligence/__init__.py +194 -0
- aipt_v2/intelligence/adaptation.py +474 -0
- aipt_v2/intelligence/auth.py +520 -0
- aipt_v2/intelligence/chaining.py +775 -0
- aipt_v2/intelligence/correlation.py +536 -0
- aipt_v2/intelligence/cve_aipt.py +334 -0
- aipt_v2/intelligence/cve_info.py +1111 -0
- aipt_v2/intelligence/knowledge_graph.py +590 -0
- aipt_v2/intelligence/learning.py +626 -0
- aipt_v2/intelligence/llm_analyzer.py +502 -0
- aipt_v2/intelligence/llm_tool_selector.py +518 -0
- aipt_v2/intelligence/payload_generator.py +562 -0
- aipt_v2/intelligence/rag.py +239 -0
- aipt_v2/intelligence/scope.py +442 -0
- aipt_v2/intelligence/searchers/__init__.py +5 -0
- aipt_v2/intelligence/searchers/exploitdb_searcher.py +523 -0
- aipt_v2/intelligence/searchers/github_searcher.py +467 -0
- aipt_v2/intelligence/searchers/google_searcher.py +281 -0
- aipt_v2/intelligence/tools.json +443 -0
- aipt_v2/intelligence/triage.py +670 -0
- aipt_v2/interactive_shell.py +559 -0
- aipt_v2/interface/__init__.py +5 -0
- aipt_v2/interface/cli.py +230 -0
- aipt_v2/interface/main.py +501 -0
- aipt_v2/interface/tui.py +1276 -0
- aipt_v2/interface/utils.py +583 -0
- aipt_v2/llm/__init__.py +39 -0
- aipt_v2/llm/config.py +26 -0
- aipt_v2/llm/llm.py +514 -0
- aipt_v2/llm/memory.py +214 -0
- aipt_v2/llm/request_queue.py +89 -0
- aipt_v2/llm/utils.py +89 -0
- aipt_v2/local_tool_installer.py +1467 -0
- aipt_v2/models/__init__.py +15 -0
- aipt_v2/models/findings.py +295 -0
- aipt_v2/models/phase_result.py +224 -0
- aipt_v2/models/scan_config.py +207 -0
- aipt_v2/monitoring/grafana/dashboards/aipt-dashboard.json +355 -0
- aipt_v2/monitoring/grafana/dashboards/default.yml +17 -0
- aipt_v2/monitoring/grafana/datasources/prometheus.yml +17 -0
- aipt_v2/monitoring/prometheus.yml +60 -0
- aipt_v2/orchestration/__init__.py +52 -0
- aipt_v2/orchestration/pipeline.py +398 -0
- aipt_v2/orchestration/progress.py +300 -0
- aipt_v2/orchestration/scheduler.py +296 -0
- aipt_v2/orchestrator.py +2427 -0
- aipt_v2/payloads/__init__.py +27 -0
- aipt_v2/payloads/cmdi.py +150 -0
- aipt_v2/payloads/sqli.py +263 -0
- aipt_v2/payloads/ssrf.py +204 -0
- aipt_v2/payloads/templates.py +222 -0
- aipt_v2/payloads/traversal.py +166 -0
- aipt_v2/payloads/xss.py +204 -0
- aipt_v2/prompts/__init__.py +60 -0
- aipt_v2/proxy/__init__.py +29 -0
- aipt_v2/proxy/history.py +352 -0
- aipt_v2/proxy/interceptor.py +452 -0
- aipt_v2/recon/__init__.py +44 -0
- aipt_v2/recon/dns.py +241 -0
- aipt_v2/recon/osint.py +367 -0
- aipt_v2/recon/subdomain.py +372 -0
- aipt_v2/recon/tech_detect.py +311 -0
- aipt_v2/reports/__init__.py +17 -0
- aipt_v2/reports/generator.py +313 -0
- aipt_v2/reports/html_report.py +378 -0
- aipt_v2/runtime/__init__.py +53 -0
- aipt_v2/runtime/base.py +30 -0
- aipt_v2/runtime/docker.py +401 -0
- aipt_v2/runtime/local.py +346 -0
- aipt_v2/runtime/tool_server.py +205 -0
- aipt_v2/runtime/vps.py +830 -0
- aipt_v2/scanners/__init__.py +28 -0
- aipt_v2/scanners/base.py +273 -0
- aipt_v2/scanners/nikto.py +244 -0
- aipt_v2/scanners/nmap.py +402 -0
- aipt_v2/scanners/nuclei.py +273 -0
- aipt_v2/scanners/web.py +454 -0
- aipt_v2/scripts/security_audit.py +366 -0
- aipt_v2/setup_wizard.py +941 -0
- aipt_v2/skills/__init__.py +80 -0
- aipt_v2/skills/agents/__init__.py +14 -0
- aipt_v2/skills/agents/api_tester.py +706 -0
- aipt_v2/skills/agents/base.py +477 -0
- aipt_v2/skills/agents/code_review.py +459 -0
- aipt_v2/skills/agents/security_agent.py +336 -0
- aipt_v2/skills/agents/web_pentest.py +818 -0
- aipt_v2/skills/prompts/__init__.py +647 -0
- aipt_v2/system_detector.py +539 -0
- aipt_v2/telemetry/__init__.py +7 -0
- aipt_v2/telemetry/tracer.py +347 -0
- aipt_v2/terminal/__init__.py +28 -0
- aipt_v2/terminal/executor.py +400 -0
- aipt_v2/terminal/sandbox.py +350 -0
- aipt_v2/tools/__init__.py +44 -0
- aipt_v2/tools/active_directory/__init__.py +78 -0
- aipt_v2/tools/active_directory/ad_config.py +238 -0
- aipt_v2/tools/active_directory/bloodhound_wrapper.py +447 -0
- aipt_v2/tools/active_directory/kerberos_attacks.py +430 -0
- aipt_v2/tools/active_directory/ldap_enum.py +533 -0
- aipt_v2/tools/active_directory/smb_attacks.py +505 -0
- aipt_v2/tools/agents_graph/__init__.py +19 -0
- aipt_v2/tools/agents_graph/agents_graph_actions.py +69 -0
- aipt_v2/tools/api_security/__init__.py +76 -0
- aipt_v2/tools/api_security/api_discovery.py +608 -0
- aipt_v2/tools/api_security/graphql_scanner.py +622 -0
- aipt_v2/tools/api_security/jwt_analyzer.py +577 -0
- aipt_v2/tools/api_security/openapi_fuzzer.py +761 -0
- aipt_v2/tools/browser/__init__.py +5 -0
- aipt_v2/tools/browser/browser_actions.py +238 -0
- aipt_v2/tools/browser/browser_instance.py +535 -0
- aipt_v2/tools/browser/tab_manager.py +344 -0
- aipt_v2/tools/cloud/__init__.py +70 -0
- aipt_v2/tools/cloud/cloud_config.py +273 -0
- aipt_v2/tools/cloud/cloud_scanner.py +639 -0
- aipt_v2/tools/cloud/prowler_tool.py +571 -0
- aipt_v2/tools/cloud/scoutsuite_tool.py +359 -0
- aipt_v2/tools/executor.py +307 -0
- aipt_v2/tools/parser.py +408 -0
- aipt_v2/tools/proxy/__init__.py +5 -0
- aipt_v2/tools/proxy/proxy_actions.py +103 -0
- aipt_v2/tools/proxy/proxy_manager.py +789 -0
- aipt_v2/tools/registry.py +196 -0
- aipt_v2/tools/scanners/__init__.py +343 -0
- aipt_v2/tools/scanners/acunetix_tool.py +712 -0
- aipt_v2/tools/scanners/burp_tool.py +631 -0
- aipt_v2/tools/scanners/config.py +156 -0
- aipt_v2/tools/scanners/nessus_tool.py +588 -0
- aipt_v2/tools/scanners/zap_tool.py +612 -0
- aipt_v2/tools/terminal/__init__.py +5 -0
- aipt_v2/tools/terminal/terminal_actions.py +37 -0
- aipt_v2/tools/terminal/terminal_manager.py +153 -0
- aipt_v2/tools/terminal/terminal_session.py +449 -0
- aipt_v2/tools/tool_processing.py +108 -0
- aipt_v2/utils/__init__.py +17 -0
- aipt_v2/utils/logging.py +202 -0
- aipt_v2/utils/model_manager.py +187 -0
- aipt_v2/utils/searchers/__init__.py +269 -0
- aipt_v2/verify_install.py +793 -0
- aiptx-2.0.7.dist-info/METADATA +345 -0
- aiptx-2.0.7.dist-info/RECORD +187 -0
- aiptx-2.0.7.dist-info/WHEEL +5 -0
- aiptx-2.0.7.dist-info/entry_points.txt +7 -0
- aiptx-2.0.7.dist-info/licenses/LICENSE +21 -0
- aiptx-2.0.7.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aiptx
|
|
3
|
+
Version: 2.0.7
|
|
4
|
+
Summary: AI-Powered Penetration Testing Framework - Autonomous security assessment with LLM intelligence
|
|
5
|
+
Author-email: Satyam Rastogi <satyam@aiptx.io>
|
|
6
|
+
Maintainer-email: Satyam Rastogi <satyam@aiptx.io>
|
|
7
|
+
License: MIT License
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2025 Satyam Rastogi
|
|
10
|
+
|
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions:
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
28
|
+
|
|
29
|
+
Project-URL: Homepage, https://aiptx.io
|
|
30
|
+
Project-URL: Documentation, https://aiptx.io/docs
|
|
31
|
+
Project-URL: Repository, https://github.com/satyamrastogi/aiptx
|
|
32
|
+
Project-URL: Issues, https://github.com/satyamrastogi/aiptx/issues
|
|
33
|
+
Project-URL: Changelog, https://github.com/satyamrastogi/aiptx/blob/main/CHANGELOG.md
|
|
34
|
+
Project-URL: Community, https://aiptx.io/community
|
|
35
|
+
Keywords: security,penetration-testing,pentest,vulnerability-scanner,vulnerability-assessment,security-scanner,security-tools,security-automation,ai,llm,artificial-intelligence,machine-learning,gpt,claude,cybersecurity,infosec,appsec,devsecops,vapt,dast,sast,bug-bounty,ethical-hacking,red-team,offensive-security,web-security,owasp,cve,exploit,nmap,nuclei,sqlmap,burp-suite,acunetix,nessus,zap,reconnaissance,recon,scanning,exploitation,automation,cli,api
|
|
36
|
+
Classifier: Development Status :: 4 - Beta
|
|
37
|
+
Classifier: Environment :: Console
|
|
38
|
+
Classifier: Environment :: Web Environment
|
|
39
|
+
Classifier: Intended Audience :: Developers
|
|
40
|
+
Classifier: Intended Audience :: Information Technology
|
|
41
|
+
Classifier: Intended Audience :: System Administrators
|
|
42
|
+
Classifier: Intended Audience :: Science/Research
|
|
43
|
+
Classifier: Topic :: Security
|
|
44
|
+
Classifier: Topic :: Security :: Cryptography
|
|
45
|
+
Classifier: Topic :: Software Development :: Testing
|
|
46
|
+
Classifier: Topic :: Software Development :: Testing :: Acceptance
|
|
47
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
48
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
49
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
|
|
50
|
+
Classifier: Topic :: System :: Networking
|
|
51
|
+
Classifier: Topic :: System :: Systems Administration
|
|
52
|
+
Classifier: Topic :: System :: Monitoring
|
|
53
|
+
Classifier: Topic :: Utilities
|
|
54
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
55
|
+
Classifier: Operating System :: OS Independent
|
|
56
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
57
|
+
Classifier: Operating System :: MacOS
|
|
58
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
59
|
+
Classifier: Programming Language :: Python :: 3
|
|
60
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
61
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
62
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
63
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
64
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
65
|
+
Classifier: Typing :: Typed
|
|
66
|
+
Classifier: Framework :: FastAPI
|
|
67
|
+
Classifier: Natural Language :: English
|
|
68
|
+
Requires-Python: >=3.9
|
|
69
|
+
Description-Content-Type: text/markdown
|
|
70
|
+
License-File: LICENSE
|
|
71
|
+
Requires-Dist: litellm>=1.50.0
|
|
72
|
+
Requires-Dist: jinja2>=3.1.0
|
|
73
|
+
Requires-Dist: tiktoken>=0.5.0
|
|
74
|
+
Requires-Dist: requests>=2.31.0
|
|
75
|
+
Requires-Dist: httpx>=0.25.0
|
|
76
|
+
Requires-Dist: aiohttp>=3.9.0
|
|
77
|
+
Requires-Dist: fastapi>=0.104.0
|
|
78
|
+
Requires-Dist: uvicorn[standard]>=0.24.0
|
|
79
|
+
Requires-Dist: pydantic>=2.5.0
|
|
80
|
+
Requires-Dist: pydantic-settings>=2.0.0
|
|
81
|
+
Requires-Dist: slowapi>=0.1.9
|
|
82
|
+
Requires-Dist: sqlalchemy>=2.0.0
|
|
83
|
+
Requires-Dist: alembic>=1.13.0
|
|
84
|
+
Requires-Dist: textual>=0.44.0
|
|
85
|
+
Requires-Dist: rich>=13.7.0
|
|
86
|
+
Requires-Dist: click>=8.1.0
|
|
87
|
+
Requires-Dist: typer>=0.9.0
|
|
88
|
+
Requires-Dist: pyyaml>=6.0
|
|
89
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
90
|
+
Requires-Dist: aiofiles>=23.0.0
|
|
91
|
+
Requires-Dist: structlog>=23.0.0
|
|
92
|
+
Requires-Dist: psutil>=5.9.0
|
|
93
|
+
Provides-Extra: vps
|
|
94
|
+
Requires-Dist: asyncssh>=2.14.0; extra == "vps"
|
|
95
|
+
Provides-Extra: full
|
|
96
|
+
Requires-Dist: sentence-transformers>=2.2.0; extra == "full"
|
|
97
|
+
Requires-Dist: numpy>=1.24.0; extra == "full"
|
|
98
|
+
Requires-Dist: torch>=2.0.0; extra == "full"
|
|
99
|
+
Requires-Dist: playwright>=1.40.0; extra == "full"
|
|
100
|
+
Requires-Dist: mitmproxy>=10.0.0; extra == "full"
|
|
101
|
+
Requires-Dist: docker>=7.0.0; extra == "full"
|
|
102
|
+
Requires-Dist: pexpect>=4.8.0; extra == "full"
|
|
103
|
+
Requires-Dist: paramiko>=3.4.0; extra == "full"
|
|
104
|
+
Requires-Dist: asyncssh>=2.14.0; extra == "full"
|
|
105
|
+
Requires-Dist: langchain-core>=0.1.0; extra == "full"
|
|
106
|
+
Requires-Dist: scikit-learn>=1.3.0; extra == "full"
|
|
107
|
+
Requires-Dist: scipy>=1.11.0; extra == "full"
|
|
108
|
+
Requires-Dist: pandas>=2.0.0; extra == "full"
|
|
109
|
+
Provides-Extra: dev
|
|
110
|
+
Requires-Dist: pytest>=7.4.0; extra == "dev"
|
|
111
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
112
|
+
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
|
|
113
|
+
Requires-Dist: pytest-mock>=3.12.0; extra == "dev"
|
|
114
|
+
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
115
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
116
|
+
Requires-Dist: mypy>=1.7.0; extra == "dev"
|
|
117
|
+
Requires-Dist: bandit>=1.7.0; extra == "dev"
|
|
118
|
+
Requires-Dist: pre-commit>=3.5.0; extra == "dev"
|
|
119
|
+
Requires-Dist: safety>=2.3.0; extra == "dev"
|
|
120
|
+
Dynamic: license-file
|
|
121
|
+
|
|
122
|
+
<div align="center">
|
|
123
|
+
|
|
124
|
+
# AIPTX - AI-Powered Penetration Testing Framework
|
|
125
|
+
|
|
126
|
+
### 🌐 **[aiptx.io](https://aiptx.io)** — Official Website
|
|
127
|
+
|
|
128
|
+
[](https://aiptx.io)
|
|
129
|
+
[](https://pypi.org/project/aiptx/)
|
|
130
|
+
[](https://pepy.tech/project/aiptx)
|
|
131
|
+
[](https://www.python.org/downloads/)
|
|
132
|
+
[](https://opensource.org/licenses/MIT)
|
|
133
|
+
|
|
134
|
+
**AI-Powered Security Assessment & Vulnerability Discovery Platform**
|
|
135
|
+
|
|
136
|
+
[Getting Started](https://aiptx.io/docs) • [Documentation](https://aiptx.io/docs) • [API Reference](https://aiptx.io/api) • [Community](https://aiptx.io/community)
|
|
137
|
+
|
|
138
|
+
</div>
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
|
|
142
|
+
**AIPTX** is an intelligent penetration testing framework that leverages Large Language Models (LLMs) to autonomously conduct security assessments. It orchestrates comprehensive vulnerability discovery through AI-guided decision making, smart prioritization, and automated reporting.
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
## Key Features
|
|
147
|
+
|
|
148
|
+
### AI Intelligence Layer
|
|
149
|
+
- **LLM-Guided Scanning** — AI decides which techniques to apply based on discovered information
|
|
150
|
+
- **Smart Vulnerability Triage** — Prioritizes findings by real-world exploitability, not just severity scores
|
|
151
|
+
- **Attack Chain Detection** — Identifies how multiple findings combine into critical attack paths
|
|
152
|
+
- **Semantic Tool Selection** — RAG-based matching of objectives to optimal assessment techniques
|
|
153
|
+
|
|
154
|
+
### Comprehensive Assessment Capabilities
|
|
155
|
+
- **Reconnaissance** — Subdomain discovery, DNS enumeration, technology fingerprinting, historical data analysis
|
|
156
|
+
- **Vulnerability Scanning** — Web application testing, configuration analysis, secret detection, container security
|
|
157
|
+
- **Exploitation Testing** — SQL injection, XSS, command injection, credential testing (opt-in)
|
|
158
|
+
- **Post-Exploitation** — Privilege escalation detection, credential extraction, process monitoring
|
|
159
|
+
|
|
160
|
+
### Enterprise Integration
|
|
161
|
+
- Native API support for leading commercial security platforms
|
|
162
|
+
- Unified interface for both open-source and enterprise scanning solutions
|
|
163
|
+
- Seamless integration into existing security workflows
|
|
164
|
+
|
|
165
|
+
### Professional Output
|
|
166
|
+
- **HTML Reports** — Executive-ready vulnerability documentation
|
|
167
|
+
- **JSON Export** — CI/CD pipeline integration
|
|
168
|
+
- **REST API** — Programmatic access for automation
|
|
169
|
+
- **Terminal UI** — Real-time progress monitoring
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
## Installation
|
|
174
|
+
|
|
175
|
+
```bash
|
|
176
|
+
# Recommended: Install with pipx
|
|
177
|
+
pipx install aiptx
|
|
178
|
+
|
|
179
|
+
# Or with pip
|
|
180
|
+
pip install aiptx
|
|
181
|
+
|
|
182
|
+
# Full installation (ML features, browser automation, proxy)
|
|
183
|
+
pip install aiptx[full]
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
**Requirements:** Python 3.9+
|
|
187
|
+
|
|
188
|
+
---
|
|
189
|
+
|
|
190
|
+
## Quick Start
|
|
191
|
+
|
|
192
|
+
```bash
|
|
193
|
+
# Basic security scan
|
|
194
|
+
aiptx scan example.com
|
|
195
|
+
|
|
196
|
+
# AI-guided intelligent scanning
|
|
197
|
+
aiptx scan example.com --ai
|
|
198
|
+
|
|
199
|
+
# Comprehensive assessment (all capabilities)
|
|
200
|
+
aiptx scan example.com --full
|
|
201
|
+
|
|
202
|
+
# Container security assessment
|
|
203
|
+
aiptx scan example.com --container
|
|
204
|
+
|
|
205
|
+
# Secret and credential detection
|
|
206
|
+
aiptx scan example.com --secrets
|
|
207
|
+
|
|
208
|
+
# Check configuration
|
|
209
|
+
aiptx status
|
|
210
|
+
|
|
211
|
+
# Start REST API server
|
|
212
|
+
aiptx api
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
---
|
|
216
|
+
|
|
217
|
+
## How It Works
|
|
218
|
+
|
|
219
|
+
AIPTX operates on a **Think → Select → Execute → Learn** loop:
|
|
220
|
+
|
|
221
|
+
```
|
|
222
|
+
┌─────────────────────────────────────────────────────────────────┐
|
|
223
|
+
│ AIPTX Framework │
|
|
224
|
+
├─────────────────────────────────────────────────────────────────┤
|
|
225
|
+
│ AI INTELLIGENCE LAYER │
|
|
226
|
+
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
|
|
227
|
+
│ │ LLM Engine │ │ Scoring │ │Attack Chain │ │
|
|
228
|
+
│ │ (100+ LLMs) │ │ Engine │ │ Detection │ │
|
|
229
|
+
│ └─────────────┘ └─────────────┘ └─────────────┘ │
|
|
230
|
+
├─────────────────────────────────────────────────────────────────┤
|
|
231
|
+
│ ASSESSMENT PIPELINE │
|
|
232
|
+
│ RECON ──────► SCAN ──────► EXPLOIT ──────► POST-EXPLOIT │
|
|
233
|
+
├─────────────────────────────────────────────────────────────────┤
|
|
234
|
+
│ OUTPUT │
|
|
235
|
+
│ HTML Reports │ JSON Export │ REST API │ TUI │
|
|
236
|
+
└─────────────────────────────────────────────────────────────────┘
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
1. **Think** — AI analyzes target and current findings
|
|
240
|
+
2. **Select** — Chooses appropriate assessment techniques via semantic search
|
|
241
|
+
3. **Execute** — Runs assessments in isolated environments
|
|
242
|
+
4. **Learn** — Extracts findings and determines next steps
|
|
243
|
+
|
|
244
|
+
---
|
|
245
|
+
|
|
246
|
+
## LLM Configuration
|
|
247
|
+
|
|
248
|
+
AIPTX supports **100+ LLM providers** for AI-guided scanning:
|
|
249
|
+
|
|
250
|
+
```bash
|
|
251
|
+
# Anthropic Claude
|
|
252
|
+
export ANTHROPIC_API_KEY="your-key"
|
|
253
|
+
|
|
254
|
+
# OpenAI
|
|
255
|
+
export OPENAI_API_KEY="your-key"
|
|
256
|
+
|
|
257
|
+
# Azure OpenAI
|
|
258
|
+
export AZURE_API_KEY="your-key"
|
|
259
|
+
export AZURE_API_BASE="your-endpoint"
|
|
260
|
+
|
|
261
|
+
# Local models (for offline/private use)
|
|
262
|
+
export OLLAMA_API_BASE="http://localhost:11434"
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
---
|
|
266
|
+
|
|
267
|
+
## Use Cases
|
|
268
|
+
|
|
269
|
+
| Scenario | Command |
|
|
270
|
+
|----------|---------|
|
|
271
|
+
| **Bug Bounty** | `aiptx scan target.com --ai --full` |
|
|
272
|
+
| **Penetration Testing** | `aiptx scan client.com --full` |
|
|
273
|
+
| **DevSecOps Pipeline** | `aiptx scan app.com --container --secrets --json` |
|
|
274
|
+
| **Red Team Operations** | `aiptx scan target.corp --ai --exploit --full` |
|
|
275
|
+
|
|
276
|
+
---
|
|
277
|
+
|
|
278
|
+
## Command Reference
|
|
279
|
+
|
|
280
|
+
| Command | Description |
|
|
281
|
+
|---------|-------------|
|
|
282
|
+
| `aiptx scan <target>` | Run security assessment |
|
|
283
|
+
| `aiptx scan <target> --ai` | Enable AI-guided scanning |
|
|
284
|
+
| `aiptx scan <target> --full` | Comprehensive assessment |
|
|
285
|
+
| `aiptx scan <target> --quick` | Fast essential checks only |
|
|
286
|
+
| `aiptx scan <target> --exploit` | Enable exploitation testing |
|
|
287
|
+
| `aiptx scan <target> --container` | Container security scanning |
|
|
288
|
+
| `aiptx scan <target> --secrets` | Credential/secret detection |
|
|
289
|
+
| `aiptx status` | Check configuration |
|
|
290
|
+
| `aiptx version` | Show version |
|
|
291
|
+
| `aiptx api` | Start REST API server |
|
|
292
|
+
|
|
293
|
+
---
|
|
294
|
+
|
|
295
|
+
## Why AIPTX?
|
|
296
|
+
|
|
297
|
+
| Capability | AIPTX | Traditional Approach |
|
|
298
|
+
|------------|-------|---------------------|
|
|
299
|
+
| AI-Guided Decisions | ✅ | ❌ Manual |
|
|
300
|
+
| Unified Interface | ✅ | ❌ Multiple tools |
|
|
301
|
+
| Attack Chain Analysis | ✅ | ❌ Manual correlation |
|
|
302
|
+
| Smart Prioritization | ✅ | ❌ CVSS only |
|
|
303
|
+
| Professional Reports | ✅ | ❌ Manual documentation |
|
|
304
|
+
| Single Command | ✅ | ❌ Complex scripts |
|
|
305
|
+
|
|
306
|
+
---
|
|
307
|
+
|
|
308
|
+
## Requirements
|
|
309
|
+
|
|
310
|
+
- **Python**: 3.9 or higher
|
|
311
|
+
- **OS**: Linux, macOS, Windows (WSL recommended)
|
|
312
|
+
- **Optional**: Docker for isolated execution
|
|
313
|
+
|
|
314
|
+
---
|
|
315
|
+
|
|
316
|
+
## License
|
|
317
|
+
|
|
318
|
+
MIT License — Free for commercial and personal use.
|
|
319
|
+
|
|
320
|
+
---
|
|
321
|
+
|
|
322
|
+
## Author
|
|
323
|
+
|
|
324
|
+
**Satyam Rastogi** — Security Researcher & Developer
|
|
325
|
+
|
|
326
|
+
---
|
|
327
|
+
|
|
328
|
+
## Links
|
|
329
|
+
|
|
330
|
+
- 🌐 **[aiptx.io](https://aiptx.io)** — Official Website & Documentation
|
|
331
|
+
- 📦 [PyPI Package](https://pypi.org/project/aiptx/)
|
|
332
|
+
- 💻 [GitHub Repository](https://github.com/satyamrastogi/aiptx)
|
|
333
|
+
- 📋 [Changelog](https://github.com/satyamrastogi/aiptx/blob/main/CHANGELOG.md)
|
|
334
|
+
- 📖 [Documentation](https://aiptx.io/docs)
|
|
335
|
+
- 💬 [Community & Support](https://aiptx.io/community)
|
|
336
|
+
|
|
337
|
+
---
|
|
338
|
+
|
|
339
|
+
<div align="center">
|
|
340
|
+
|
|
341
|
+
**[aiptx.io](https://aiptx.io)** — Intelligent Security Assessment, Simplified.
|
|
342
|
+
|
|
343
|
+
Made with ❤️ by [Satyam Rastogi](https://aiptx.io)
|
|
344
|
+
|
|
345
|
+
</div>
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
aipt_v2/__init__.py,sha256=bDRFNX2ETAamHb6tNCqlSzmbEoD4JH9yo0az9xZFY08,3686
|
|
2
|
+
aipt_v2/__main__.py,sha256=UGuSuVi5thWl2wDeyUjbT0iUZwoxLzrWyUVa0IlcTfU,472
|
|
3
|
+
aipt_v2/app.py,sha256=T-xK2TYl4RxU9Ur8M7k9qVzy0R13FENk6uIQifCLexE,31750
|
|
4
|
+
aipt_v2/cli.py,sha256=7WBkzG0tL9kEJEHgs__IlOjvWf805o9Fo2qWnuYyODQ,105346
|
|
5
|
+
aipt_v2/config.py,sha256=c_GlKxdyZve2Uq54oNviXykAebkZsC7lNHM-POBqJJI,13346
|
|
6
|
+
aipt_v2/health.py,sha256=VPj1qyjLj3NfPgNkUwRXwXTFeBqLnswkvpB9UaC6nP8,13981
|
|
7
|
+
aipt_v2/interactive_shell.py,sha256=4_oiFzNYkM9v_x7oA63AifHvjCeVy7mE8ovgwZopkfA,17886
|
|
8
|
+
aipt_v2/local_tool_installer.py,sha256=Q0MzYQYtS4PG8HiIexJJFwvg69vLwY8VnG7O4oXARok,55729
|
|
9
|
+
aipt_v2/orchestrator.py,sha256=vkXN_WZepoVQFL-fbxVVbkZu2a5pwNmx2OzvE9TU_OI,106878
|
|
10
|
+
aipt_v2/setup_wizard.py,sha256=iMyUzdzZVdFtELPTY3CNrn5autDbpu0EsKa36VOnaR0,34072
|
|
11
|
+
aipt_v2/system_detector.py,sha256=NojJtnwFnnpve1eQPs7AbcsgbigEKIDAEn8zvr0CTFc,17453
|
|
12
|
+
aipt_v2/verify_install.py,sha256=DQSGRLGQCYty6SqzOZ-WQHpGMiR5ASH2ZSASW0BOD5A,26766
|
|
13
|
+
aipt_v2/agents/__init__.py,sha256=0MCL3SeJMOhAKaeKq0BX9bwNfDGVVBd5cE3T2XqdUk4,1402
|
|
14
|
+
aipt_v2/agents/base.py,sha256=twsA9MHuQ5OwPeNjSZVkEALyRNpals_Evn2sGRGOjiE,20433
|
|
15
|
+
aipt_v2/agents/exploit_agent.py,sha256=1uAHaF7y-hZBF-fFxSuCZYC4M0eQBT48ypol9-hW1lU,22935
|
|
16
|
+
aipt_v2/agents/ptt.py,sha256=A9dtay7H11GYtRALxoKfNkAzXeljaHBWB7bj5sXvhkw,12284
|
|
17
|
+
aipt_v2/agents/state.py,sha256=y6evp2QTWJPB4k-gaaBvMX4avQOiLS_55fjznUUIGG4,5650
|
|
18
|
+
aipt_v2/agents/AIPTxAgent/__init__.py,sha256=4jE_t4W6rbkNSRbVWZA59Z4Fyj1HEvVsHvyarLTT_iU,216
|
|
19
|
+
aipt_v2/agents/AIPTxAgent/aiptx_agent.py,sha256=hxAM0kkKrGmAi21VLnQsLbWDp_q2_ildpxlghhPBRaY,7279
|
|
20
|
+
aipt_v2/browser/__init__.py,sha256=YBHWubCSjCL67N9wjZXAHV_nxuM1hHc0E1NpZmdk0tA,513
|
|
21
|
+
aipt_v2/browser/automation.py,sha256=yYimWv9mgjkR4RX0uMKt5es9khJovTs64oa_3YK-SQE,14988
|
|
22
|
+
aipt_v2/browser/crawler.py,sha256=1M26a6UJ86PFT5_nXxMJKYagy3eI-TKHyOfBPat-K_0,15433
|
|
23
|
+
aipt_v2/compliance/__init__.py,sha256=LnblsG4bxO_dgNH8TeNKD6oWIhCH04qdaBKY5am2ZRw,1478
|
|
24
|
+
aipt_v2/compliance/compliance_report.py,sha256=w-s4VO1w6GNEMPrPc1zc1R7DfGWwpoCnW_GwqBNhrUw,14553
|
|
25
|
+
aipt_v2/compliance/framework_mapper.py,sha256=uHS2G2yW3vAzGdKqZ2KPonR5NTCetlb88RabEzJ7_vc,16544
|
|
26
|
+
aipt_v2/compliance/nist_mapping.py,sha256=D4F5FeWxLMSMs7z5dEORuUlBe9-x2FmUbB_aU_oaB6E,12170
|
|
27
|
+
aipt_v2/compliance/owasp_mapping.py,sha256=eIhFDmKDGxyIQYm9XdB6uSFkgigEFY4npIgF7xXapU0,15101
|
|
28
|
+
aipt_v2/compliance/pci_mapping.py,sha256=gSI4WA7k_psoklMaoAtjI567O8spb2jnpd54uoJ-CSQ,10891
|
|
29
|
+
aipt_v2/core/__init__.py,sha256=rBKoZzhyVRrCpvNdORYrPmtle8IlyCKY3wWNFmv29Qc,891
|
|
30
|
+
aipt_v2/core/agent.py,sha256=ZcPu-LgSMBp8JwAWXRu8RICHKFZh1NSZ16mmVpYhIu0,20880
|
|
31
|
+
aipt_v2/core/llm.py,sha256=j1lUxE-lTzC1GJtdL2YC23e557ACjdp5gS5Xy3386B8,13037
|
|
32
|
+
aipt_v2/core/memory.py,sha256=sWFSiAwPwhZFEVEDJmgVYiCXoX6eBTMn-DkOr6XLUHc,10695
|
|
33
|
+
aipt_v2/core/ptt.py,sha256=sXtJEEAGLFiZ6bJW2oOKsaGV2_P1O2GlfyVYgyzohbU,10645
|
|
34
|
+
aipt_v2/database/__init__.py,sha256=3iu7rxVrTBBi9plnklET8dxEsSC11nSv2t2Nxagj1Cc,270
|
|
35
|
+
aipt_v2/database/models.py,sha256=KfeDHaHBfI81T0r905rNiofCWRFa-eFwkYYCShVcHkY,7343
|
|
36
|
+
aipt_v2/database/repository.py,sha256=f87Uc0ydeXOB0popZxpAY00WesdON6GyvqiTzmSA4qs,13035
|
|
37
|
+
aipt_v2/docker/__init__.py,sha256=-DF-aWYChkWCh_2pmb7xsCvNBZUEnnLTR7rHuDuIEX4,566
|
|
38
|
+
aipt_v2/docker/builder.py,sha256=7uV22tw-uy_nuPbqgqV6CXHkhChNvdJyAGB38g22Tmw,7929
|
|
39
|
+
aipt_v2/docker/manager.py,sha256=f4bWSUjkKFYZOOHdnNjRcUae1Us2MQ4sv7GHhTmQr7Q,6726
|
|
40
|
+
aipt_v2/docker/sandbox.py,sha256=nNOwIq1jNxdVPqHVM3zlJSmU7Hi8AOKHp82IpS6ZGYo,11236
|
|
41
|
+
aipt_v2/evasion/__init__.py,sha256=HFjKFQXAMnd4w1BbbmlXHS313FxKMWnmD7e_8GOHYlA,1199
|
|
42
|
+
aipt_v2/evasion/request_obfuscator.py,sha256=8TZlGY1rfYeTSUxs7kL2BuvLqu3ZyTcytExet2kSDJ0,7986
|
|
43
|
+
aipt_v2/evasion/tls_fingerprint.py,sha256=gmXRrRZHbv8c5AVMjw6v6fbTJ3Ds8coDNg48fRhSbEI,7991
|
|
44
|
+
aipt_v2/evasion/ua_rotator.py,sha256=8SDZu6m44z-jK8GSGazLXAdVILGz-rqg0R_3Kk_P0Q4,10846
|
|
45
|
+
aipt_v2/evasion/waf_bypass.py,sha256=d6_Es52FyEAnZ9gbdV7FRUhHfGXBVOQLn7JBmP8UbfI,13324
|
|
46
|
+
aipt_v2/execution/__init__.py,sha256=9a4_NkMUGJ0QXJhYslsD9xeHpulvKV5Ng-i9z2Pl-xs,556
|
|
47
|
+
aipt_v2/execution/executor.py,sha256=NJC84QNlTBVeFph68_yJuXbr0QiC8qRAUifzd4_X7mU,9418
|
|
48
|
+
aipt_v2/execution/parser.py,sha256=qwtjUq8_AACXQBoWtZxeYuh80DyHCpY572uhCrbWrYE,17506
|
|
49
|
+
aipt_v2/execution/terminal.py,sha256=S2i1SHN1ennpvM8igiNqR99LumMzs_F2N7wujSCo_oI,10295
|
|
50
|
+
aipt_v2/intelligence/__init__.py,sha256=Lfyjvl_2bzX3eT4jO_YFR_xvwzqH4Q-75VYBziOETw4,4678
|
|
51
|
+
aipt_v2/intelligence/adaptation.py,sha256=_T3W8T5sKhtXepXlAoHMs8QsSBDTFu8--cIga-O_wyE,17110
|
|
52
|
+
aipt_v2/intelligence/auth.py,sha256=1iqPi6_WBnxf7-bsGlE77jFSUdLclJ7B43GOfG4NacM,16670
|
|
53
|
+
aipt_v2/intelligence/chaining.py,sha256=RjmJL0ZXISt5WzOCOD_NwN5ktVPphj_wDSlm268sV7s,27161
|
|
54
|
+
aipt_v2/intelligence/correlation.py,sha256=TqzvEWVNkR_rMk1b_ezUeuyjNJGZhgKD35aClmW-dzw,20861
|
|
55
|
+
aipt_v2/intelligence/cve_aipt.py,sha256=eHXXml2k3qQBKv4fXEUfg6y-uulAotgdpIVRnm12WPQ,10783
|
|
56
|
+
aipt_v2/intelligence/cve_info.py,sha256=j0t8MvdO3Fz8IPmYV-j34AVDf96ImQve9pYzoJ6LVfE,42220
|
|
57
|
+
aipt_v2/intelligence/knowledge_graph.py,sha256=ko1w4TCihSqVBQAYWc6sH18Rtz-O0ozuXwj_9N9zvC0,19957
|
|
58
|
+
aipt_v2/intelligence/learning.py,sha256=b-Qre0Dr0OY0T-pCzWXp45oW-O2FDNEPab4yZymKQnI,19949
|
|
59
|
+
aipt_v2/intelligence/llm_analyzer.py,sha256=jSa56DblGfQyf436e5Y-z5YLLZ7LvRvDaQcPzrzJg0M,17425
|
|
60
|
+
aipt_v2/intelligence/llm_tool_selector.py,sha256=3R_4B6DsMlu_rrNPn7QgH8B98xomyK1g4EVSWkLl080,17569
|
|
61
|
+
aipt_v2/intelligence/payload_generator.py,sha256=PjuQGSaX7prDEXKPJ-XjIOzRJYuErdNdBXG3L__B-dY,18652
|
|
62
|
+
aipt_v2/intelligence/rag.py,sha256=Af_jJy3tRAXoN5pA8qftqnoU-_19T6QGBM6M6txpbV0,7776
|
|
63
|
+
aipt_v2/intelligence/scope.py,sha256=RgoIXAhfwS3M4vVjVid6bm3IYrRX4oaXYJWIgqdt9C0,15684
|
|
64
|
+
aipt_v2/intelligence/tools.json,sha256=_gmi_HPamoUczmm0XBY6dSxvaeDN9NNBpb6Pene1bqk,18787
|
|
65
|
+
aipt_v2/intelligence/triage.py,sha256=AZBXtwQRY63QOMVm2P4jnpI-m_vrCVACiHwvPiJl1G0,23888
|
|
66
|
+
aipt_v2/intelligence/searchers/__init__.py,sha256=pvJh-wUAIbu8KAeznOuGt613KOG0MFdTeN6zjIXXJuI,88
|
|
67
|
+
aipt_v2/intelligence/searchers/exploitdb_searcher.py,sha256=KHdWF7Wk8s2jPeermHYb8S-JMHXiYyhzskbQCB38M78,21584
|
|
68
|
+
aipt_v2/intelligence/searchers/github_searcher.py,sha256=9lbHNCrTC-tjdC0GLGWnKEMdAIMDdHVXU7G5S-EN5M8,20629
|
|
69
|
+
aipt_v2/intelligence/searchers/google_searcher.py,sha256=ryJa9l1XL-_y82t9ol7tKvL5U76fUon0PNPfE-I1QME,12971
|
|
70
|
+
aipt_v2/interface/__init__.py,sha256=WACNNcu4lEG6guMiqBZuHEEXQWFnxqWe6UFIAGNuCFY,69
|
|
71
|
+
aipt_v2/interface/cli.py,sha256=1dmqQZwIo6hXwT1yr1h2g0Tr_ePc2mEIT2JQMsbqWws,7375
|
|
72
|
+
aipt_v2/interface/main.py,sha256=47N98oY6NGLu67NLAdJHfnphGR_DrVFglkxKymnZmMs,17470
|
|
73
|
+
aipt_v2/interface/tui.py,sha256=dnQVOyJz_FeZYl0qJ6flB9iOjcq5e0ThdbwiVDIyf1M,44873
|
|
74
|
+
aipt_v2/interface/utils.py,sha256=wt8S6RG_M5hk8M3V3y8EAEMrnKyilWyZEZKrfc38zsM,20157
|
|
75
|
+
aipt_v2/llm/__init__.py,sha256=t-RTAqPWHPMcYQYs4PZi-7_wem6_tK4k40SHFMOBYkg,1154
|
|
76
|
+
aipt_v2/llm/config.py,sha256=EvUVR2ZDOtYHy56n2jlNp_yachoiiEglUBbjvY7WpuM,772
|
|
77
|
+
aipt_v2/llm/llm.py,sha256=6sOgdGivXXMgSv-2hAyAokNYKcL7SOT57nHPIQSZl2I,19143
|
|
78
|
+
aipt_v2/llm/memory.py,sha256=HGozRNc0pu0v1HX9dOQ_2gArb-Jlvr60skGC1-PQrjA,7088
|
|
79
|
+
aipt_v2/llm/request_queue.py,sha256=yIT9QrPuPPzwCfGgmM4aoDLo3eQVbfcrflL459kt1BE,2955
|
|
80
|
+
aipt_v2/llm/utils.py,sha256=6qEoFKJ0W-WIdYBvEeuspJ56zRuJXOWNpgCAe3KJvYo,2576
|
|
81
|
+
aipt_v2/models/__init__.py,sha256=Lc9trxaYbsYjJ51Ay-1LrifO8N704SUcriUavF1bIwY,311
|
|
82
|
+
aipt_v2/models/findings.py,sha256=MQMkbAF-JWMvdtm95n61LiPS_EIbVuZI4yFRLVjwPu0,10017
|
|
83
|
+
aipt_v2/models/phase_result.py,sha256=BrhxXwfhhUhGQiV8lYOuuvKPtMmgiIfGJf6xVj5uI7w,7707
|
|
84
|
+
aipt_v2/models/scan_config.py,sha256=NZiEDbje7184Yy4zW2rfDWAbWXdwNHI8_gcaqPrANPc,5950
|
|
85
|
+
aipt_v2/monitoring/prometheus.yml,sha256=s-l_puIYEzY2znAKvD-29KYPxYvX4vzEzAJgp-9O3bI,1580
|
|
86
|
+
aipt_v2/monitoring/grafana/dashboards/aipt-dashboard.json,sha256=R1yPueecFjBQvRpGJhSAWq8MYyFzNX-_DPz04SaKtKU,8404
|
|
87
|
+
aipt_v2/monitoring/grafana/dashboards/default.yml,sha256=4jhFtF2hACmI9iX4t7-qABiCjc7gGebgVCRUcFtJS4o,447
|
|
88
|
+
aipt_v2/monitoring/grafana/datasources/prometheus.yml,sha256=nM0MlIKzC2INM7IxmhTYn78Fot5YSGjx6-FrdPghqKY,473
|
|
89
|
+
aipt_v2/orchestration/__init__.py,sha256=fYsGObU74uL4q7GxCenEiP7n0qMvu85ayoWuH50NHm0,1263
|
|
90
|
+
aipt_v2/orchestration/pipeline.py,sha256=gKoY1hLHnRDFn52f4i54y1TEPAX0Ejv2XS1oit9QU00,12411
|
|
91
|
+
aipt_v2/orchestration/progress.py,sha256=NsDpwIfSy4ZJa7sO2bI4gL0gbewsaFbvrbfp3u1YM0I,9141
|
|
92
|
+
aipt_v2/orchestration/scheduler.py,sha256=2iFawQDKv4Si0IIFmj30z4rQGdD0j16NSfzpGIIsPlA,9300
|
|
93
|
+
aipt_v2/payloads/__init__.py,sha256=BUmTPqA-CGFTrp0_HOq3rnq3f3b7YdnrHWNE5zbvWzA,628
|
|
94
|
+
aipt_v2/payloads/cmdi.py,sha256=HVVwxOSZELhAbTIzPsFGDiYoeqw4ZDBsQ8eBceEyFCg,3777
|
|
95
|
+
aipt_v2/payloads/sqli.py,sha256=URagR9wyuolV6UW83yd501IciJcRt6NuiICqm9JYhZA,7606
|
|
96
|
+
aipt_v2/payloads/ssrf.py,sha256=Zk-x0PX61F4VocGsNn0Lsd2zhAgqqsgwjbkcK7kl3gc,5785
|
|
97
|
+
aipt_v2/payloads/templates.py,sha256=Ll57UsNDmW41KufltZLhiUtdc6YYKwW6cD6LTRjPqys,6566
|
|
98
|
+
aipt_v2/payloads/traversal.py,sha256=eablc3HV7naqrZhb8q-xO-WHdnJUzliP1AeTNM2yVpE,4687
|
|
99
|
+
aipt_v2/payloads/xss.py,sha256=k-oCcujSKrkh_hqkZEbB8zmh411mGcaFaRcC-mpaPcg,7295
|
|
100
|
+
aipt_v2/prompts/__init__.py,sha256=q51cHtx_LJYADkJ51Lypo23yBrW6PPKaOm-rMZ0QQB8,1576
|
|
101
|
+
aipt_v2/proxy/__init__.py,sha256=_QfAMOuuwTE4efQMSyDtwFU7EiKrKB1ZX_N8e9q6wGE,506
|
|
102
|
+
aipt_v2/proxy/history.py,sha256=7J6dbd8UsnGgL-Rt06BV-3j9JGyMLSU5JBjLnhFt-1E,11667
|
|
103
|
+
aipt_v2/proxy/interceptor.py,sha256=PEb428PUIAGtRETUruyfcPHj8hwEzcONrBlLEfPuj98,15152
|
|
104
|
+
aipt_v2/recon/__init__.py,sha256=mLH1ZtwXBIVRdQ_jgzerWXd7ZWwKGd8RyY_kxte0NFs,701
|
|
105
|
+
aipt_v2/recon/dns.py,sha256=GnT3XvWUHJcD6ym9v2JkIeNLWLvzL4X_OpTctVzVKgw,7573
|
|
106
|
+
aipt_v2/recon/osint.py,sha256=SblyUo-92Wv0V1dParC4AEhN9M_NP9jp5TvxTUOmqNw,11451
|
|
107
|
+
aipt_v2/recon/subdomain.py,sha256=r6ZYTQ5-sLJ-_2xOR4lSJ0NQpyWW2uA4BbxCwqLKR_g,13058
|
|
108
|
+
aipt_v2/recon/tech_detect.py,sha256=x-zADDChF9MFSfigVDhE9nSRIzTL_v8CpQNyhCeTVx4,11017
|
|
109
|
+
aipt_v2/reports/__init__.py,sha256=HYnbKVucW6H-2U9WJzsCAvKW34E4KVqqgVIcRebwIGo,362
|
|
110
|
+
aipt_v2/reports/generator.py,sha256=akadUEWLtDXwqDtBxYnUb0hqDlVWKyxtfP0ftX7-DzI,10868
|
|
111
|
+
aipt_v2/reports/html_report.py,sha256=bfD-PXLmhBs9tveeTdna9bpPWGRSQsb4VT2XYe5KKDU,11916
|
|
112
|
+
aipt_v2/runtime/__init__.py,sha256=gPhFxVRkSUW7IPJhLgTxD3H1jBfNDM-5ZpVpByG88jg,1437
|
|
113
|
+
aipt_v2/runtime/base.py,sha256=o9msgtd6rIhx9cbxADOpDhzoYbz0_YNEr9hD8VYuvUg,796
|
|
114
|
+
aipt_v2/runtime/docker.py,sha256=cDTGLmlg1fvD6K6Uez0baZIfPA0EFFxQSnlCUN3BCrg,15799
|
|
115
|
+
aipt_v2/runtime/local.py,sha256=mT4u8ckgYZKwSyiAh66KtwsuQKGoHE7zoGPSJFZvY5Y,10000
|
|
116
|
+
aipt_v2/runtime/tool_server.py,sha256=25eKVeB5MQy8aPCqOuz6keMx8EJ_YC7kaqYIXdyaP0c,6701
|
|
117
|
+
aipt_v2/runtime/vps.py,sha256=z_PtLxPk_ktsdsmsXY2JXxa8gubybZg07eyGbpBFFW4,31035
|
|
118
|
+
aipt_v2/scanners/__init__.py,sha256=E2NrISpawkqkrvMry-sI78-4jPAgCQUHJraMvEmROEA,653
|
|
119
|
+
aipt_v2/scanners/base.py,sha256=Cah-DqcmrccO53f-GYhltEHU3_wp6mm-1e8fFg058xg,7973
|
|
120
|
+
aipt_v2/scanners/nikto.py,sha256=sbTuKlMen-NMU3ZCG9ufZCCHLov2BBU0Xa74ojOjkyE,6999
|
|
121
|
+
aipt_v2/scanners/nmap.py,sha256=dtdyZ1dac9oNdn6OP_q9nk3_PaGCEDaQCWIJT64ghBA,12497
|
|
122
|
+
aipt_v2/scanners/nuclei.py,sha256=kci8uSfLIhvb2qYVKHQwKA4Jb1t3FJ9dbYqHT8Gatyk,8879
|
|
123
|
+
aipt_v2/scanners/web.py,sha256=iRsZuGntSYHrlQgF5UyobndZJiKES3J8DDS4Cv1DTvE,16912
|
|
124
|
+
aipt_v2/scripts/security_audit.py,sha256=tinOlHEPvrP3vDj4CLw0i8ZyeyURP5g4PnbfzzrJGf0,13103
|
|
125
|
+
aipt_v2/skills/__init__.py,sha256=uYVQrpDh986xvThXV80nZgMi-irDmc2lu252VoxDNfs,4767
|
|
126
|
+
aipt_v2/skills/agents/__init__.py,sha256=yzuZLoEa2B6GhwFSM1od44t8ZowM_A4Am5_qGtuG674,277
|
|
127
|
+
aipt_v2/skills/agents/api_tester.py,sha256=5Ad2pNhGPLQGBogJepKXgVFmNk6QWYTGweHIh7H3Bec,24143
|
|
128
|
+
aipt_v2/skills/agents/base.py,sha256=46Y-f7_roJ1jnhnIyQ7-g8wRPWAYRNfBIOY02tzgUq4,16560
|
|
129
|
+
aipt_v2/skills/agents/code_review.py,sha256=-Nfmj98qOKzuxFuzBUTDNekd_k4RXguziQqZ6Cp9nAY,15908
|
|
130
|
+
aipt_v2/skills/agents/security_agent.py,sha256=mg0vfqwlX2P3W0OQ7Qn0aWtvIs3ud1CVpVUb9n0wYe0,11420
|
|
131
|
+
aipt_v2/skills/agents/web_pentest.py,sha256=j8k2QvCJajx_dSbfGh5qmc4aHtyqE2DGL1CB2emUjkQ,27992
|
|
132
|
+
aipt_v2/skills/prompts/__init__.py,sha256=-aIjFO-opSsQAzcOMMirI9Ac33M-UIVDzp8zehYJhFw,23151
|
|
133
|
+
aipt_v2/telemetry/__init__.py,sha256=NgDmXwjI414-pj5RoZBeBDiqrxyLqLgQ5wde_qbEXMk,202
|
|
134
|
+
aipt_v2/telemetry/tracer.py,sha256=NscVZI3boe6H6GwXRViT04pwqVkzl30fAjJLhrv6Wxc,10777
|
|
135
|
+
aipt_v2/terminal/__init__.py,sha256=4Kz_ujY5nQo0YtST7dWA4IUZTUucB-6oAPyWTPU2JLo,463
|
|
136
|
+
aipt_v2/terminal/executor.py,sha256=bVYFEcQmwM-pPsltbKqBXILFBbdzNfoeT1YwPnhHD5A,12708
|
|
137
|
+
aipt_v2/terminal/sandbox.py,sha256=Vok_QEsN8NYp0XvB3BmC96y_gOnxI8Cgh_CBRrImEn0,10870
|
|
138
|
+
aipt_v2/tools/__init__.py,sha256=D2X-e2x0qPjrLB4G-4-dPevfmbbA6ext3fYZdAF2pi4,1120
|
|
139
|
+
aipt_v2/tools/executor.py,sha256=Nd5rjSnjjpODUU6rU646rIWbZ98-245Mt7DUn1jFzPk,10261
|
|
140
|
+
aipt_v2/tools/parser.py,sha256=16LQBeHdpiVi7qomG_uCzI8ILisorqaWYf97HuFJ7ho,12733
|
|
141
|
+
aipt_v2/tools/registry.py,sha256=V5KvjCyDBB50DXKPEJUEZs8D_m8ouspEEDYobBa1yk4,6018
|
|
142
|
+
aipt_v2/tools/tool_processing.py,sha256=ghw0Y9UOgnm2xv8ssActHyjViCeRuwRzB-8-tst9Hy8,3369
|
|
143
|
+
aipt_v2/tools/active_directory/__init__.py,sha256=zonguNOMklMSJqhT2upcORE0P5LWFPUp9mSTJ3FHMS8,1689
|
|
144
|
+
aipt_v2/tools/active_directory/ad_config.py,sha256=an6uJzQ2BKhznod1qChQWPRJ8OcD_Dk1hlRK8JsgIqo,7072
|
|
145
|
+
aipt_v2/tools/active_directory/bloodhound_wrapper.py,sha256=gPX5G6vxJIrnWvtjD2PY1zCdqcPJK4_dQTyHXUr7J_M,13766
|
|
146
|
+
aipt_v2/tools/active_directory/kerberos_attacks.py,sha256=7k89sHZOJZb7b3QS7Mwhqa80QrysuYP2NDtuaaggiL8,13019
|
|
147
|
+
aipt_v2/tools/active_directory/ldap_enum.py,sha256=KD9C7OUMpJUgJYVOOT_7VvHzwIM4dDPol_9Gl8MgZRg,17750
|
|
148
|
+
aipt_v2/tools/active_directory/smb_attacks.py,sha256=OrekGPUpDhXYo3ZtmYKZhUgjHZd3uADWn3GFQNC0aoM,15410
|
|
149
|
+
aipt_v2/tools/agents_graph/__init__.py,sha256=qUwVSi4zg4IXj7gysQnX7iQnNvZPoNOU81PVzup7rS4,351
|
|
150
|
+
aipt_v2/tools/agents_graph/agents_graph_actions.py,sha256=oJzDGPyKGCXSMKbWAXdHi6HUuEuP54lDro82a947fTE,1682
|
|
151
|
+
aipt_v2/tools/api_security/__init__.py,sha256=1I193xl6A7gc5uUHyCrx0o3KFqmDhxDZZ-I14Fv2QP4,1714
|
|
152
|
+
aipt_v2/tools/api_security/api_discovery.py,sha256=RONdBNra-FjdCB6lvPtdalh2YM9Ar-_dM8NtSdqWhnM,19951
|
|
153
|
+
aipt_v2/tools/api_security/graphql_scanner.py,sha256=CeQK5GLK0_VGPcHkAUgG8-Ro0n77hF8fIiikhCvP-RY,23434
|
|
154
|
+
aipt_v2/tools/api_security/jwt_analyzer.py,sha256=eqYfYSyWJps3dzo13pJuxORlpI-MWV6lLQfaEkrgjdA,21271
|
|
155
|
+
aipt_v2/tools/api_security/openapi_fuzzer.py,sha256=UkCAocub3BF1rS-eD0TflRVHz7zZetg5vYW9TsHq898,28194
|
|
156
|
+
aipt_v2/tools/browser/__init__.py,sha256=zbUtNfiJ_UrPNefmxqpD5lCidN1oMHXryxDbBGcCxUM,79
|
|
157
|
+
aipt_v2/tools/browser/browser_actions.py,sha256=ilYWP8X84ev1BgnRxxRCne1Cx84YiXs5IkWxfioutl8,7075
|
|
158
|
+
aipt_v2/tools/browser/browser_instance.py,sha256=cXkLMw-fboy54Iq1ECTaLELTxYJM9cDrtD69G-kRCwY,18641
|
|
159
|
+
aipt_v2/tools/browser/tab_manager.py,sha256=EvW16-z_IOuWR98nW3LSQNjN23dBJlMnYeplC3geIjI,13047
|
|
160
|
+
aipt_v2/tools/cloud/__init__.py,sha256=QusGn_xjAf8DWkoQVKT0-9uFDJ3Jr0HkR2o_-GOF-ck,1447
|
|
161
|
+
aipt_v2/tools/cloud/cloud_config.py,sha256=FkITOGELNyeAV2x6GJBrPDLAI29KU_pXGlZ88KUWZn8,9027
|
|
162
|
+
aipt_v2/tools/cloud/cloud_scanner.py,sha256=enqzw9SFhx6r7Kw2YjmZbZqAQDNptrVzR5ilmyEepAc,23333
|
|
163
|
+
aipt_v2/tools/cloud/prowler_tool.py,sha256=ofF5fvVZW0BR9X6co7E3aYSPLaIiIZ0wNSpzgK-7vVo,19458
|
|
164
|
+
aipt_v2/tools/cloud/scoutsuite_tool.py,sha256=BjA_F-qoPagEZkrw5wJ_SSHW1_hrGdraGv8SIU6yRnM,12078
|
|
165
|
+
aipt_v2/tools/proxy/__init__.py,sha256=6C0t4Suek9kw0Xhr7D-JeSP3V2C9X7fqQaOfCheRxbI,65
|
|
166
|
+
aipt_v2/tools/proxy/proxy_actions.py,sha256=d0KOSKXpcC8tNahVjINvaTyrIwnDYPX3e0E_U9_sbDw,2583
|
|
167
|
+
aipt_v2/tools/proxy/proxy_manager.py,sha256=MZ3OevuEKxM2FS7BFw2PjAxs4GRsFFp14GjZZJlcm7I,29088
|
|
168
|
+
aipt_v2/tools/scanners/__init__.py,sha256=tdozhdTM9Qm2VM70jZOQgJurhUZ4aBM1CHG6pGvgR7g,8721
|
|
169
|
+
aipt_v2/tools/scanners/acunetix_tool.py,sha256=n_SN_Crq8Y02Vm60zDwylXNwzPu-RwOedyg7DKOTc20,24160
|
|
170
|
+
aipt_v2/tools/scanners/burp_tool.py,sha256=HJr3FxtLmi6kRZp3ifGUpcbDcstB8zvBV-FVYvnbLII,21560
|
|
171
|
+
aipt_v2/tools/scanners/config.py,sha256=gzT_8ICsmsqL4mOZNXWf3KM4RewBGfdyrz_SdluvsRw,4625
|
|
172
|
+
aipt_v2/tools/scanners/nessus_tool.py,sha256=ijdGAWykCIKNUv1ziwOMyYfNCyR8eM3anrknM9MZKxo,18732
|
|
173
|
+
aipt_v2/tools/scanners/zap_tool.py,sha256=JZbYgWOj_bpRPSPJVSzlgCnFy1KYFzcrXCMbiGxOcdI,18384
|
|
174
|
+
aipt_v2/tools/terminal/__init__.py,sha256=dXHjA0sbzxyPFXo2tNtPHM52oURwGDfjfhMIySEKqaA,69
|
|
175
|
+
aipt_v2/tools/terminal/terminal_actions.py,sha256=3mLVb2q2iAxayCoGDA5Y8u3zJDUyTfpX3hNv0afc8RU,926
|
|
176
|
+
aipt_v2/tools/terminal/terminal_manager.py,sha256=PdrHTj8bP2syYWuv5pAyK2Yc7XgoJrLa1bCewN4WmeE,4874
|
|
177
|
+
aipt_v2/tools/terminal/terminal_session.py,sha256=9FXr3GGMMShruVWcCom9nvpoH7AvnH6qTQRCrQ2o6vU,16044
|
|
178
|
+
aipt_v2/utils/__init__.py,sha256=-aeWJbVaQlP55ahitLL_Gfm5ssI6SURFJhFVj5tg9ck,328
|
|
179
|
+
aipt_v2/utils/logging.py,sha256=OoINF9pNTWK4X9tZR3ZievQihQQKGc2IAYcP7-1yW6Y,5815
|
|
180
|
+
aipt_v2/utils/model_manager.py,sha256=CBejvzsbj3PGP8P4A0ctWAQSGtxSXkvbnJ1__i_RTFQ,5280
|
|
181
|
+
aipt_v2/utils/searchers/__init__.py,sha256=vlQMw2eZZk1Hbzto9CH6XLVySJIvQ2cG1UYzpUaEBEU,6183
|
|
182
|
+
aiptx-2.0.7.dist-info/licenses/LICENSE,sha256=o2YYvJT7XJld6vYBlXA9qEyBeql2v4h9GQZE8cIo-O8,1071
|
|
183
|
+
aiptx-2.0.7.dist-info/METADATA,sha256=SIXQIHGkzE_fldQFILXxKeFMiKHIbqqwsvshgXLgYkg,14222
|
|
184
|
+
aiptx-2.0.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
185
|
+
aiptx-2.0.7.dist-info/entry_points.txt,sha256=iui0TE-klO95J6NejCTykWRC7bJ08RNWXfIkDMouoFc,163
|
|
186
|
+
aiptx-2.0.7.dist-info/top_level.txt,sha256=FQYFloqroz1ZUblAANuXdCIUkjUm74NgJ5d2JgG5kwo,8
|
|
187
|
+
aiptx-2.0.7.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Satyam Rastogi
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
aipt_v2
|