awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم MCPحولكيفية ترتيب النتائجالصحافة
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 مستودعات

Awesome GitHub RepositoriesState Variable Shadowing Detectors

Detects derived contracts that redeclare state variables from base contracts, breaking inherited modifiers and functions.

Distinct from Smart Contract Analysis: Distinct from Smart Contract Analysis: focuses specifically on detecting state variable shadowing, not general security or style analysis.

Explore 2 awesome GitHub repositories matching part of an awesome list · State Variable Shadowing Detectors. Refine with filters or upvote what's useful.

Awesome State Variable Shadowing Detectors GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • crytic/slitherالصورة الرمزية لـ crytic

    crytic/slither

    6,141عرض على GitHub↗

    Trail of Bits flags derived contracts that redeclare state variables from their base contracts, breaking inherited modifiers and functions.

    Pythonethereumsoliditystatic-analysis
    عرض على GitHub↗6,141
  • kadenzipfel/smart-contract-vulnerabilitiesالصورة الرمزية لـ kadenzipfel

    kadenzipfel/smart-contract-vulnerabilities

    2,466عرض على GitHub↗

    This project serves as a comprehensive knowledge base and technical reference for identifying and mitigating security vulnerabilities in smart contracts. It provides a structured catalog of common attack vectors, logic errors, and insecure coding patterns, offering developers and auditors a centralized resource for implementing secure decentralized applications. The repository distinguishes itself by covering the full lifecycle of contract security, from low-level arithmetic safety and compiler constraints to high-level architectural patterns. It details specific defensive strategies for mana

    Provides automated detection of state variable shadowing in inherited contracts to prevent logic errors.

    blockchainethereumsecurity
    عرض على GitHub↗2,466
  1. Home
  2. Part of an Awesome List
  3. Developer Tools
  4. Smart Contract Analysis
  5. State Variable Shadowing Detectors

استكشف الوسوم الفرعية

  • Uninitialized State Variable DetectorsFinds state variables that are never assigned a value, causing them to default to zero and potentially leading to fund loss. **Distinct from State Variable Shadowing Detectors:** Distinct from State Variable Shadowing Detectors: focuses on uninitialized variables, not shadowing of inherited variables.
  • Uninitialized State Variable Override DetectorsFlags uninitialized storage variables that act as references to the first state variable, potentially overriding critical variables. **Distinct from State Variable Shadowing Detectors:** Distinct from State Variable Shadowing Detectors: focuses on uninitialized variables overriding the first state variable, not shadowing from inheritance.