{"id":26070297,"url":"https://github.com/phishing-database/checksums","last_synced_at":"2026-01-30T21:03:55.427Z","repository":{"id":268565188,"uuid":"904358364","full_name":"Phishing-Database/checksums","owner":"Phishing-Database","description":"The checksums for the files published through phish.co.za/latest.","archived":false,"fork":false,"pushed_at":"2026-01-23T12:30:41.000Z","size":9486,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-01-23T13:03:29.948Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://phish.co.za/latest","language":null,"has_issues":false,"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/Phishing-Database.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["funilrys","mitchellkrogza"],"ko_fi":"mitchellkrog"}},"created_at":"2024-12-16T18:25:41.000Z","updated_at":"2026-01-23T12:30:45.000Z","dependencies_parsed_at":"2024-12-17T15:25:05.794Z","dependency_job_id":"5031ee9e-5e29-40bd-aca8-5e9b3ab9c3d6","html_url":"https://github.com/Phishing-Database/checksums","commit_stats":null,"previous_names":["phishing-database/checksums"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Phishing-Database/checksums","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Phishing-Database%2Fchecksums","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Phishing-Database%2Fchecksums/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Phishing-Database%2Fchecksums/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Phishing-Database%2Fchecksums/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Phishing-Database","download_url":"https://codeload.github.com/Phishing-Database/checksums/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Phishing-Database%2Fchecksums/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28919365,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T20:25:28.696Z","status":"ssl_error","status_checked_at":"2026-01-30T20:25:13.426Z","response_time":66,"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":[],"created_at":"2025-03-08T23:15:52.054Z","updated_at":"2026-01-30T21:03:55.409Z","avatar_url":"https://github.com/Phishing-Database.png","language":null,"funding_links":["https://github.com/sponsors/funilrys","https://github.com/sponsors/mitchellkrogza","https://ko-fi.com/mitchellkrog","https://ko-fi.com/mitchellkrogza)!","https://github.com/sponsors/funilrys)!"],"categories":[],"sub_categories":[],"readme":"# Checksums\n\nThis repository provides checksum files for the Phishing.Database project. These checksums ensure the integrity of the files published or updated as part of the project.\n\n## Format\n\nEach time a new file is published to [phish.co.za](https://phish.co.za) or an existing file is updated in the Phishing Database project, the corresponding checksum files are updated or published in this repository.\n\nThese files follow these naming conventions, where `filename` refers to the file you want to verify:\n\n- `filename.md5`\n- `filename.sha1`\n- `filename.sha256`\n- `filename.sha512`\n\n## Usage\n\nFor every file in the Phishing Database project, you can find its associated checksum files in this repository. These checksum files can be used to verify the integrity and authenticity of the downloaded files.\n\n### Linux\n\nUse the following commands to verify a file against its checksum:\n\n- **MD5**:\n  ```bash\n  md5sum -c filename.md5\n  ```\n- **SHA1**:\n  ```bash\n  sha1sum -c filename.sha1\n  ```\n- **SHA256**:\n  ```bash\n  sha256sum -c filename.sha256\n  ```\n- **SHA512**:\n  ```bash\n  sha512sum -c filename.sha512\n  ```\n\n### macOS\n\nOn macOS, you can use the following commands in the Terminal. The `shasum` command supports multiple algorithms via the `-a` flag:\n\n- **MD5**:\n  ```bash\n  md5 filename\n  ```\n  Compare the output with the contents of `filename.md5`.\n\n- **SHA1**:\n  ```bash\n  shasum -a 1 filename\n  ```\n  Compare the output with the contents of `filename.sha1`.\n\n- **SHA256**:\n  ```bash\n  shasum -a 256 filename\n  ```\n  Compare the output with the contents of `filename.sha256`.\n\n- **SHA512**:\n  ```bash\n  shasum -a 512 filename\n  ```\n  Compare the output with the contents of `filename.sha512`.\n\n### Windows\n\n1. Open Command Prompt (CMD).\n2. Navigate to the folder containing the file and checksum.\n3. Run the following commands:\n\n- **MD5**:\n  ```cmd\n  certutil -hashfile filename MD5\n  ```\n- **SHA1**:\n  ```cmd\n  certutil -hashfile filename SHA1\n  ```\n- **SHA256**:\n  ```cmd\n  certutil -hashfile filename SHA256\n  ```\n- **SHA512**:\n  ```cmd\n  certutil -hashfile filename SHA512\n  ```\n\nCompare the output of the above commands with the content of the checksum files to ensure integrity.\n\n## Authors\n\n- **Mitchell Krog** ([@mitchellkrogza](https://github.com/mitchellkrogza)) - Support **@mitchellkrogza** on [Ko-fi](https://ko-fi.com/mitchellkrogza)!\n\n- **Nissar Chababy** ([@funilrys](https://github.com/funilrys)) - Sponsor **@funilrys** via [GitHub Sponsors](https://github.com/sponsors/funilrys)!\n\n- **Phishing Database Contributors**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphishing-database%2Fchecksums","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphishing-database%2Fchecksums","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphishing-database%2Fchecksums/lists"}