Here's a description you can use for your GitHub repository:
This Python script retrieves archived URLs for a specified subdomain of the zoom.us domain from the Wayback Machine. It fetches all available archived URLs and filters them based on the presence of a pwd= parameter in the query string.
- Fetch Archived URLs: Retrieves a list of archived URLs for any subdomain under
zoom.us(e.g.,test.zoom.us,abc.zoom.us). - Filter by
pwd=: Filters and displays only those URLs that contain thepwd=parameter, which is often used for Zoom meeting links requiring a password. - Custom Subdomain Input: Allows you to input any subdomain to retrieve its archived URLs.
- Wayback Machine Integration: Uses the Wayback Machine's CDX API to fetch historical snapshots of the specified subdomain.
- Clone this repository.
- Install the required dependencies with:
pip install requests
- Run the script:
python fetch_pwd_urls.py
- Enter the desired subdomain when prompted (e.g.,
testfortest.zoom.us). - The script will display all archived URLs containing the
pwd=parameter.
If you input the subdomain abc, the script will return a list of archived URLs like:
https://web.archive.org/web/20230101010101/https://abc.zoom.us/j/1234567890?pwd=abcd1234
Feel free to open issues or pull requests if you'd like to contribute to the project. Bug fixes, feature suggestions, or improvements are always welcome!
Feel free to modify this description as needed! It covers all the essential aspects of the script and provides a good starting point for your GitHub repository.