Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Find CHEGrenadeProjectile Create

ASecurity

Find and identify the CHEGrenadeProjectile_Create factory in CS2 server binary using IDA Pro MCP. Use this skill when reverse engineering CS2 server.dll or libserver.so to locate the HE-grenade projectile spawn factory. It is a non-virtual, direct-call static factory found via the entity classname string "hegrenade_projectile" it references (excluding the RTTI class string "CHEGrenadeProjectile"). Emits a unique IDA-style byte signature and a func YAML. Mirrors the find-CHEGrenadeProjectile_C...

3 stars
0 votes
0 copies
0 views
Added 9/27/2026
devops

Works with

mcp

Security Analysis

A100/100

Scanned 9/27/2026

Install to Claude Code

$npx -y skills add mrc4tt/CS2_VibeSignatures --skill find-CHEGrenadeProjectile_Create --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Find CHEGrenadeProjectile Create?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Find CHEGrenadeProjectile Create
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/mrc4tt-find-chegrenadeprojectile-create/badge)](https://www.skillsdirectory.com/skills/mrc4tt-find-chegrenadeprojectile-create)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: find-CHEGrenadeProjectile_Create
description: |
  Find and identify the CHEGrenadeProjectile_Create factory in CS2 server binary using IDA Pro MCP.
  Use this skill when reverse engineering CS2 server.dll or libserver.so to locate the HE-grenade
  projectile spawn factory. It is a non-virtual, direct-call static factory found via the entity
  classname string "hegrenade_projectile" it references (excluding the RTTI class string
  "CHEGrenadeProjectile"). Emits a unique IDA-style byte signature and a func YAML. Mirrors the
  find-CHEGrenadeProjectile_Create.py preprocessor (xref_strings FULLMATCH:hegrenade_projectile).
  Trigger: CHEGrenadeProjectile_Create, CHEGrenadeProjectile::Create, HE projectile Create
disable-model-invocation: true
---

# Find CHEGrenadeProjectile_Create

Locate `CHEGrenadeProjectile_Create` in CS2 `server.dll` or `libserver.so` using IDA Pro MCP tools.

This is a **non-virtual, direct-call static factory** (no vtable slot - emit a byte sig, not an
offset). It is found via the entity classname string `"hegrenade_projectile"` it references
(passed to the entity-create path when spawning the projectile). The RTTI/class string
`"CHEGrenadeProjectile"` is a **different** referencer and must be excluded.

## Concrete anchors for THIS target (use these first)

- `FULLMATCH:weapon_hegrenade`

## KNOWN CONTAMINATION WARNING

VA 0x20c2700 (BuyState_OnUpdate) has WRONGLY been emitted for this target before.
It is NOT this function. If your best candidate is 0x20c2700, you have NOT found
the target - keep searching or report the shortlist instead of guessing.

## Method

### 1. Reuse previous signature (fast path)

If a prior `CHEGrenadeProjectile_Create.{platform}.yaml` exists, try its `func_sig` via
`mcp__ida-pro-mcp__find_bytes`. Single match -> resolve to function start, skip to Step 4. Else continue.

### 2. Anchor on the classname string

Locate the exact string `"hegrenade_projectile"` (FULLMATCH - not the longer
`"CHEGrenadeProjectile"` RTTI string). Take its cross-references (`mcp__ida-pro-mcp__xrefs_to`).

### 3. Identify Create among the referencers

`Create` is the referencer that spawns the projectile entity: it creates the entity by classname,
then initializes the HE-projectile fields (velocity/owner/params) and returns the new object.
Exclude any referencer reached via the `"CHEGrenadeProjectile"` RTTI string. Confirm the candidate
is the compact factory wrapper (not a large think/update routine). Record `func_addr`.

### 4. Generate signature

**ALWAYS** use SKILL `/generate-signature-for-function` with `addr=<func_addr>`. Emit IDA style
verbatim (space hex, `?` wildcards) - do NOT convert to CSS `\x2A` unless a `gamedata.json`
entry is explicitly requested.

Reference sig (sanity check only, regenerate per binary):
- linux:   `55 4C 89 C1 48 89 E5 41 57 49 89 FF 41 56 49 89 D6`
- windows: `48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57 48 83 EC 50 48 8B AC 24 80 00 00 00 49 8B F8`

### 5. Write func YAML

**ALWAYS** use SKILL `/write-func-as-yaml`:
- `func_name`: `CHEGrenadeProjectile_Create`
- `func_addr`: `<func_addr>`
- `func_sig`: validated sig from step 4

## Function Characteristics

- **Linkage**: non-virtual, direct-call static factory (no vtable entry)
- **Binary**: `server.dll` / `libserver.so`
- **Distinguishing trait**: references the `"hegrenade_projectile"` entity classname string;
  NOT the `"CHEGrenadeProjectile"` RTTI string

## Preprocessor pipeline equivalent

```
find-CHEGrenadeProjectile_Create   [xref_strings FULLMATCH:hegrenade_projectile,
                                     exclude_strings CHEGrenadeProjectile]
```

## Output YAML Format

- `server.dll`   -> `CHEGrenadeProjectile_Create.windows.yaml`
- `libserver.so` -> `CHEGrenadeProjectile_Create.linux.yaml`

Attribution

mrc4ttmrc4tt
View sourceMore from mrc4tt →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Terraform Module Library

Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.

400051 votes

sematext-otel

Wire a service's OpenTelemetry output to Sematext Cloud. Walks through region, App-type, instrumentation flow (managed OTLP endpoint vs Sematext Agent), and signal selection (traces/metrics/logs), then produces the exact env-var block and points at a runnable reference example in this repo. Invoke when instrumenting a new app for Sematext.

01 votes

Deployment Patterns

Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications. Use when setting up deployment infrastructure or planning releases.

2672080 votes

Babysit

Watch a pull request or review cycle until it is ready to merge. Use when asked to babysit, monitor, or keep checking PR comments, reviews, and CI until all actionable issues are resolved.

947440 votes

V7 Roster

Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.

813270 votes
View all in devops →