{"id":17727667,"url":"https://github.com/hackenbergstefan/cwtoolbox","last_synced_at":"2026-05-01T14:33:53.094Z","repository":{"id":199268539,"uuid":"699896025","full_name":"hackenbergstefan/cwtoolbox","owner":"hackenbergstefan","description":"Unifying different ChipWhisperer devices and side-channel simulations to a common and easy-to-use API.","archived":false,"fork":false,"pushed_at":"2025-05-04T07:17:58.000Z","size":61,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-04T08:25:53.107Z","etag":null,"topics":["chipwhisperer","python","side-channel-analysis"],"latest_commit_sha":null,"homepage":"","language":"Python","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/hackenbergstefan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSES/MIT.txt","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-03T14:52:06.000Z","updated_at":"2025-05-04T07:17:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"74ceb3f3-a92e-4580-83db-3c10749cfe9c","html_url":"https://github.com/hackenbergstefan/cwtoolbox","commit_stats":null,"previous_names":["hackenbergstefan/cwtoolbox"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/hackenbergstefan/cwtoolbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackenbergstefan%2Fcwtoolbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackenbergstefan%2Fcwtoolbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackenbergstefan%2Fcwtoolbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackenbergstefan%2Fcwtoolbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hackenbergstefan","download_url":"https://codeload.github.com/hackenbergstefan/cwtoolbox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackenbergstefan%2Fcwtoolbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32501402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["chipwhisperer","python","side-channel-analysis"],"created_at":"2024-10-25T18:07:17.088Z","updated_at":"2026-05-01T14:33:53.073Z","avatar_url":"https://github.com/hackenbergstefan.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ChipWhisperer Toolbox\n\nUnifying different ChipWhisperer devices and side-channel simulations to a common and easy-to-use API.\n\n## Usage\n\n### Unix\n\n1. Install prerequisites:\n   - Git\n   - Python \u003e=3.8\n   - Make\n   - arm-none-eabi-gcc, libnewlib-arm-none-eabi (for Arm victims)\n   - avr-gcc, avr-libc (for CWLITEXMEGA)\n2. Clone and setup ChipWhisperer:\n\n   ```sh\n   git clone https://github.com/newaetech/chipwhisperer.git $HOME/work/chipwhisperer\n   export CWFIRMWAREPATH=$HOME/chipwhisperer/hardware/victims/firmware\n   ```\n\n   Tip: If you are using VSCode you can omit setting the environment variable globally by adding a `.env` file in you workspace-root with the content `CWFIRMWAREPATH=$HOME/chipwhisperer/hardware/victims/firmware`.\n\n3. If necessary: Adjust udev rules as described here: [https://chipwhisperer.readthedocs.io/en/latest/linux-install.html#installing-chipwhisperer](https://chipwhisperer.readthedocs.io/en/latest/linux-install.html#installing-chipwhisperer)\n\n4. Add `cwtoolbox` as requirement to your project:\n\n   `pyproject.toml`:\n\n   ```toml\n   [tool.poetry.dependencies]\n   cwtoolbox = {git = \"https://github.com/hackenbergstefan/cwtoolbox.git\", tag=\"v0.3.0\"}\n   ```\n\n   `requirements.txt`:\n\n   ```txt\n   git+https://github.com/hackenbergstefan/cwtoolbox.git@v0.3.0#egg=cwtoolbox\n   ```\n\n### Windows\n\n1. Install ChipWhisperer as described here: [https://chipwhisperer.readthedocs.io/en/latest/windows-install.html#windows-bundled-installer](https://chipwhisperer.readthedocs.io/en/latest/windows-install.html#windows-bundled-installer).\n\n2. Assuming you installed ChipWhisperer to `C:\\cw`.\n\n   Add the following folders to your `PATH`:\n\n   ```txt\n   C:\\cw\\cw\\usr\\bin;C:\\cw\\cw\\home\\portable\\armgcc\\bin;C:\\cw\\cw\\home\\portable\\avrgcc\\bin\n   ```\n\n   Create the following environment variable:\n\n   ```txt\n   CWFIRMWAREPATH=C:\\cw\\cw\\home\\portable\\chipwhisperer\\hardware\\victims\\firmware\n   ```\n\n   Tip: If you are using VSCode you can achieve that settings per workspace by adding a `.env` file with the following content:\n\n   ```txt\n   PATH=C:\\cw\\cw\\usr\\bin;C:\\cw\\cw\\home\\portable\\armgcc\\bin;C:\\cw\\cw\\home\\portable\\avrgcc\\bin;$env[\"PATH\"]\n   CWFIRMWAREPATH=C:\\cw\\cw\\home\\portable\\chipwhisperer\\hardware\\victims\\firmware\n   ```\n\n3. Add `cwtoolbox` as requirement to your project:\n\n   `pyproject.toml`:\n\n   ```toml\n   [tool.poetry.dependencies]\n   cwtoolbox = {git = \"https://github.com/hackenbergstefan/cwtoolbox.git\", tag=\"v0.3.0\"}\n   ```\n\n   `requirements.txt`:\n\n   ```txt\n   git+https://github.com/hackenbergstefan/cwtoolbox.git@v0.3.0#egg=cwtoolbox\n   ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackenbergstefan%2Fcwtoolbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhackenbergstefan%2Fcwtoolbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackenbergstefan%2Fcwtoolbox/lists"}