Skip to content

Commit

Permalink
Vulnerability Status Checker
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidFVelez committed Apr 19, 2024
0 parents commit 7aa1bed
Show file tree
Hide file tree
Showing 32 changed files with 47,995 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
venv/
21 changes: 21 additions & 0 deletions LICENSE
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.
44 changes: 44 additions & 0 deletions README.md
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.
57 changes: 57 additions & 0 deletions Vulnerability_Status_Checker.egg-info/PKG-INFO
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.
8 changes: 8 additions & 0 deletions Vulnerability_Status_Checker.egg-info/SOURCES.txt
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
1 change: 1 addition & 0 deletions Vulnerability_Status_Checker.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

22 changes: 22 additions & 0 deletions Vulnerability_Status_Checker.egg-info/requires.txt
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
1 change: 1 addition & 0 deletions Vulnerability_Status_Checker.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Empty file added __init__.py
Empty file.
Loading

0 comments on commit 7aa1bed

Please sign in to comment.