A Python script that automatically discovers and documents popular cybersecurity projects on GitHub. The script searches for repositories with 50+ stars in the cybersecurity category, and saves relevant information locally.
- 🔍 Searches for cybersecurity repositories with 50+ stars
- 🚫 Excludes forked repositories
- 📁 Creates organized folders for each repository
- 📝 Saves repository URLs and descriptions
- 🔢 Configurable number of repositories to process
- Python 3.8+
- Chrome browser installed
- GitHub Personal Access Token
- Clone this repository
- Install the required packages:
pip install -r requirements.txt
- Create a
.env
file with your GitHub token:
GITHUB_TOKEN=your_github_token_here
- Go to github.com → Settings → Developer Settings → Personal Access Tokens → Tokens (classic)
- Generate new token with these permissions:
public_repo
read:org
- Copy the token to your
.env
file
Run the script:
python main.py
You'll be prompted to:
- Process repositories
- Remove all existing folders
- Remove existing folders and process new repositories
When processing repositories, you can specify how many to scan or press Enter for no limit.
For each repository, the script creates:
- A folder named after the repository
info.txt
containing the repository URL and description
- Never commit your
.env
file - Keep your GitHub token secure
- Revoke tokens if accidentally exposed
MIT License
This project is licensed under the MIT License - a permissive license that allows you to:
- Use the code commercially
- Modify the code
- Distribute the code
- Use the code privately
- Sublicense the code
The only requirement is that you include the original copyright notice and license disclaimer in any copy of the software/source.
See the MIT License for full details.