{"id":17682965,"url":"https://github.com/ytisf/rainbowqr","last_synced_at":"2025-05-12T23:50:36.303Z","repository":{"id":73638373,"uuid":"503276191","full_name":"ytisf/RainbowQR","owner":"ytisf","description":"Python package to encode THREE QR codes into ONE.","archived":false,"fork":false,"pushed_at":"2022-06-14T08:50:44.000Z","size":24,"stargazers_count":9,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-01T04:51:11.251Z","etag":null,"topics":["exfiltration","python3","qrcode","steganography","steganography-library"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ytisf.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":"2022-06-14T08:39:06.000Z","updated_at":"2024-10-20T19:24:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"569b3692-0021-4f6e-997c-5e5324d097dd","html_url":"https://github.com/ytisf/RainbowQR","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytisf%2FRainbowQR","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytisf%2FRainbowQR/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytisf%2FRainbowQR/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytisf%2FRainbowQR/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ytisf","download_url":"https://codeload.github.com/ytisf/RainbowQR/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253843167,"owners_count":21972868,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["exfiltration","python3","qrcode","steganography","steganography-library"],"created_at":"2024-10-24T09:43:58.815Z","updated_at":"2025-05-12T23:50:36.284Z","avatar_url":"https://github.com/ytisf.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RainbowQR\n\n![RainbowQR](https://raw.githubusercontent.com/ytisf/RainbowQR/main/QRSample.png)\n\n## Abstract\nQR codes are such versatile tool in relaying information. This project is intended to examine some 'unorthodox' notions of evaluating various types of usage. The first attempt created here is combining a data set of THREE distinct QR codes into one QR code based on the significance of a color bit. \nIn this example, a data set is split into THREE distinct chunks. These chunks are then encoded into a QR code seperately, and then merged on the color bits. For example, chunk 0 will be correlating to the red bit, chunk 1 to the green bit and chunk 2 to the blue bit. The combination should enable transmitting 3x the amount of information over the same image. \n\n\nIn a one liner - it combines three QR codes into one by correlating the color bits.\n\n\n## Installation\n```bash\ngit clone https://www.github.com/ytisf/RainbowQR\ncd RainbowQR\npip3 install -r requirements3.txt\n```\n## Usage\nEncoding:\n```python\n#!/usr/bin/env python3\n\nimport base64\n\nfrom rainbowqr import RainbowQR\n\ndata = b\"This is a test of the QR code decoder.\\n\"\ndata = base64.b64encode(data)\n\nmQR = RainbowQR(qr_version=4)\nqred_files = mQR.Encode(data)\n\n```\nDecoding:\n```python\n#!/usr/bin/env python3\n\nfrom rainbowqr import RainbowQR\n\nfor file in qred_files:\n    data = mQR.Decode(file)\n    print(data)\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fytisf%2Frainbowqr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fytisf%2Frainbowqr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fytisf%2Frainbowqr/lists"}