Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xaitax committed May 24, 2024
1 parent 3efb481 commit 0fb9400
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ SploitScan is a powerful and user-friendly tool designed to streamline the proce
- **[Nessus](https://www.tenable.com/products/nessus) (.nessus)**
- **[Nexpose](https://www.rapid7.com/products/nexpose/) (.xml)**
- **[OpenVAS](https://www.openvas.org/) (.xml)**
- **[Docker](https://docs.docker.com/scout/) (.json)**:
- **[Docker](https://docs.docker.com/scout/) (.json)**

## 🚀 Usage

Expand Down Expand Up @@ -175,6 +175,7 @@ Contributions are welcome. Please feel free to fork, modify, and make pull reque
- [Javier Álvarez](https://github.com/jalvarezz13) for bugfixes.
- [Romullo](https://github.com/Romullo) for ideas & suggestions.
- [davidfortytwo](https://github.com/davidfortytwo) for enhancements (Updated CVE retrieval and PacketStorm addition).
- [con-f-use](https://github.com/con-f-use) for support and fixes with setuptools/PyPi.

## 📌 Author

Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ dependencies = [
"openai~=1.30.2"
]
requires-python = ">=3.8"
scripts.sploitscan = "sploitscan.sploitscan:cli"

[project.scripts]
sploitscan = "sploitscan.sploitscan:cli"

[project.urls]
homepage = "https://github.com/xaitax/SploitScan"
Expand Down
4 changes: 4 additions & 0 deletions sploitscan/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from .sploitscan import cli

if __name__ == "__main__":
cli()

0 comments on commit 0fb9400

Please sign in to comment.