Find data-flow sink positions
Recipe ID
org.openrewrite.kotlin.search.FindDataFlowSinks$KtRecipeArtifact
io.moderne.recipe:recipes-kotlinLocations where data crosses a trust or persistence boundary: SQL execution, filesystem writes, process execution, logger writes, outbound network, cryptographic operations, and Android clipboard access. Each match is a seed an LLM agent can connect back to upstream sources.
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.FindDataFlowSinks$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 SQL execution sinks (
Statement.execute*,prepareStatement,createNativeQuery)org.openrewrite.kotlin.search.FindSqlExecutionSinks$KtRecipe - Find filesystem write calls (
File.writeText,Files.write, etc.)org.openrewrite.kotlin.search.FindFileWriteSinks$KtRecipe - Find process-execution sinks (
Runtime.exec,ProcessBuilder.start)org.openrewrite.kotlin.search.FindCommandExecutionSinks$KtRecipe - Find logger write calls (
info/warn/error/debug)org.openrewrite.kotlin.search.FindLogWriteSinks$KtRecipe - Find outbound-network sinks (
URL.openConnection,OkHttpClient.newCall, etc.)org.openrewrite.kotlin.search.FindNetworkSinks$KtRecipe - Find HTTP client construction sites
org.openrewrite.kotlin.search.FindHttpClientConstructions$KtRecipe - Find cryptographic primitive entries (
KeyGenerator.generateKey,Cipher.getInstance, etc.)org.openrewrite.kotlin.search.FindCryptoSeeds$KtRecipe - Find non-cryptographic random sources (
Math.random,kotlin.random.Random,java.util.Random)org.openrewrite.kotlin.search.FindInsecureRandomSources$KtRecipe - Find Android
ClipboardManageraccessorg.openrewrite.kotlin.search.FindClipboardAccess$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