zelinscanner 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.
- zelinscanner-1.0.0/PKG-INFO +38 -0
- zelinscanner-1.0.0/README.md +17 -0
- zelinscanner-1.0.0/setup.cfg +4 -0
- zelinscanner-1.0.0/setup.py +34 -0
- zelinscanner-1.0.0/zelinscanner.egg-info/PKG-INFO +38 -0
- zelinscanner-1.0.0/zelinscanner.egg-info/SOURCES.txt +8 -0
- zelinscanner-1.0.0/zelinscanner.egg-info/dependency_links.txt +1 -0
- zelinscanner-1.0.0/zelinscanner.egg-info/entry_points.txt +2 -0
- zelinscanner-1.0.0/zelinscanner.egg-info/requires.txt +3 -0
- zelinscanner-1.0.0/zelinscanner.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: zelinscanner
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Advanced Multi-Payload Web Vulnerability Scanner
|
|
5
|
+
Author: zenithxNecxus
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.6
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: requests>=2.25.0
|
|
12
|
+
Requires-Dist: beautifulsoup4>=4.9.0
|
|
13
|
+
Requires-Dist: colorama>=0.4.0
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: description-content-type
|
|
18
|
+
Dynamic: requires-dist
|
|
19
|
+
Dynamic: requires-python
|
|
20
|
+
Dynamic: summary
|
|
21
|
+
|
|
22
|
+
# ZelinScanner V3
|
|
23
|
+
|
|
24
|
+
**ZelinScanner** adalah tools keamanan web otomatis untuk mendeteksi kerentanan dengan cepat dan akurat.
|
|
25
|
+
|
|
26
|
+
## ✨ Fitur
|
|
27
|
+
|
|
28
|
+
- 🔥 **8 Jenis Kerentanan** (RCE, SSTI, SQLi, LFI, XXE, SSRF, JWT, XSS)
|
|
29
|
+
- 🕷️ **Smart Crawler** - Menemukan parameter otomatis
|
|
30
|
+
- ⚡ **Multi-Threading** - Scan cepat
|
|
31
|
+
- ✅ **Validasi Otomatis** - Mengurangi false positive
|
|
32
|
+
- 📁 **JSON Output** - Hasil scan tersimpan rapi
|
|
33
|
+
- 🔌 **Proxy Support** - Integrasi dengan Burp Suite
|
|
34
|
+
|
|
35
|
+
## 📦 Install
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pip install zelinscanner
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# ZelinScanner V3
|
|
2
|
+
|
|
3
|
+
**ZelinScanner** adalah tools keamanan web otomatis untuk mendeteksi kerentanan dengan cepat dan akurat.
|
|
4
|
+
|
|
5
|
+
## ✨ Fitur
|
|
6
|
+
|
|
7
|
+
- 🔥 **8 Jenis Kerentanan** (RCE, SSTI, SQLi, LFI, XXE, SSRF, JWT, XSS)
|
|
8
|
+
- 🕷️ **Smart Crawler** - Menemukan parameter otomatis
|
|
9
|
+
- ⚡ **Multi-Threading** - Scan cepat
|
|
10
|
+
- ✅ **Validasi Otomatis** - Mengurangi false positive
|
|
11
|
+
- 📁 **JSON Output** - Hasil scan tersimpan rapi
|
|
12
|
+
- 🔌 **Proxy Support** - Integrasi dengan Burp Suite
|
|
13
|
+
|
|
14
|
+
## 📦 Install
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pip install zelinscanner
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
with open("README.md", "r", encoding="utf-8") as fh:
|
|
4
|
+
long_description = fh.read()
|
|
5
|
+
|
|
6
|
+
setup(
|
|
7
|
+
name="zelinscanner",
|
|
8
|
+
version="1.0.0",
|
|
9
|
+
author="zenithxNecxus",
|
|
10
|
+
description="Advanced Multi-Payload Web Vulnerability Scanner",
|
|
11
|
+
long_description=long_description,
|
|
12
|
+
long_description_content_type="text/markdown",
|
|
13
|
+
packages=find_packages(),
|
|
14
|
+
classifiers=[
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
],
|
|
19
|
+
python_requires=">=3.6",
|
|
20
|
+
install_requires=[
|
|
21
|
+
"requests>=2.25.0",
|
|
22
|
+
"beautifulsoup4>=4.9.0",
|
|
23
|
+
"colorama>=0.4.0",
|
|
24
|
+
],
|
|
25
|
+
entry_points={
|
|
26
|
+
"console_scripts": [
|
|
27
|
+
"zelinscan=zelinscanner.scanner:main",
|
|
28
|
+
],
|
|
29
|
+
},
|
|
30
|
+
include_package_data=True,
|
|
31
|
+
package_data={
|
|
32
|
+
"zelinscanner": ["payloads/*.txt"],
|
|
33
|
+
},
|
|
34
|
+
)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: zelinscanner
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Advanced Multi-Payload Web Vulnerability Scanner
|
|
5
|
+
Author: zenithxNecxus
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.6
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: requests>=2.25.0
|
|
12
|
+
Requires-Dist: beautifulsoup4>=4.9.0
|
|
13
|
+
Requires-Dist: colorama>=0.4.0
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: description-content-type
|
|
18
|
+
Dynamic: requires-dist
|
|
19
|
+
Dynamic: requires-python
|
|
20
|
+
Dynamic: summary
|
|
21
|
+
|
|
22
|
+
# ZelinScanner V3
|
|
23
|
+
|
|
24
|
+
**ZelinScanner** adalah tools keamanan web otomatis untuk mendeteksi kerentanan dengan cepat dan akurat.
|
|
25
|
+
|
|
26
|
+
## ✨ Fitur
|
|
27
|
+
|
|
28
|
+
- 🔥 **8 Jenis Kerentanan** (RCE, SSTI, SQLi, LFI, XXE, SSRF, JWT, XSS)
|
|
29
|
+
- 🕷️ **Smart Crawler** - Menemukan parameter otomatis
|
|
30
|
+
- ⚡ **Multi-Threading** - Scan cepat
|
|
31
|
+
- ✅ **Validasi Otomatis** - Mengurangi false positive
|
|
32
|
+
- 📁 **JSON Output** - Hasil scan tersimpan rapi
|
|
33
|
+
- 🔌 **Proxy Support** - Integrasi dengan Burp Suite
|
|
34
|
+
|
|
35
|
+
## 📦 Install
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pip install zelinscanner
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|