Skip to main content
Glama

list_hooks

View active memory hooks in game processes to monitor and analyze function calls, addresses, and descriptions for reverse engineering.

Instructions

List all active hooks. Returns: List of active hooks with addresses and descriptions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'list_hooks' tool. It iterates over the global session's hooks dictionary and returns a list of active hooks with their addresses, types, and descriptions.
    def list_hooks() -> Dict[str, Any]: """ List all active hooks. Returns: List of active hooks with addresses and descriptions. """ hooks = [{"address": addr, "type": h.hook_type, "description": h.description} for addr, h in _session.hooks.items()] return {"count": len(hooks), "hooks": hooks}

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/0xhackerfren/frida-game-hacking-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server