A Monitoring tool for Cyber Threats. (Collect Cyber News from different RSS Feeds).
at my job, I needed to check cyber threat news daily from multiple news sources; So I developed this python tool to ease my routine.
this tool reads multiple cybernews feeds and organizes them into a docx file.
- Python
- python pip
in windows
run the following in command prompt or just double-click on setup.bat
then run.bat
setup.bat
run.bat
for linux
environments:
sh ./setup.sh
then wait for the result to be saved in reports directory.
from now on just ./run.sh
to get the news.
- feedparser - Parse Atom and RSS feeds in Python
- difflib - Compare sequences, especially lines of text
- python-docx - creating and updating Microsoft Word (.docx) files
- Pool - multiprocessing module
- traceback - Print stack traces of Python programs
- python-dateutil - datetime utilities
Contributions are always welcome! Please follow these steps:
- Fork the project repository. This creates a copy of the project on your account that you can modify without affecting the original project.
- Clone the forked repository to your local machine using a Git client like Git or GitHub Desktop.
- Create a new branch with a descriptive name (e.g.,
new-feature-branch
orbugfix-issue-123
).
git checkout -b new-feature-branch
- Make changes to the project's codebase.
- Commit your changes to your local branch with a clear commit message that explains the changes you've made.
git commit -m 'Implemented new feature.'
- Push your changes to your forked repository on GitHub using the following command
git push origin new-feature-branch
- Create a new pull request to the original project repository. In the pull request, describe the changes you've made and why they're necessary. The project maintainers will review your changes and provide feedback or merge them into the main branch.
This project is licensed under the GPL License - see the LICENSE file for details.