{"id":17673705,"url":"https://github.com/andoryuuta/kiwi","last_synced_at":"2026-03-10T08:02:55.149Z","repository":{"id":34528045,"uuid":"38470715","full_name":"Andoryuuta/kiwi","owner":"Andoryuuta","description":"A package for memory editing in go.","archived":false,"fork":false,"pushed_at":"2020-08-27T01:11:34.000Z","size":41,"stargazers_count":42,"open_issues_count":5,"forks_count":7,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-14T15:56:50.314Z","etag":null,"topics":["go","golang","memory","memory-editing","memory-hacking"],"latest_commit_sha":null,"homepage":"","language":"Go","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/Andoryuuta.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}},"created_at":"2015-07-03T03:50:35.000Z","updated_at":"2025-04-23T17:49:59.000Z","dependencies_parsed_at":"2022-09-14T14:11:44.429Z","dependency_job_id":null,"html_url":"https://github.com/Andoryuuta/kiwi","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Andoryuuta/kiwi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andoryuuta%2Fkiwi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andoryuuta%2Fkiwi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andoryuuta%2Fkiwi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andoryuuta%2Fkiwi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Andoryuuta","download_url":"https://codeload.github.com/Andoryuuta/kiwi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andoryuuta%2Fkiwi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30327558,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T05:25:20.737Z","status":"ssl_error","status_checked_at":"2026-03-10T05:25:17.430Z","response_time":106,"last_error":"SSL_read: 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":["go","golang","memory","memory-editing","memory-hacking"],"created_at":"2024-10-24T06:04:29.813Z","updated_at":"2026-03-10T08:02:55.111Z","avatar_url":"https://github.com/Andoryuuta.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kiwi\n[![GoDoc](https://godoc.org/github.com/Andoryuuta/kiwi?status.svg)](https://godoc.org/github.com/Andoryuuta/kiwi)\n\nA package for memory editing in go.\n\n## Current Features\n* Reading and Writing with support for [uint \u0026 int 8, 16, 32, 64] [float 32, 64] data types\n* Support for Windows and Linux(assuming /proc/ directory exists.) \n\n## _Future_ plans\n* Pattern scanning for bytecode\n* Call remote functions via injected assembly\n* Hooking functions via injected assembly\n* Setting breakpoints via windows debugging api\n* Mono runtime features (if hooking and remote functions are possible)\n\n## Installation\n`go get github.com/Andoryuuta/kiwi`\n\n## Usage\n```Go\npackage main\n\nimport (\n\t\"log\"\n\n\t\"github.com/Andoryuuta/kiwi\"\n)\n\nfunc main() {\n\t// The memory address of variable inside of target process.\n\texternVarAddr := uintptr(0x001A51E8)\n\n\t// Find the process from the executable name.\n\tproc, err := kiwi.GetProcessByFileName(\"example.exe\")\n\tif err != nil {\n\t\tlog.Fatalln(\"Error while trying to find process.\")\n\t}\n\n\t// Read from the target process.\n\texternVar, err := proc.ReadUint32(externVarAddr)\n\tif err != nil {\n\t\tlog.Fatalln(\"Error while trying to read from target process.\")\n\t}\n\n\t// Output the variable we read.\n\tlog.Println(\"Read\", externVar)\n\n\t// Write a new value of 1000 to the variable\n\terr = proc.WriteUint32(externVarAddr, 1000)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n```\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandoryuuta%2Fkiwi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandoryuuta%2Fkiwi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandoryuuta%2Fkiwi/lists"}