{"id":37079038,"url":"https://github.com/ackatz/seclook-cli","last_synced_at":"2026-01-14T09:34:16.725Z","repository":{"id":197875034,"uuid":"699587270","full_name":"ackatz/seclook-cli","owner":"ackatz","description":"Simple security lookups via CLI","archived":true,"fork":false,"pushed_at":"2025-01-29T03:56:26.000Z","size":93,"stargazers_count":16,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-20T01:31:12.188Z","etag":null,"topics":["cybersecurity","cybersecurity-tools","infosec","lookup","security","security-tools"],"latest_commit_sha":null,"homepage":"https://pypi.org/p/seclook/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ackatz.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}},"created_at":"2023-10-02T23:31:44.000Z","updated_at":"2025-07-19T23:57:16.000Z","dependencies_parsed_at":"2024-05-17T20:40:35.842Z","dependency_job_id":"1e639f99-b7d5-4529-8083-1f738d566a67","html_url":"https://github.com/ackatz/seclook-cli","commit_stats":null,"previous_names":["ackatz/seclook","ackatz/seclook-cli"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ackatz/seclook-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackatz%2Fseclook-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackatz%2Fseclook-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackatz%2Fseclook-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackatz%2Fseclook-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ackatz","download_url":"https://codeload.github.com/ackatz/seclook-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ackatz%2Fseclook-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28416111,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T08:38:59.149Z","status":"ssl_error","status_checked_at":"2026-01-14T08:38:43.588Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["cybersecurity","cybersecurity-tools","infosec","lookup","security","security-tools"],"created_at":"2026-01-14T09:34:16.028Z","updated_at":"2026-01-14T09:34:16.720Z","avatar_url":"https://github.com/ackatz.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Tests](https://github.com/ackatz/seclook-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/ackatz/seclook-cli/actions/workflows/ci.yml)\n[![Release](https://github.com/ackatz/seclook-cli/actions/workflows/cd.yml/badge.svg)](https://github.com/ackatz/seclook-cli/actions/workflows/cd.yml)\n[![Downloads](https://static.pepy.tech/badge/seclook)](https://pepy.tech/project/seclook)\n\n# seclook\n\n`seclook` is a security lookup CLI tool that allows you to query various security services on the fly. It is essentially a wrapper over the `requests` library that removes the need to manually search within Web UIs or write your own requests in Postman or cURL to query these services.\n\nYou can look up information using commands like `seclook [service] [value]`, where the service can be `virustotal`, `shodan`, `emailrep`, and so on. The value is the information you're querying for and varies by service.\n\n## Installation\n\n1. `pip install seclook`\n2. Copy [config.ini.sample](https://github.com/ackatz/seclook/blob/main/config.ini.sample) from this directory and place it in `~/.seclook/config.ini`\n3. Open `~/.seclook/config.ini` and add in your own API keys for the services you want to use. \n\n\u003e Some services (e.g., GreyNoise, ThreatFox) _don't require API keys_, but may be rate-limited more quickly without one or have other limitations. Others (e.g., YARAify) do not need an API key at all and will not be referenced in the config file.\n\n## Usage\n\nBasic usage of `seclook` is as follows:\n\n```bash\nseclook [service] [value]\n```\n\nFor example, to look up IP 1.1.1.1 on AbuseIPDB, you'd run:\n\n```bash\nseclook abuseipdb 1.1.1.1\n```\n\nYou can pipe the output to `fx` or `jq` for further processing:\n\n```bash\nseclook emailrep andrew@akatz.org | fx\n```\n\nYou can `grep` the output for known keys to get specific information:\n\n```bash\nseclook virustotal 44d88612fea8a8f36de82e1278abb02f | grep malicious\n```\n\n## Options\n\n`--export` – Use this flag to export the results to a JSON file in your current working directory.\n\n## Supported services\n\n- [x] [quick](https://quick.akatz.org)\n- [x] [VirusTotal](https://virustotal.com/)\n- [x] [Shodan](https://www.shodan.io/)\n- [x] [Emailrep](https://emailrep.io/)\n- [x] [AbuseIPDB](https://www.abuseipdb.com/)\n- [x] [GreyNoise](https://www.greynoise.io/)\n- [x] [ThreatFox](https://threatfox.abuse.ch/)\n- [x] [Pulsedive](https://pulsedive.com/)\n- [x] [Yaraify](https://yaraify.abuse.ch/)\n\nYou can also view supported services by passing `list` as the service name:\n\n```bash \nseclook list\n```\n\n## Upgrading\n\nTo upgrade seclook to the latest version:\n\n```bash\npip install --upgrade seclook\n```\n\n## Contributing\n\nIf you'd like to contribute to seclook, please feel free to fork the repository, create a feature branch, and then submit a Pull Request.\n\n## License\n\nMIT License\n\n## Contact\n\n[andrew@akatz.org](mailto:andrew@akatz.org)\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fackatz%2Fseclook-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fackatz%2Fseclook-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fackatz%2Fseclook-cli/lists"}