awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
awesome-repositories.comब्लॉग
श्रेणियाँ

4 रिपॉजिटरी

Awesome GitHub RepositoriesRequest Parameter Filtering

Extraction of explicitly defined parameters from a request while stripping undeclared data.

Distinct from Parameter Filtering: Candidates focus on security update attributes or database query filtering, not the general API input filtering (whitelisting).

Explore 4 awesome GitHub repositories matching web development · Request Parameter Filtering. Refine with filters or upvote what's useful.

Awesome Request Parameter Filtering GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • ruby-grape/graperuby-grape का अवतार

    ruby-grape/grape

    9,990GitHub पर देखें↗

    Grape is a RESTful web service framework for Ruby designed for building structured APIs. It provides a declarative syntax for routing and parameter validation, allowing developers to map HTTP verbs to logic through a domain specific language. The framework is distinguished by its built-in support for service versioning, which can be managed via URL paths, custom headers, or request parameters. It also features a modular architecture that allows large services to be constructed by nesting smaller API definitions. The project covers comprehensive API lifecycle capabilities, including schema-dr

    Extracts only the explicitly defined parameters from a request while removing all undeclared data.

    Ruby
    GitHub पर देखें↗9,990
  • railsgirls/guides.railsgirls.comrailsgirls का अवतार

    railsgirls/guides.railsgirls.com

    7,106GitHub पर देखें↗

    This project is a web development tutorial site and a Ruby on Rails learning resource designed as a beginner programming guide. It serves as a technical workshop curriculum and a structured framework for organizing and coaching community-led programming events. The site functions as a static site generator that converts Markdown content and templates into pre-rendered HTML pages. This architecture supports the delivery of step-by-step guides and instructional materials used to teach new learners how to build web applications. The content covers a broad range of capabilities, including Ruby o

    Demonstrates how to use parameter whitelisting to protect applications from injection attacks.

    HTMLhacktoberfestrailsruby
    GitHub पर देखें↗7,106
  • prettus/l5-repositoryprettus का अवतार

    prettus/l5-repository

    4,205GitHub पर देखें↗

    This project is a repository pattern library for Laravel applications designed to decouple business logic from database queries and storage implementation. It provides a standardized data access layer to isolate application logic from the underlying storage layer. The library includes a query filter system that translates HTTP request parameters into dynamic database filters, search criteria, and sorting logic. It features an API presenter layer to separate internal data structures from client responses and a cache manager that automatically refreshes stored database results when records are

    Translates HTTP request parameters into dynamic database filters and sorting logic automatically.

    PHP
    GitHub पर देखें↗4,205
  • flyerhzm/rails_best_practicesflyerhzm का अवतार

    flyerhzm/rails_best_practices

    4,166GitHub पर देखें↗

    यह प्रोजेक्ट Ruby on Rails के लिए एक स्टेटिक एनालिसिस टूल और लिंटर है जिसे आर्किटेक्चरल स्मेल और सर्वोत्तम प्रथाओं के उल्लंघन की पहचान करने के लिए डिज़ाइन किया गया है। यह Rails एप्लिकेशन के लिए एक कोड क्वालिटी लिंटर, आर्किटेक्चरल ऑडिटर, सुरक्षा स्कैनर और प्रदर्शन विश्लेषक के रूप में कार्य करता है। यह टूल तकनीकी ऋण (technical debt) को कम करने के लिए कंट्रोलर्स, मॉडल्स और व्यू टेम्पलेट्स के बीच चिंताओं के पृथक्करण का मूल्यांकन करता है। यह सब-ऑप्टिमल कोडिंग पैटर्न की पहचान करता है और शैलीगत स्थिरता लागू करता है, जबकि विशेष रूप से मॉडल्स में असुरक्षित मास असाइनमेंट जैसी सुरक्षा कमजोरियों के लिए स्कैन करता है। विश्लेषण सतह अक्षम डेटाबेस क्वेरी और मेमोरी-भारी डेटा पुनर्प्राप्ति पैटर्न का पता लगाने को कवर करती है। यह रूटिंग डिज़ाइन का ऑडिट भी करता है, रिकॉर्ड पर्सिस्टेंस को मान्य करता है, और अनुचित त्रुटि हैंडलिंग और टाइमज़ोन मिसकॉन्फ़िगरेशन की पहचान करता है। उपयोगकर्ता कॉन्फ़िगरेशन फाइल के माध्यम से यह परिभाषित करके विश्लेषण को मैनेज कर सकते हैं कि कौन से कोड चेक सक्षम या अक्षम करने हैं।

    Detects modifications to original request parameters to ensure data integrity during processing.

    Ruby
    GitHub पर देखें↗4,166
  1. Home
  2. Web Development
  3. Request Parameter Filtering

सब-टैग एक्सप्लोर करें

  • Parameter Modification DetectionAnalysis to detect when original request parameters are modified directly. **Distinct from Request Parameter Filtering:** Distinct from Request Parameter Filtering: focuses on detecting the mutation of parameters rather than stripping undeclared data.