astrotools-cli 1.0.0__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.
- astrotools_cli-1.0.0/LICENSE +21 -0
- astrotools_cli-1.0.0/PKG-INFO +114 -0
- astrotools_cli-1.0.0/README.md +82 -0
- astrotools_cli-1.0.0/astrotools/__init__.py +3 -0
- astrotools_cli-1.0.0/astrotools/__main__.py +4 -0
- astrotools_cli-1.0.0/astrotools/cli.py +1345 -0
- astrotools_cli-1.0.0/astrotools_cli.egg-info/PKG-INFO +114 -0
- astrotools_cli-1.0.0/astrotools_cli.egg-info/SOURCES.txt +12 -0
- astrotools_cli-1.0.0/astrotools_cli.egg-info/dependency_links.txt +1 -0
- astrotools_cli-1.0.0/astrotools_cli.egg-info/entry_points.txt +2 -0
- astrotools_cli-1.0.0/astrotools_cli.egg-info/requires.txt +3 -0
- astrotools_cli-1.0.0/astrotools_cli.egg-info/top_level.txt +1 -0
- astrotools_cli-1.0.0/pyproject.toml +58 -0
- astrotools_cli-1.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 CINEFy
|
|
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,114 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: astrotools-cli
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Network reconnaissance, security, diagnostics and cryptography CLI toolkit
|
|
5
|
+
Author: CINEFy
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/CINEFy/astrotools
|
|
8
|
+
Project-URL: Repository, https://github.com/CINEFy/astrotools
|
|
9
|
+
Project-URL: Issues, https://github.com/CINEFy/astrotools/issues
|
|
10
|
+
Keywords: network,security,reconnaissance,cryptography,cli,port-scanner,geoip,dns,pentesting
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: Information Technology
|
|
14
|
+
Classifier: Intended Audience :: System Administrators
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Topic :: Security
|
|
23
|
+
Classifier: Topic :: System :: Networking
|
|
24
|
+
Classifier: Topic :: Utilities
|
|
25
|
+
Requires-Python: >=3.9
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
License-File: LICENSE
|
|
28
|
+
Requires-Dist: requests>=2.28
|
|
29
|
+
Requires-Dist: questionary>=1.10
|
|
30
|
+
Requires-Dist: rich>=12.0
|
|
31
|
+
Dynamic: license-file
|
|
32
|
+
|
|
33
|
+
# AstroTools CLI
|
|
34
|
+
|
|
35
|
+
> **PyPI name:** `astrotools-cli` · **Command:** `astrotools`
|
|
36
|
+
|
|
37
|
+
AstroTools is an interactive network reconnaissance, security, diagnostics and
|
|
38
|
+
cryptography CLI toolkit. It bundles 20+ tools into a single menu-driven
|
|
39
|
+
terminal application built with `rich` and `questionary`.
|
|
40
|
+
|
|
41
|
+
> **Disclaimer:** Use only against systems you own or are explicitly
|
|
42
|
+
> authorized to test. Unauthorized scanning/sniffing may be illegal.
|
|
43
|
+
|
|
44
|
+
## Installation
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
pip install astrotools-cli
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Usage
|
|
51
|
+
|
|
52
|
+
Run the interactive menu:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
astrotools
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Or as a module:
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
python -m astrotools
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Included Tools
|
|
65
|
+
|
|
66
|
+
| # | Tool | Description |
|
|
67
|
+
|---|------|-------------|
|
|
68
|
+
| 1 | Password Generator | Create strong passwords and estimate strength |
|
|
69
|
+
| 2 | Hash Generator & Verifier | Generate or verify MD5/SHA hashes |
|
|
70
|
+
| 3 | My Network Info | Show local/public IP and geolocation summary |
|
|
71
|
+
| 4 | Domain IP Lookup | Resolve domains and reverse DNS records |
|
|
72
|
+
| 5 | GeoIP Tracker | Locate an IP or domain by public GeoIP data |
|
|
73
|
+
| 6 | MAC Vendor Lookup | Identify manufacturer from a MAC/OUI prefix |
|
|
74
|
+
| 7 | Subnet Calculator & Sweep | Calculate CIDR details and find live hosts |
|
|
75
|
+
| 8 | Port Scanner | Scan TCP ports and identify common services |
|
|
76
|
+
| 9 | Subdomain Finder | Resolve common subdomains for a target domain |
|
|
77
|
+
| 10 | Web Directory Fuzzer | Check common web paths and endpoints |
|
|
78
|
+
| 11 | HTTP Header Inspector | View headers and audit security headers |
|
|
79
|
+
| 12 | Packet Sniffer | Capture and summarize live raw IP packets |
|
|
80
|
+
| 13 | SSL/TLS Inspector | Read certificate issuer, validity, and SANs |
|
|
81
|
+
| 14 | RDAP / WHOIS Lookup | Fetch domain registration intelligence |
|
|
82
|
+
| 15 | Traceroute | Trace network path hops to a target |
|
|
83
|
+
| 16 | Interfaces & ARP | Show local adapters and ARP/neighbor table |
|
|
84
|
+
| 17 | DNS Record Lookup | Query A, AAAA, MX, NS, TXT, SOA, and CNAME |
|
|
85
|
+
| 18 | HTTP Status Checker | Show status, redirects, timing, and server info |
|
|
86
|
+
| 19 | TCP Ping | Measure TCP connection latency to a host and port |
|
|
87
|
+
| 20 | Listening Ports | List local services listening on network ports |
|
|
88
|
+
| 21 | Tech Stack Detector | Fingerprint web frameworks, CDN/WAF, and cookies |
|
|
89
|
+
| 22 | Web Endpoint Auditor | Check common web metadata and exposure paths |
|
|
90
|
+
|
|
91
|
+
## Requirements
|
|
92
|
+
|
|
93
|
+
- Python 3.9+
|
|
94
|
+
- `requests`, `questionary`, `rich`
|
|
95
|
+
- Packet sniffer on Windows requires running as Administrator
|
|
96
|
+
|
|
97
|
+
## Development
|
|
98
|
+
|
|
99
|
+
Build the distribution:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
pip install build
|
|
103
|
+
python -m build
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
Publish:
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
twine upload dist/*
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
## License
|
|
113
|
+
|
|
114
|
+
[MIT](LICENSE)
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# AstroTools CLI
|
|
2
|
+
|
|
3
|
+
> **PyPI name:** `astrotools-cli` · **Command:** `astrotools`
|
|
4
|
+
|
|
5
|
+
AstroTools is an interactive network reconnaissance, security, diagnostics and
|
|
6
|
+
cryptography CLI toolkit. It bundles 20+ tools into a single menu-driven
|
|
7
|
+
terminal application built with `rich` and `questionary`.
|
|
8
|
+
|
|
9
|
+
> **Disclaimer:** Use only against systems you own or are explicitly
|
|
10
|
+
> authorized to test. Unauthorized scanning/sniffing may be illegal.
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
pip install astrotools-cli
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
|
|
20
|
+
Run the interactive menu:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
astrotools
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Or as a module:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
python -m astrotools
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Included Tools
|
|
33
|
+
|
|
34
|
+
| # | Tool | Description |
|
|
35
|
+
|---|------|-------------|
|
|
36
|
+
| 1 | Password Generator | Create strong passwords and estimate strength |
|
|
37
|
+
| 2 | Hash Generator & Verifier | Generate or verify MD5/SHA hashes |
|
|
38
|
+
| 3 | My Network Info | Show local/public IP and geolocation summary |
|
|
39
|
+
| 4 | Domain IP Lookup | Resolve domains and reverse DNS records |
|
|
40
|
+
| 5 | GeoIP Tracker | Locate an IP or domain by public GeoIP data |
|
|
41
|
+
| 6 | MAC Vendor Lookup | Identify manufacturer from a MAC/OUI prefix |
|
|
42
|
+
| 7 | Subnet Calculator & Sweep | Calculate CIDR details and find live hosts |
|
|
43
|
+
| 8 | Port Scanner | Scan TCP ports and identify common services |
|
|
44
|
+
| 9 | Subdomain Finder | Resolve common subdomains for a target domain |
|
|
45
|
+
| 10 | Web Directory Fuzzer | Check common web paths and endpoints |
|
|
46
|
+
| 11 | HTTP Header Inspector | View headers and audit security headers |
|
|
47
|
+
| 12 | Packet Sniffer | Capture and summarize live raw IP packets |
|
|
48
|
+
| 13 | SSL/TLS Inspector | Read certificate issuer, validity, and SANs |
|
|
49
|
+
| 14 | RDAP / WHOIS Lookup | Fetch domain registration intelligence |
|
|
50
|
+
| 15 | Traceroute | Trace network path hops to a target |
|
|
51
|
+
| 16 | Interfaces & ARP | Show local adapters and ARP/neighbor table |
|
|
52
|
+
| 17 | DNS Record Lookup | Query A, AAAA, MX, NS, TXT, SOA, and CNAME |
|
|
53
|
+
| 18 | HTTP Status Checker | Show status, redirects, timing, and server info |
|
|
54
|
+
| 19 | TCP Ping | Measure TCP connection latency to a host and port |
|
|
55
|
+
| 20 | Listening Ports | List local services listening on network ports |
|
|
56
|
+
| 21 | Tech Stack Detector | Fingerprint web frameworks, CDN/WAF, and cookies |
|
|
57
|
+
| 22 | Web Endpoint Auditor | Check common web metadata and exposure paths |
|
|
58
|
+
|
|
59
|
+
## Requirements
|
|
60
|
+
|
|
61
|
+
- Python 3.9+
|
|
62
|
+
- `requests`, `questionary`, `rich`
|
|
63
|
+
- Packet sniffer on Windows requires running as Administrator
|
|
64
|
+
|
|
65
|
+
## Development
|
|
66
|
+
|
|
67
|
+
Build the distribution:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
pip install build
|
|
71
|
+
python -m build
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Publish:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
twine upload dist/*
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## License
|
|
81
|
+
|
|
82
|
+
[MIT](LICENSE)
|