{"id":34897146,"url":"https://github.com/rickd3ckard/cerb3rus","last_synced_at":"2026-04-27T09:01:45.396Z","repository":{"id":329433457,"uuid":"1118531517","full_name":"rickd3ckard/Cerb3rus","owner":"rickd3ckard","description":"Cerb3rus is a c# dotnet console app designed to compile a list of existing online domains that accept http requests, using the crt.sh certificate database. The main feature beeing the ability to filter domains by top-level domain.","archived":false,"fork":false,"pushed_at":"2025-12-19T14:14:57.000Z","size":10,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-22T05:44:07.287Z","etag":null,"topics":["domains","dotnet","httprequests","scraper"],"latest_commit_sha":null,"homepage":"https://github.com/rickd3ckard/Cerb3rus","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rickd3ckard.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-17T22:40:34.000Z","updated_at":"2025-12-19T14:16:35.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/rickd3ckard/Cerb3rus","commit_stats":null,"previous_names":["rickd3ckard/cerb3rus"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/rickd3ckard/Cerb3rus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rickd3ckard%2FCerb3rus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rickd3ckard%2FCerb3rus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rickd3ckard%2FCerb3rus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rickd3ckard%2FCerb3rus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rickd3ckard","download_url":"https://codeload.github.com/rickd3ckard/Cerb3rus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rickd3ckard%2FCerb3rus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32329466,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"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":["domains","dotnet","httprequests","scraper"],"created_at":"2025-12-26T07:37:35.950Z","updated_at":"2026-04-27T09:01:45.389Z","avatar_url":"https://github.com/rickd3ckard.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cerb3rus\nCerb3rus is a c# dotnet console app designed to compile a list of existing online domains that accept http requests, using the [crt.sh](https://crt.sh/) certificate database. The main feature beeing the ability to **filter domains by top-level domain**. The resulting list can either be stored as a .txt file locally or sent to a **sql database**.\n\n## Installation and usage\nFetch the github repository and navigate to the cerb3rus project folder, then run the console app using dotnet :\n```bash\ngit clone https://github.com/rickd3ckard/Cerb3rus.git\n```\n```bash\ncd Cerb3rus -\u003e cd Cerb3rus\n```\n```bash\ndotnet run -- -f .be\n```\nThe output is written inside a .txt file as json List\u003cstring\u003e that lands in the project directory.\n\n### Command Arguments\nHere find  a list of the different possible arguments:\n| Argument | Description | Example\n|-----|------------|----------|\n| `-f` | Filter for top-level domain | .be |\n| `-o` | Custom output file name or full file path (overwrite default) | nicelist.txt |\n| `-s` | Sql Server Address | srv1424.hstgr.io |\n| `-u` | Sql UserName | u157358140_Cerberus |\n| `-p` | Sql Password | NicePassword123! |\n| `-d` | Sql Database Name | u157358140_Cerberus! |\n\n### Command Examples\nSimple default execution:\n``` bash\ndotnet run -- -f .be \n```\nChanging the output file name: \n``` bash\ndotnet run -- -f .be -o Nicelist.txt\n```\nChanging the output file name and location: \n``` bash\ndotnet run -- -f .be -o C:/Users/Ricky/Desktop/Nicelist.txt\n```\nSending everything to an sql database:\n``` bash\ndotnet run -- -f .be -s srv1424.hstgr.io -u u157358140_Cerberus -p NicePassword123 -d u157358140_Cerberus\n```\n### Sql Database set up\nThe SQL database must contain a table named **domains** with a single column named **domain** as **TINYTEXT**.\n| Column | Type     | Description |\n|------|----------|-------------|\n| `domain` | TINYTEXT | Stores domain names (e.g. example.com) |\n\nHere find the SQL command to create such table:\n\n``` SQL\nCREATE TABLE domains (\n    domain TINYTEXT\n);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frickd3ckard%2Fcerb3rus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frickd3ckard%2Fcerb3rus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frickd3ckard%2Fcerb3rus/lists"}