hzqst

find-CServerSideClient_vtable

5
0
# Install this skill:
npx skills add hzqst/CS2_VibeSignatures --skill "find-CServerSideClient_vtable"

Install specific skill from multi-skill repository

# Description

Find and identify the CServerSideClient vtable in CS2 binary using IDA Pro MCP. Use this skill when reverse engineering CS2 engine2.dll or libengine2.so to locate the CServerSideClient virtual function table by searching for the mangled vtable symbol name.

# SKILL.md


name: find-CServerSideClient_vtable
description: Find and identify the CServerSideClient vtable in CS2 binary using IDA Pro MCP. Use this skill when reverse engineering CS2 engine2.dll or libengine2.so to locate the CServerSideClient virtual function table by searching for the mangled vtable symbol name.


Find CServerSideClient_vtable

Locate CServerSideClient_vtable in CS2 engine2.dll or libengine2.so using IDA Pro MCP tools.

Method

1. Get VTable Address and Size

Use /get-vtable-address skill with CServerSideClient:

/get-vtable-address CServerSideClient

This will return:
- vtableAddress: The address of the vtable
- sizeInBytes: Total size of the vtable in bytes
- numberOfVirtualFunctions: Count of virtual function entries

2. Write VTable Info as YAML

Use /write-vtable-as-yaml skill with:
- vtable_class: CServerSideClient
- vtable_va: The vtable address from step 1

VTable Symbol Patterns

Windows (engine2.dll)

The vtable uses MSVC name mangling:
- ??_7CServerSideClient@@6B@ - CServerSideClient vtable

Linux (libengine2.so)

The vtable uses Itanium C++ ABI name mangling:
- _ZTV18CServerSideClient - CServerSideClient vtable

Output YAML Format

The output YAML filename depends on the platform:
- engine2.dll โ†’ CServerSideClient_vtable.windows.yaml
- libengine2.so โ†’ CServerSideClient_vtable.linux.yaml

vtable_class: CServerSideClient
vtable_va: 0x18053cee8    # Virtual address - changes with game updates
vtable_rva: 0x53cee8      # Relative virtual address - changes with game updates
vtable_size: 0x278        # VTable size in bytes - changes with game updates
vtable_numvfunc: 79       # Number of virtual functions - changes with game updates

# Supported AI Coding Agents

This skill is compatible with the SKILL.md standard and works with all major AI coding agents:

Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.