runtime/staprun/staprun_funcs.c in the systemtap runtime tool (staprun) in SystemTap before 1.6 does not properly validate modules when a module path is specified by a user for user-space probing, which allows local users in the stapusr group to gain privileges via a crafted module in the search path in the -u argument.
The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Systemtap | Systemtap | * | 1.5 (including) |
Systemtap | Systemtap | 0.2.2 (including) | 0.2.2 (including) |
Systemtap | Systemtap | 0.3 (including) | 0.3 (including) |
Systemtap | Systemtap | 0.4 (including) | 0.4 (including) |
Systemtap | Systemtap | 0.5 (including) | 0.5 (including) |
Systemtap | Systemtap | 0.5.3 (including) | 0.5.3 (including) |
Systemtap | Systemtap | 0.5.4 (including) | 0.5.4 (including) |
Systemtap | Systemtap | 0.5.5 (including) | 0.5.5 (including) |
Systemtap | Systemtap | 0.5.7 (including) | 0.5.7 (including) |
Systemtap | Systemtap | 0.5.8 (including) | 0.5.8 (including) |
Systemtap | Systemtap | 0.5.9 (including) | 0.5.9 (including) |
Systemtap | Systemtap | 0.5.10 (including) | 0.5.10 (including) |
Systemtap | Systemtap | 0.5.12 (including) | 0.5.12 (including) |
Systemtap | Systemtap | 0.5.13 (including) | 0.5.13 (including) |
Systemtap | Systemtap | 0.5.14 (including) | 0.5.14 (including) |
Systemtap | Systemtap | 0.6 (including) | 0.6 (including) |
Systemtap | Systemtap | 0.6.2 (including) | 0.6.2 (including) |
Systemtap | Systemtap | 0.7 (including) | 0.7 (including) |
Systemtap | Systemtap | 0.7.2 (including) | 0.7.2 (including) |
Systemtap | Systemtap | 0.8 (including) | 0.8 (including) |
Systemtap | Systemtap | 0.9 (including) | 0.9 (including) |
Systemtap | Systemtap | 0.9.5 (including) | 0.9.5 (including) |
Systemtap | Systemtap | 0.9.7 (including) | 0.9.7 (including) |
Systemtap | Systemtap | 0.9.8 (including) | 0.9.8 (including) |
Systemtap | Systemtap | 0.9.9 (including) | 0.9.9 (including) |
Systemtap | Systemtap | 1.0 (including) | 1.0 (including) |
Systemtap | Systemtap | 1.1 (including) | 1.1 (including) |
Systemtap | Systemtap | 1.2 (including) | 1.2 (including) |
Systemtap | Systemtap | 1.3 (including) | 1.3 (including) |
Systemtap | Systemtap | 1.4 (including) | 1.4 (including) |
Red Hat Enterprise Linux 6 | RedHat | systemtap-0:1.4-6.el6_1.2 | * |
Systemtap | Ubuntu | hardy | * |
Systemtap | Ubuntu | maverick | * |
Systemtap | Ubuntu | natty | * |
Systemtap | Ubuntu | oneiric | * |
Systemtap | Ubuntu | upstream | * |
Input validation is a frequently-used technique for checking potentially dangerous inputs in order to ensure that the inputs are safe for processing within the code, or when communicating with other components. Input can consist of:
Data can be simple or structured. Structured data can be composed of many nested layers, composed of combinations of metadata and raw data, with other simple or structured data. Many properties of raw data or metadata may need to be validated upon entry into the code, such as:
Implied or derived properties of data must often be calculated or inferred by the code itself. Errors in deriving properties may be considered a contributing factor to improper input validation.