4 Repos
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.
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.
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.
Dieses Projekt ist eine Repository-Pattern-Bibliothek für Laravel-Anwendungen, um Geschäftslogik von Datenbankabfragen und Speicherimplementierungen zu entkoppeln. Es bietet eine standardisierte Datenzugriffsschicht, um Anwendungslogik von der zugrunde liegenden Speicherschicht zu isolieren. Die Bibliothek enthält ein Query-Filter-System, das HTTP-Request-Parameter in dynamische Datenbankfilter, Suchkriterien und Sortierlogik übersetzt. Sie bietet eine API-Presenter-Schicht zur Trennung interner Datenstrukturen von Client-Responses sowie einen Cache-Manager, der gespeicherte Datenbankergebnisse automatisch aktualisiert, wenn Datensätze modifiziert werden. Zusätzliche Funktionen umfassen ein CLI-Tool zum Generieren von Controllern, Modellen und Repositories sowie Validator-Klassen, um Geschäftsregeln vor der Datenpersistierung durchzusetzen.
Translates HTTP request parameters into dynamic database filters and sorting logic automatically.
This project is a static analysis tool and linter for Ruby on Rails designed to identify architectural smells and violations of best practices. It serves as a code quality linter, architectural auditor, security scanner, and performance analyzer for Rails applications. The tool evaluates the separation of concerns between controllers, models, and view templates to reduce technical debt. It identifies suboptimal coding patterns and enforces stylistic consistency, while specifically scanning for security vulnerabilities such as unprotected mass assignment in models. The analysis surface covers
Detects modifications to original request parameters to ensure data integrity during processing.