Find data-flow source positions
Recipe ID
org.openrewrite.kotlin.search.FindDataFlowSources$KtRecipeArtifact
io.moderne.recipe:recipes-kotlinLocations where untrusted or configuration-controlled data enters the program: readLine/Scanner reads, environment/system-property reads, HTTP request reads, and filesystem reads. Each match is a seed an LLM agent (or human reviewer) can connect to downstream sinks.
Usage
This recipe has no required configuration options. You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.kotlin.search.FindDataFlowSources$KtRecipeIf the recipe isn’t available locally, install it with:
mod config recipes jar install io.moderne.recipe:recipes-kotlin:0.2.0Definition
This recipe runs the following recipes in order.
- Find
readLine()/Scanner.next*()callsorg.openrewrite.kotlin.search.FindStdinSources$KtRecipe - Find
System.getenv(...)/System.getProperty(...)readsorg.openrewrite.kotlin.search.FindEnvironmentSources$KtRecipe - Find
HttpServletRequest.getParameter/getHeader/getCookiesreadsorg.openrewrite.kotlin.search.FindHttpRequestSources$KtRecipe - Find filesystem read calls (
File.readText,Files.readString, etc.)org.openrewrite.kotlin.search.FindFileReadSources$KtRecipe
Data tables
Structured output this recipe can produce.
- Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats