{"id":13541956,"url":"https://github.com/IAmStoxe/urlgrab","last_synced_at":"2025-04-02T09:33:06.353Z","repository":{"id":50705162,"uuid":"276756445","full_name":"IAmStoxe/urlgrab","owner":"IAmStoxe","description":"A golang utility to spider through a website searching for additional links.","archived":false,"fork":false,"pushed_at":"2020-11-07T12:19:25.000Z","size":99,"stargazers_count":337,"open_issues_count":8,"forks_count":60,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-03-31T07:05:31.264Z","etag":null,"topics":["spider"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/IAmStoxe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-07-02T22:26:29.000Z","updated_at":"2025-03-11T13:41:05.000Z","dependencies_parsed_at":"2022-08-26T05:50:14.838Z","dependency_job_id":null,"html_url":"https://github.com/IAmStoxe/urlgrab","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IAmStoxe%2Furlgrab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IAmStoxe%2Furlgrab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IAmStoxe%2Furlgrab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IAmStoxe%2Furlgrab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IAmStoxe","download_url":"https://codeload.github.com/IAmStoxe/urlgrab/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246788949,"owners_count":20834200,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["spider"],"created_at":"2024-08-01T10:00:59.352Z","updated_at":"2025-04-02T09:33:06.288Z","avatar_url":"https://github.com/IAmStoxe.png","language":"Go","readme":"\u003ch1 align=\"center\"\u003eWelcome to urlgrab 👋\u003c/h1\u003e\n\u003cp\u003e\n  \u003ca href=\"https://twitter.com/DevinStokes\" target=\"_blank\"\u003e\n    \u003cimg alt=\"Twitter: DevinStokes\" src=\"https://img.shields.io/twitter/follow/DevinStokes.svg?style=social\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003e A golang utility to spider through a website searching for additional links with support for JavaScript rendering.\n\n## Install\n\n```sh\ngo get -u github.com/iamstoxe/urlgrab\n```\n\n## Features\n\n* Customizable Parallelism\n* Ability to Render JavaScript \u003csup\u003e(including Single Page Applications such as Angular and React)\u003c/sup\u003e\n\n\n## Usage\n\n```bash\nUsage of urlgrab:\n  -cache-dir string\n        Specify a directory to utilize caching. Works between sessions as well.\n  -debug\n        Extremely verbose debugging output. Useful mainly for development.\n  -delay int\n        Milliseconds to randomly apply as a delay between requests. (default 2000)\n  -depth int\n        The maximum limit on the recursion depth of visited URLs.  (default 2)\n  -headless\n        If true the browser will be displayed while crawling.\n        Note: Requires render-js flag\n        Note: Usage to show browser: --headless=false (default true)\n  -ignore-query\n        Strip the query portion of the URL before determining if we've visited it yet.\n  -ignore-ssl\n        Scrape pages with invalid SSL certificates\n  -js-timeout int\n        The amount of seconds before a request to render javascript should timeout. (default 10)\n  -json string\n        The filename where we should store the output JSON file.\n  -max-body int\n        The limit of the retrieved response body in kilobytes.\n        0 means unlimited.\n        Supply this value in kilobytes. (i.e. 10 * 1024kb = 10MB) (default 10240)\n  -no-head\n        Do not send HEAD requests prior to GET for pre-validation.\n  -output-all string\n        The directory where we should store the output files.\n  -proxy string\n        The SOCKS5 proxy to utilize (format: socks5://127.0.0.1:8080 OR http://127.0.0.1:8080).\n        Supply multiple proxies by separating them with a comma.\n  -random-agent\n        Utilize a random user agent string.\n  -render-js\n        Determines if we utilize a headless chrome instance to render javascript.\n  -root-domain string\n        The root domain we should match links against.\n        If not specified it will default to the host of --url.\n        Example: --root-domain google.com\n  -threads int\n        The number of threads to utilize. (default 5)\n  -timeout int\n        The amount of seconds before a request should timeout. (default 10)\n  -url string\n        The URL where we should start crawling.\n  -urls string\n        A file path that contains a list of urls to supply as starting urls.\n        Requires --root-domain flag.\n  -user-agent string\n        A user agent such as (Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0).\n  -verbose\n        Verbose output\n\n```\n\n## Build \nYou can easily build a binary specific to your platform into the `bin` directory with th following command:\n```\nmake build\n```\n\nif you want to make binaries for Windows, Linux and MacOS to distribute the CLI, just run this command:\n```\nmake cross\n```\nAll the binaries will be available in the `dist` directory.\n\n## Author\n\n👤 **Devin Stokes**\n\n* Twitter: [@DevinStokes](https://twitter.com/DevinStokes)\n* Github: [@IAmStoxe](https://github.com/IAmStoxe)\n\n## 🤝 Contributing\n\nContributions, issues and feature requests are welcome!\u003cbr /\u003eFeel free to check [issues page](https://github.com/IAmStoxe/urlgrab/issue). \n\n## Show your support\n\nGive a ⭐ if this project helped you!\n\n\u003ca href=\"https://www.buymeacoffee.com/stoxe\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.buymeacoffee.com/buttons/default-white.png\" alt=\"Buy Me A Coffee\" style=\"height: 51px !important;width: 217px !important;\" \u003e\u003c/a\u003e\n","funding_links":["https://www.buymeacoffee.com/stoxe"],"categories":["Recon","Weapons","Go"],"sub_categories":["Links","Tools"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FIAmStoxe%2Furlgrab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FIAmStoxe%2Furlgrab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FIAmStoxe%2Furlgrab/lists"}