-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 7aa1bed
Showing
32 changed files
with
47,995 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
venv/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 David Vélez | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Vulnerability Verification Project | ||
|
||
## Description | ||
|
||
This project is a vulnerability verification tool that uses Python and PyQt6 to provide an interactive user interface. It allows users to upload files, run checks, and visualize the results in an easy-to-read table. It also includes features such as a search engine and the ability to export new vulnerabilities. | ||
|
||
## Features | ||
|
||
- **Interactive User Interface**: Uses PyQt6 to provide a user interface that is easy to use and intuitive. | ||
- **Vulnerability Verification**: Allows users to upload files and run vulnerability checks. | ||
- **Results Visualization**: Displays the results of the checks in an easy-to-read table. | ||
- **Search Engine**: Includes a search engine to help users find specific information. | ||
- **Export New Vulnerabilities**: Allows users to export new vulnerabilities for review. | ||
|
||
## Installation | ||
|
||
To install the necessary dependencies for this project, you can use the following command: | ||
|
||
\```bash | ||
pip install -r requirements.txt | ||
\``` | ||
|
||
## Usage | ||
|
||
To use this tool, follow these steps: | ||
|
||
1. Run the main Python script. | ||
2. Use the user interface to upload your files. | ||
3. Run the vulnerability check. | ||
4. Review the results in the table. | ||
5. Use the search engine to find specific information. | ||
6. Export new vulnerabilities if necessary. | ||
|
||
## License | ||
|
||
This project is licensed under the MIT license. | ||
|
||
## Contributions | ||
|
||
Contributions are welcome. Please open an issue or a pull request to contribute. | ||
|
||
## Contact | ||
|
||
If you have any questions or comments, please open an issue in this repository. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
Metadata-Version: 2.1 | ||
Name: Vulnerability-Status-Checker | ||
Version: 0.1.0 | ||
Summary: A tool to check the vulnerability status of systems | ||
Home-page: https://github.com/DavidFVelez/vulnerability-status-checker | ||
Author: David Vélez | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Operating System :: OS Independent | ||
Requires-Python: >=3.6, <3.10.11 | ||
Description-Content-Type: text/markdown | ||
License-File: LICENSE | ||
|
||
# Vulnerability Verification Project | ||
|
||
## Description | ||
|
||
This project is a vulnerability verification tool that uses Python and PyQt6 to provide an interactive user interface. It allows users to upload files, run checks, and visualize the results in an easy-to-read table. It also includes features such as a search engine and the ability to export new vulnerabilities. | ||
|
||
## Features | ||
|
||
- **Interactive User Interface**: Uses PyQt6 to provide a user interface that is easy to use and intuitive. | ||
- **Vulnerability Verification**: Allows users to upload files and run vulnerability checks. | ||
- **Results Visualization**: Displays the results of the checks in an easy-to-read table. | ||
- **Search Engine**: Includes a search engine to help users find specific information. | ||
- **Export New Vulnerabilities**: Allows users to export new vulnerabilities for review. | ||
|
||
## Installation | ||
|
||
To install the necessary dependencies for this project, you can use the following command: | ||
|
||
\```bash | ||
pip install -r requirements.txt | ||
\``` | ||
|
||
## Usage | ||
|
||
To use this tool, follow these steps: | ||
|
||
1. Run the main Python script. | ||
2. Use the user interface to upload your files. | ||
3. Run the vulnerability check. | ||
4. Review the results in the table. | ||
5. Use the search engine to find specific information. | ||
6. Export new vulnerabilities if necessary. | ||
|
||
## License | ||
|
||
This project is licensed under the MIT license. | ||
|
||
## Contributions | ||
|
||
Contributions are welcome. Please open an issue or a pull request to contribute. | ||
|
||
## Contact | ||
|
||
If you have any questions or comments, please open an issue in this repository. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
LICENSE | ||
README.md | ||
setup.py | ||
Vulnerability_Status_Checker.egg-info/PKG-INFO | ||
Vulnerability_Status_Checker.egg-info/SOURCES.txt | ||
Vulnerability_Status_Checker.egg-info/dependency_links.txt | ||
Vulnerability_Status_Checker.egg-info/requires.txt | ||
Vulnerability_Status_Checker.egg-info/top_level.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
altgraph==0.17.4 | ||
click==8.1.7 | ||
colorama==0.4.6 | ||
numpy==1.26.4 | ||
packaging==24.0 | ||
pandas==2.2.2 | ||
pefile==2023.2.7 | ||
pyinstaller==6.6.0 | ||
pyinstaller-hooks-contrib==2024.4 | ||
PyQt6==6.4.2 | ||
pyqt6-plugins==6.4.2.2.3 | ||
PyQt6-Qt6==6.4.3 | ||
PyQt6-sip==13.6.0 | ||
pyqt6-tools==6.4.2.3.3 | ||
python-dateutil==2.9.0.post0 | ||
python-dotenv==1.0.1 | ||
pytz==2024.1 | ||
pywin32-ctypes==0.2.2 | ||
qt6-applications==6.4.3.2.3 | ||
qt6-tools==6.4.3.1.3 | ||
six==1.16.0 | ||
tzdata==2024.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
Empty file.
Oops, something went wrong.