fixed info

This commit is contained in:
OusmBlueNinja 2024-12-29 00:40:49 -06:00
parent 010d75c7b4
commit 73fe281402
2 changed files with 5 additions and 5 deletions

View File

@ -15,18 +15,18 @@ This Python script extracts the DLL dependencies of a Windows executable file an
## Installation ## Installation
Install the required Python library: Install the required Python library:
```bash ```bash
pip install pefile pip install -r requirements.txt
``` ```
## Usage ## Usage
Run the script with the path to an executable file as an argument: Run the script with the path to an executable file as an argument:
```bash ```bash
python get_dll_dependencies.py <path_to_exe> python main.py
``` ```
### Example ### Example
```bash ```bash
python get_dll_dependencies.py my_program.exe python main.py
``` ```
Output: Output:
``` ```
@ -39,7 +39,6 @@ Non-OS DLL Dependencies:
## Notes ## Notes
- The script assumes the executable is a valid PE (Portable Executable) file. - The script assumes the executable is a valid PE (Portable Executable) file.
- It gracefully handles errors such as missing files or invalid PE formats.
## License ## License
This project is open-source and available under the MIT License. This project is open-source and available under the MIT License.

View File

@ -1 +1,2 @@
pefile pefile
shutil