{"id":22194137,"url":"https://github.com/delphilite/delphihookutils","last_synced_at":"2026-02-21T14:31:10.509Z","repository":{"id":91159990,"uuid":"69961511","full_name":"delphilite/DelphiHookUtils","owner":"delphilite","description":"Delphi Hooking Library by Lsuper","archived":false,"fork":false,"pushed_at":"2025-08-17T11:38:29.000Z","size":544,"stargazers_count":149,"open_issues_count":1,"forks_count":61,"subscribers_count":22,"default_branch":"master","last_synced_at":"2025-10-25T08:11:23.109Z","etag":null,"topics":["delphi","delphinuspackage","detours","fmx","freepascal","hook","hooking","hooks","lazarus","patch","trampoline"],"latest_commit_sha":null,"homepage":"","language":"Pascal","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/delphilite.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":"2016-10-04T12:11:29.000Z","updated_at":"2025-09-23T16:34:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"cfc81a23-dba5-426d-a633-7ed64642d592","html_url":"https://github.com/delphilite/DelphiHookUtils","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/delphilite/DelphiHookUtils","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/delphilite%2FDelphiHookUtils","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/delphilite%2FDelphiHookUtils/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/delphilite%2FDelphiHookUtils/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/delphilite%2FDelphiHookUtils/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/delphilite","download_url":"https://codeload.github.com/delphilite/DelphiHookUtils/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/delphilite%2FDelphiHookUtils/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29683887,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T14:29:29.427Z","status":"ssl_error","status_checked_at":"2026-02-21T14:29:29.111Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["delphi","delphinuspackage","detours","fmx","freepascal","hook","hooking","hooks","lazarus","patch","trampoline"],"created_at":"2024-12-02T13:11:35.993Z","updated_at":"2026-02-21T14:31:10.489Z","avatar_url":"https://github.com/delphilite.png","language":"Pascal","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿# DelphiHookUtils\r\n\r\n![Version](https://img.shields.io/badge/version-v1.0-yellow.svg)\r\n![License](https://img.shields.io/github/license/delphilite/DelphiHookUtils)\r\n![Lang](https://img.shields.io/github/languages/top/delphilite/DelphiHookUtils.svg)\r\n![stars](https://img.shields.io/github/stars/delphilite/DelphiHookUtils.svg)\r\n\r\n[English](./README.md) | [Chinese](./README.zh-CN.md)\r\n\r\nDelphiHookUtils is a utility library for code hooking, inspired by wr960204's [delphi-hook-library](https://code.google.com/p/delphi-hook-library). This library replaces BeaEngine with [LDE64](https://github.com/BeaEngine/lde64) to reduce size, along with additional modifications and improvements.\r\n\r\n## Features\r\n* Support **x86** and **x64** architecture.\r\n* Support hooking interfaces methods by **MethodIndex**.\r\n* Support hooking Object Method.\r\n* Support Delphi 7-12 x86/x64 for Win.\r\n* Support Lazarus/FPC x86/x64 for Win.\r\n\r\n## Installation: Manual\r\nTo install the DelphiHookUtils binding, follow these steps:\r\n\r\n1. Clone the repository:\r\n    ```sh\r\n    git clone https://github.com/delphilite/DelphiHookUtils.git\r\n    ```\r\n\r\n2. Add the DelphiHookUtils\\Source directory to the project or IDE's search path.\r\n\r\n## Installation: Delphinus-Support\r\nDelphiHookUtils should now be listed in [Delphinus package manager](https://github.com/Memnarch/Delphinus/wiki/Installing-Delphinus).\r\n\r\nBe sure to restart Delphi after installing via Delphinus otherwise the units may not be found in your test projects.\r\n\r\n## Usage\r\nFor more examples, refer to the ones under the Demos folder in the library.\r\n\r\n## Documentation\r\nFor more information, refer to the wiki documentation below.\r\n\r\n1. [Windows API Hooking Techniques](https://en.wikipedia.org/wiki/Hooking) - General overview of hooking methods in software.\r\n2. [Microsoft Detours](https://github.com/microsoft/Detours/wiki) - Microsoft's library for intercepting Win32 functions.\r\n3. [MahdiSafsafi DDetours](https://github.com/MahdiSafsafi/DDetours/wiki) - MahdiSafsafi's library for intercepting Win32 functions.\r\n\r\n## Contributing\r\nContributions are welcome! Please fork this repository and submit pull requests with your improvements.\r\n\r\n## License\r\nThis project is licensed under the Mozilla Public License 2.0. See the [LICENSE](LICENSE) file for details.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdelphilite%2Fdelphihookutils","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdelphilite%2Fdelphihookutils","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdelphilite%2Fdelphihookutils/lists"}