{"id":25074716,"url":"https://github.com/rix4uni/timelimitx","last_synced_at":"2026-02-13T18:33:44.113Z","repository":{"id":265181806,"uuid":"895142775","full_name":"rix4uni/timelimitx","owner":"rix4uni","description":"timelimitx is alternative advanced version of timeout command.","archived":false,"fork":false,"pushed_at":"2024-11-27T16:42:59.000Z","size":2,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-10T23:04:25.121Z","etag":null,"topics":["bug-bounty","bugbounty","bugbountytips","hacking","infosec","osint","osint-resources","osint-tool","penetration-testing","pentest-tool","pentesting","recon","reconnaissance","security","security-tools","threat-intelligence","timeout"],"latest_commit_sha":null,"homepage":null,"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/rix4uni.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-11-27T16:27:25.000Z","updated_at":"2025-03-07T01:05:14.000Z","dependencies_parsed_at":"2024-11-29T01:35:01.659Z","dependency_job_id":null,"html_url":"https://github.com/rix4uni/timelimitx","commit_stats":null,"previous_names":["rix4uni/timelimitx"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/rix4uni/timelimitx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Ftimelimitx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Ftimelimitx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Ftimelimitx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Ftimelimitx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rix4uni","download_url":"https://codeload.github.com/rix4uni/timelimitx/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Ftimelimitx/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29414279,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T06:24:03.484Z","status":"ssl_error","status_checked_at":"2026-02-13T06:23:12.830Z","response_time":78,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bug-bounty","bugbounty","bugbountytips","hacking","infosec","osint","osint-resources","osint-tool","penetration-testing","pentest-tool","pentesting","recon","reconnaissance","security","security-tools","threat-intelligence","timeout"],"created_at":"2025-02-07T00:18:21.826Z","updated_at":"2026-02-13T18:33:44.108Z","avatar_url":"https://github.com/rix4uni.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"## timelimitx\n\ntimelimitx is alternative advanced version of timeout command.\n\n## Installation\n```\ngo install github.com/rix4uni/timelimitx@latest\n```\n\n## Download prebuilt binaries\n```\nwget https://github.com/rix4uni/timelimitx/releases/download/v0.0.1/timelimitx-linux-amd64-0.0.1.tgz\ntar -xvzf timelimitx-linux-amd64-0.0.1.tgz\nrm -rf timelimitx-linux-amd64-0.0.1.tgz\nmv timelimitx ~/go/bin/timelimitx\n```\nOr download [binary release](https://github.com/rix4uni/timelimitx/releases) for your platform.\n\n## Compile from source\n```\ngit clone --depth 1 github.com/rix4uni/timelimitx.git\ncd timelimitx; go install\n```\n\n## Usage\n```\nUsage of timelimitx:\n  -s, --signal string   Signal to send on timeout (e.g., SIGTERM, SIGINT, SIGKILL) (default \"SIGTERM\")\n  -t, --time string     Time limit (e.g., 1s, 1m, 1h)\n      --verbose         Enable verbose output\n      --version         Print the version of the tool and exit.\n```\n\n## Examples\n```\n▶ timelimitx -t 1s ping google.com\n\nOR\n▶ timelimitx -t 1s \"ping google.com\"\n\nOR, If you debugging\n▶ time timelimitx -t 1s ping google.com\n```\n\n#### If you using `shell pipelines (|) and redirection (2\u003e/dev/null)` then use your command in single or double quotes.\n```\n▶ timelimitx -t 1m \"echo target.com | uforall -silent 2\u003e/dev/null | unew -el -i -t -q target.com.txt\"\n\nOR, 1 minute for complete command\ntimelimitx -t 1m \"for target in $(cat subs.txt);do echo $target | uforall -silent 2\u003e/dev/null | unew -el -i -t -q $target.txt;done\"\n\nOR, 1 minute for every uforall command\nfor target in $(cat subs.txt);do timelimitx -t 1m \"echo $target | uforall -silent 2\u003e/dev/null | unew -el -i -t -q $target.txt\";done\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frix4uni%2Ftimelimitx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frix4uni%2Ftimelimitx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frix4uni%2Ftimelimitx/lists"}