{"id":21743415,"url":"https://github.com/synacktraa/crawl","last_synced_at":"2026-04-06T06:04:57.811Z","repository":{"id":128946345,"uuid":"581902291","full_name":"synacktraa/crawl","owner":"synacktraa","description":"Web crawler designed to efficiently retrieve unique href, script and form links from a web application.","archived":false,"fork":false,"pushed_at":"2023-01-10T15:01:32.000Z","size":67,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-20T05:51:24.381Z","etag":null,"topics":["bash","crawler","regex","shell","web-spidering"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/synacktraa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-12-24T19:48:52.000Z","updated_at":"2024-03-10T05:24:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"4cf9340d-2146-442b-b57e-e00f8351540e","html_url":"https://github.com/synacktraa/crawl","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/synacktraa/crawl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synacktraa%2Fcrawl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synacktraa%2Fcrawl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synacktraa%2Fcrawl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synacktraa%2Fcrawl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/synacktraa","download_url":"https://codeload.github.com/synacktraa/crawl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/synacktraa%2Fcrawl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31461534,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"online","status_checked_at":"2026-04-06T02:00:07.287Z","response_time":112,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["bash","crawler","regex","shell","web-spidering"],"created_at":"2024-11-26T07:08:00.683Z","updated_at":"2026-04-06T06:04:57.805Z","avatar_url":"https://github.com/synacktraa.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=center\u003e\n\u003cbr\u003e\n\u003ca href=\"http://makeapullrequest.com\"\u003e\u003cimg src=\"https://img.shields.io/badge/PRs-welcome-darkred.svg\"\u003e\u003c/a\u003e\n\u003cimg src=\"https://img.shields.io/badge/os-linux-darkred\"\u003e\n\u003cimg src=\"https://img.shields.io/badge/os-mac-darkred\"\u003e\n\u003cimg src=\"https://img.shields.io/badge/os-windows-darkred\"\u003e\n\u003cimg src=\"https://img.shields.io/badge/os-android-darkred\"\u003e\n\u003cbr\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003ecrawl\u003ch1\u003e\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://imgur.com/kN5LnMQ.jpg\" alt=\"Spider's image\"/\u003e\n\u003c/p\u003e\n\n\u003ch3 align=\"center\"\u003e\nA simple web crawler written in shell script, designed to efficiently discover endpoints and assets within a web application.\n\u003c/h3\u003e\n\n##  Usage\n\n```bash\n$ crawl\n```\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://imgur.com/tsLsR6Z.png\" alt=\"ASCII Spider's image\"/\u003e\n\u003c/p\u003e\n\n```\n$ crawl -h\n|Usage:\n|  crawl [-f] [href|script|form] \n|\n|Options:\n|  -h show help menu\n|  -d number of depth to scrape.\n|  -f attribute a type of link. [href|script|form]\n|\n|Example:\n|  crawl -f script [domain].[TLD]\n|  crawl -d 1 [domain].[TLD]/directory\n|  crawl -f href [domain].[TLD]/directory?key=value\n|\n|Fetches all href, script and form links, if no flags are specified.\n|Uses HTTPs as default protocol, if no protocol is specified.                                                               \n```\n\n```bash\n$ echo google.com | crawl\n```\n\n[![asciicast](https://imgur.com/XmhgWm5.png)](https://asciinema.org/a/1nQQGtpE6q8qweVS2q9dfpAaa)\n\n##  Tool Chain\n\nGet all subdomains of owasp.org and crawl the ones that are alive.\n\n```bash\nsubfinder -d owasp.org | httpx | crawl\n```\n  \n## Features\n-   Fetches all href, script and form links.\n-   Highlights the Depth-1 URLs and indicates which Depth-2 URLs are included under each Depth-1 URL.\n-   Uses HTTPs as default protocol, if no protocol is specified.\n-   Depth is set to 1 by default, if depth is not specified.\n-   Can be linked with other tool(s)/command(s) using pipes to create a tool chain.\n-   Output will be color-less if it's redirected to a file or piped to a another command.\n  \n##  Installation\n\n```bash\ngit clone https://github.com/synacktraa/crawl.git \u0026\u0026 cd ./crawl\nsudo mv ./crawl /usr/local/bin\ncd .. \u0026\u0026 rm -rf \"./crawl\"\n```\n\n##  Dependencies\n\n- curl\n- sed\n- grep\n- awk\n- wc\n- sort\n- uniq\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsynacktraa%2Fcrawl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsynacktraa%2Fcrawl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsynacktraa%2Fcrawl/lists"}