🔥 PlainApp is an open-source app that lets you securely manage your phone from a web browser. Access files, media, contacts, SMS, calls, and more through a simple, easy-to-use interface on your desktop.
This report presents the forensic synthetic code analysis of plainhub/plain-app, a Kotlin project with 6,051 GitHub stars. SynthScan v2.0 examined 196,296 lines of code across 2829 source files, recording 409 pattern matches distributed across 13 syntactic categories. The overall adjusted score of 6.4 places this repository in the Low AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
Longitudinal tracking requires multiple scan runs. Once this repository is re-scanned after new commits land, this chart will visualise how the synthetic code signal evolves over time — enabling you to detect whether AI authorship is growing, stabilising, or being actively corrected by human engineers.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 409 distinct pattern matches across 13 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | …com/ismartcoding/plain/tests/ThumbnailBenchmarkTest.kt | 50 | // ── Baseline: naive full decode then createScaledBitmap ────────────────── | COMMENT |
| MEDIUM | …com/ismartcoding/plain/tests/ThumbnailBenchmarkTest.kt | 63 | // ── Our optimised path (density trick + conditional sharpen) ───────────── | COMMENT |
| MEDIUM | …com/ismartcoding/plain/tests/ThumbnailBenchmarkTest.kt | 79 | // ── Full pipeline: decode + JPEG encode ────────────────────────────────── | COMMENT |
| MEDIUM | …com/ismartcoding/plain/tests/ThumbnailBenchmarkTest.kt | 91 | // ── Disk cache: write then read-back ───────────────────────────────────── | COMMENT |
| MEDIUM | …com/ismartcoding/plain/tests/ThumbnailBenchmarkTest.kt | 113 | // ── Correctness: decoded bitmap has correct dimensions ─────────────────── | COMMENT |
| MEDIUM | …com/ismartcoding/plain/tests/ThumbnailBenchmarkTest.kt | 144 | // ── Helpers ─────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/FilePathValidatorTest.kt | 20 | // ── Blank / non-absolute ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/FilePathValidatorTest.kt | 31 | // ── Root / single-component paths ───────────────────────────────────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/FilePathValidatorTest.kt | 43 | // ── Forbidden system prefixes ───────────────────────────────────────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/FilePathValidatorTest.kt | 81 | // ── Path traversal ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/FilePathValidatorTest.kt | 90 | // ── allowedRoots enforcement ────────────────────────────────────────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/FilePathValidatorTest.kt | 111 | // ── Valid paths (no allowed-roots restriction) ──────────────────────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/FilePathValidatorTest.kt | 125 | // ── requireAllSafe ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/MdnsHostResponderTest.kt | 19 | // ── normalizeHostname ───────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/MdnsHostResponderTest.kt | 42 | // ── ipToInt ─────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/MdnsHostResponderTest.kt | 62 | // ── MdnsPacketCodec round-trip ──────────────────────────────────────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/MdnsHostResponderTest.kt | 126 | // ── extractInet4Address ─────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …t/java/com/ismartcoding/plain/tests/ChunkUploadTest.kt | 25 | // ── Atomic chunk write ──────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …t/java/com/ismartcoding/plain/tests/ChunkUploadTest.kt | 87 | // ── Chunk listing (uploadedChunks query pattern) ────────────────────────── | COMMENT |
| MEDIUM | …t/java/com/ismartcoding/plain/tests/ChunkUploadTest.kt | 167 | // ── Merge integrity ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …t/java/com/ismartcoding/plain/tests/ChunkUploadTest.kt | 292 | // ── Size verification ───────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/MdnsIfaceSelectorTest.kt | 21 | // ── DatagramSocket loopback delivery (sanity: kernel UDP works) ─────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/MdnsIfaceSelectorTest.kt | 62 | // ── isMobileDataInterface ───────────────────────────────────────────────── | COMMENT |
| MEDIUM | …/com/ismartcoding/plain/tests/MdnsIfaceSelectorTest.kt | 67 | // ── helpers ─────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …st/java/com/ismartcoding/plain/tests/H264AnnexBTest.kt | 36 | // ── avccToAnnexB ───────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …st/java/com/ismartcoding/plain/tests/H264AnnexBTest.kt | 79 | // ── ensureStartCode ────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …st/java/com/ismartcoding/plain/tests/H264AnnexBTest.kt | 103 | // ── joinSpsPps ────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …m/ismartcoding/plain/preferences/AndroidPreferences.kt | 78 | // ── UrlTokenPreference ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …m/ismartcoding/plain/preferences/AndroidPreferences.kt | 104 | // ── ClientIdPreference ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …m/ismartcoding/plain/preferences/AndroidPreferences.kt | 114 | // ── KeyStorePasswordPreference ─────────────────────────────────────────────── | COMMENT |
| MEDIUM | …java/com/ismartcoding/plain/preferences/Preferences.kt | 38 | // ── AudioPlaylistPreference (DPlaylistAudio depends on Parcelable) ──────────── | COMMENT |
| MEDIUM | …java/com/ismartcoding/plain/preferences/Preferences.kt | 70 | // ── HomeFeaturesPreference (AppFeatureType is Android-specific) ─────────────── | COMMENT |
| MEDIUM | …java/com/ismartcoding/plain/preferences/Preferences.kt | 86 | // ── HomeSectionCollapsedPreference ──────────────────────────────────────────── | COMMENT |
| MEDIUM | …java/com/ismartcoding/plain/features/BookmarkHelper.kt | 27 | // ─── Bookmark Group CRUD ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …java/com/ismartcoding/plain/features/BookmarkHelper.kt | 61 | // ─── Bookmark CRUD ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …java/com/ismartcoding/plain/features/BookmarkHelper.kt | 117 | // ─── Metadata fetching ──────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …/main/java/com/ismartcoding/plain/helpers/Mp4Helper.kt | 38 | // ── Discover tracks ────────────────────────────────────────── | COMMENT |
| MEDIUM | …/main/java/com/ismartcoding/plain/helpers/Mp4Helper.kt | 67 | // ── Phase 1: process video ─────────────────────────────────── | COMMENT |
| MEDIUM | …/main/java/com/ismartcoding/plain/helpers/Mp4Helper.kt | 79 | // ── Phase 2: process audio ─────────────────────────────────── | COMMENT |
| MEDIUM | …/main/java/com/ismartcoding/plain/helpers/Mp4Helper.kt | 91 | // ── Phase 3: mux into mp4 (interleaved by timestamp) ───────── | COMMENT |
| MEDIUM | …/main/java/com/ismartcoding/plain/helpers/Mp4Helper.kt | 140 | // ── remux: copy compressed samples as-is ───────────────────────────── | COMMENT |
| MEDIUM | …/main/java/com/ismartcoding/plain/helpers/Mp4Helper.kt | 158 | // ── H.263 → H.264 (decode → surface → encode) ────────────────────── | COMMENT |
| MEDIUM | …/main/java/com/ismartcoding/plain/helpers/Mp4Helper.kt | 247 | // ── AMR-NB → AAC (decode → PCM → encode) ─────────────────────────── | COMMENT |
| MEDIUM | …nMain/kotlin/com/ismartcoding/plain/db/DChatChannel.kt | 50 | // ── Helpers ───────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …plain/lib/markdown/compose/elements/MathElementTest.kt | 41 | // ── BLOCK_MATH ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …plain/lib/markdown/compose/elements/MathElementTest.kt | 74 | // ── INLINE_MATH ────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …plain/lib/markdown/compose/elements/MathElementTest.kt | 90 | // ── edge cases ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …plain/lib/markdown/compose/elements/MathElementTest.kt | 119 | // ── helpers ────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …smartcoding/plain/lib/markdown/utils/HtmlImgTagTest.kt | 23 | // ── src extraction (regex-only) ────────────────────────────────────── | COMMENT |
| MEDIUM | …smartcoding/plain/lib/markdown/utils/HtmlImgTagTest.kt | 85 | // ── alt extraction (regex-only) ────────────────────────────────────── | COMMENT |
| MEDIUM | …smartcoding/plain/lib/markdown/utils/HtmlImgTagTest.kt | 101 | // ── end-to-end against a real AST node ─────────────────────────────── | COMMENT |
| MEDIUM | …smartcoding/plain/lib/markdown/utils/HtmlImgTagTest.kt | 135 | // ── helpers ────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …ing/plain/chat/channel/ChannelSystemMessageReceiver.kt | 35 | // ── Individual handlers ──────────────────────────────────────── | COMMENT |
| MEDIUM | …smartcoding/plain/chat/channel/ChannelSystemMessage.kt | 8 | // ── Type constants ───────────────────────────────────────────── | COMMENT |
| MEDIUM | …smartcoding/plain/chat/channel/ChannelSystemMessage.kt | 16 | // ── Action constants (signature payload) ─────────────────────── | COMMENT |
| MEDIUM | …/kotlin/com/ismartcoding/plain/helpers/AppFileStore.kt | 63 | // ── Import (dedup entry point) ────────────────────────────────────────── | COMMENT |
| MEDIUM | …/kotlin/com/ismartcoding/plain/helpers/AppFileStore.kt | 92 | // ── Step 1: weak check ──────────────────────────────────────────── | COMMENT |
| MEDIUM | …/kotlin/com/ismartcoding/plain/helpers/AppFileStore.kt | 97 | // ── Step 2: strong check ────────────────────────────────────── | COMMENT |
| MEDIUM | …/kotlin/com/ismartcoding/plain/helpers/AppFileStore.kt | 146 | // ── Reference counting ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …/kotlin/com/ismartcoding/plain/helpers/AppFileStore.kt | 165 | // ── Internals ─────────────────────────────────────────────────────────── | COMMENT |
| 220 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | app/src/main/resources/web/assets/gherkin-oBAE_ms0.js | 1 | var e={name:`gherkin`,startState:function(){return{lineNumber:0,tableHeaderLine:!1,allowFeature:!0,allowBackground:!1,al | CODE |
| MEDIUM | app/src/main/resources/web/assets/dist-BqL12gUp.js | 1 | import{n as e}from"./chunk-aKtaBQYM.js";import{$ as t,F as n,M as r,Tt as i,_ as a,j as o,k as s,o as c,r as l,u as ee,x | CODE |
| LOW | app/src/main/assets/editor/ace/worker-css.js | 1 | "no use strict";!function(e){function t(e,t){var n=e,r="";while(n){var i=t[n];if(typeof i=="string")return i+r;if(i)retu | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-html.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-html.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-slim.js | 1 | define("ace/mode/slim_highlight_rules",["require","exports","module","ace/config","ace/lib/oop","ace/mode/text_highlight | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-slim.js | 1 | define("ace/mode/slim_highlight_rules",["require","exports","module","ace/config","ace/lib/oop","ace/mode/text_highlight | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-coldfusion.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-coldfusion.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-rhtml.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-rhtml.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-ejs.js | 1 | define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highligh | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-ejs.js | 1 | define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highligh | CODE |
| MEDIUM | …p/src/main/assets/editor/ace/mode-php_laravel_blade.js | 1 | define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules | CODE |
| MEDIUM | …p/src/main/assets/editor/ace/mode-php_laravel_blade.js | 1 | define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-handlebars.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-handlebars.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-curly.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-curly.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-vue.js | 1 | define("ace/mode/folding/mixed",["require","exports","module","ace/lib/oop","ace/mode/folding/fold_mode"],function(e,t,n | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-nunjucks.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-nunjucks.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-django.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-django.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-velocity.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-velocity.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-visualforce.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-visualforce.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-astro.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-astro.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-erlang.js | 1 | define("ace/mode/erlang_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],fu | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-php.js | 1 | define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-php.js | 1 | define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-luapage.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-luapage.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-liquid.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-liquid.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-latte.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-latte.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-twig.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-twig.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-razor.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-razor.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-soy_template.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-soy_template.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-html_ruby.js | 1 | define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highligh | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-html_ruby.js | 1 | define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highligh | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-markdown.js | 1 | define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highligh | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-markdown.js | 1 | define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highligh | CODE |
| MEDIUM⚡ | app/src/main/assets/editor/ace/mode-html_elixir.js | 1 | define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highligh | CODE |
| MEDIUM⚡ | app/src/main/assets/editor/ace/mode-html_elixir.js | 1 | define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highligh | CODE |
| MEDIUM⚡ | app/src/main/assets/editor/ace/mode-html_elixir.js | 1 | define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highligh | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-smarty.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | app/src/main/assets/editor/ace/mode-smarty.js | 1 | define("ace/mode/jsdoc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rul | CODE |
| MEDIUM | …smartcoding/plain/lib/markdown/utils/HtmlImgTagTest.kt | 121 | // is robust when handed any node — it returns null rather than | COMMENT |
| MEDIUM | apitest/setup-session.sh | 5 | # wants the apitest harness to authenticate against /graphql. | COMMENT |
| MEDIUM | apitest/setup-session.sh | 17 | # harness can hit POST /graphql with: | COMMENT |
| MEDIUM | apitest/groups/files.sh | 196 | # mergeChunks: we don't actually upload chunks via multipart in the harness. | COMMENT |
| MEDIUM⚡ | apitest/groups/discovery.sh | 11 | # only one test device, the harness verifies the API contract (calls | COMMENT |
| MEDIUM | apitest/lib/common.sh | 2 | # Shared helpers for the apitest harness. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | app/src/main/resources/web/assets/swift-DKB6_1j6.js | 1 | function e(e){for(var t={},n=0;n<e.length;n++)t[e[n]]=!0;return t}var t=e(`_.var.let.actor.class.enum.extension.import.p | CODE |
| CRITICAL | app/src/main/java/com/ismartcoding/plain/MainApp.kt | 71 | com.ismartcoding.plain.features.locale.setAppContext(this) | CODE |
| CRITICAL | …ding/plain/ui/page/chat/components/NearbyDeviceItem.kt | 63 | subtitle = com.ismartcoding.plain.lib.helpers.NetworkHelper.getBestIp(item.ips), | CODE |
| CRITICAL | …/ismartcoding/plain/ui/page/pomodoro/PomodoroHelper.kt | 141 | com.ismartcoding.plain.ui.page.pomodoro.playNotificationSound() | CODE |
| CRITICAL | …va/com/ismartcoding/plain/ui/models/ImagesViewModel.kt | 22 | val combined = com.ismartcoding.plain.features.media.ImageSearchHelper.searchCombinedAsync( | CODE |
| CRITICAL | …va/com/ismartcoding/plain/ui/models/ImagesViewModel.kt | 30 | useAiSearch.value = query.isNotEmpty() && com.ismartcoding.plain.ai.ImageSearchManager.isModelReady() | CODE |
| CRITICAL | …ng/plain/ui/components/mediaviewer/video/MediaVideo.kt | 71 | val size = com.ismartcoding.plain.helpers.VideoHelper.getIntrinsicSize(model.path) | CODE |
| CRITICAL | …com/ismartcoding/plain/features/locale/LocaleHelper.kt | 17 | fun currentLocale(): Locale = com.ismartcoding.plain.features.locale.currentLocale() | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …ava/com/ismartcoding/plain/ui/base/coil/ImageLoader.kt | 21 | val memoryPercent = if (activityManager.isLowRamDevice) 0.25 else 0.75 | COMMENT |
| LOW | …oding/plain/ui/base/mdeditor/MdEditorSettingsDialog.kt | 81 | // PSwitch( | COMMENT |
| LOW | …artcoding/plain/preferences/DlnaCastRulesPreference.kt | 1 | // DlnaAllowedSendersPreference, DlnaDeniedSendersPreference, encodeSenderEntry, | COMMENT |
| LOW | …martcoding/plain/lib/apk/struct/xml/XmlNodeStartTag.kt | 1 | package com.ismartcoding.plain.lib.apk.struct.xml | COMMENT |
| LOW | …n/java/com/ismartcoding/plain/lib/pdfviewer/PDFView.kt | 481 | return | COMMENT |
| LOW | …n/java/com/ismartcoding/plain/lib/pdfviewer/PDFView.kt | 501 | // _______________________________________________ | COMMENT |
| LOW | …rtcoding/plain/lib/androidsvg/utils/SVGParserImpl.java | 161 | COMMENT | |
| LOW | …rtcoding/plain/lib/androidsvg/utils/SVGParserImpl.java | 181 | //private static final String TAG_FECONVOLVEMATRIX = "feConvolveMatrix"; | COMMENT |
| LOW | …rtcoding/plain/lib/androidsvg/utils/SVGParserImpl.java | 201 | //private static final String TAG_FILTER = "filter"; | COMMENT |
| LOW | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 1021 | //supportedFeatures.add("GraphicsAttribute"); // NO | COMMENT |
| LOW | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 1041 | //supportedFeatures.add("Animation"); // NO | COMMENT |
| LOW | …coding/plain/lib/markdown/compose/MarkdownExtension.kt | 101 | // placeholder — but the `huarangmeng/latex` renderer ignores | COMMENT |
| LOW | …oding/plain/chat/peer/transport/aware/AwarePeerLink.kt | 81 | state = LinkState.IDLE | COMMENT |
| LOW | apitest/setup-session.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/runner.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/groups/setup.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/groups/chat-messages.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/groups/chat-channels.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/groups/schema.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/groups/files.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/groups/content-provider.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/groups/content-provider.sh | 321 | # Caveats: | COMMENT |
| LOW | apitest/groups/screen-mirror.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/groups/media.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/groups/discovery.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/groups/device-read.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/groups/app-state.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/groups/notes.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | apitest/groups/notes.sh | 41 | adb -s "$ADB_ID" exec-out "run-as com.ismartcoding.plain.debug cat databases/plain.db" > "$DB_PULL" | COMMENT |
| LOW | .github/workflows/codeql.yml | 1 | # For most projects, this workflow file will not need changing; you simply need | COMMENT |
| LOW | openspec/config.yaml | 1 | schema: spec-driven | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …/ismartcoding/plain/lib/apk/cert/asn1/Asn1BerParser.kt | 244 | // NOTE: This method returns List rather than Set because ASN.1 SET_OF does require uniqueness | COMMENT |
| LOW⚡ | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 791 | // Step 1: Apply a luminanceToAlpha conversion to the mask content. | COMMENT |
| LOW⚡ | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 792 | // Step 2: Multiply the mask's alpha to the alpha channel generated in step 1. | COMMENT |
| LOW | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 2725 | // Step 1 : Compute (x1', y1') | COMMENT |
| LOW⚡ | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 2747 | // Step 2 : Compute (cx1, cy1) - the transformed centre point | COMMENT |
| LOW⚡ | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 2755 | // Step 3 : Compute (cx, cy) from (cx1, cy1) | COMMENT |
| LOW⚡ | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 2761 | // Step 4 : Compute the angleStart (angle1) and the angleExtent (dangle) | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 791 | // Step 1: Apply a luminanceToAlpha conversion to the mask content. | COMMENT |
| LOW⚡ | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 792 | // Step 2: Multiply the mask's alpha to the alpha channel generated in step 1. | COMMENT |
| LOW | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 2725 | // Step 1 : Compute (x1', y1') | COMMENT |
| LOW⚡ | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 2747 | // Step 2 : Compute (cx1, cy1) - the transformed centre point | COMMENT |
| LOW⚡ | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 2755 | // Step 3 : Compute (cx, cy) from (cx1, cy1) | COMMENT |
| LOW⚡ | …ing/plain/lib/androidsvg/utils/SVGAndroidRenderer.java | 2761 | // Step 4 : Compute the angleStart (angle1) and the angleExtent (dangle) | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | app/src/main/assets/editor/ace/snippets/java.js | 1 | define("ace/snippets/java.snippets",["require","exports","module"],function(e,t,n){n.exports='## Access Modifiers\nsnipp | CODE |
| MEDIUM | app/src/main/assets/editor/ace/snippets/wollok.js | 1 | define("ace/snippets/wollok.snippets",["require","exports","module"],function(e,t,n){n.exports='##\n## Basic Java packag | CODE |
| MEDIUM | app/src/main/assets/editor/ace/snippets/edifact.js | 1 | define("ace/snippets/edifact.snippets",["require","exports","module"],function(e,t,n){n.exports='## Access Modifiers\nsn | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | app/src/main/assets/editor/ace/worker-css.js | 1 | "no use strict";!function(e){function t(e,t){var n=e,r="";while(n){var i=t[n];if(typeof i=="string")return i+r;if(i)retu | CODE |
| MEDIUM | .github/workflows/codeql.yml | 62 | # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | scripts/test_thumbnail_exif.py | 18 | CODE | |
| LOW | scripts/test_thumbnail_exif.py | 20 | CODE | |
| LOW | scripts/test_clip_pipeline.py | 19 | CODE | |
| LOW | scripts/migrate_strings_to_kmp.py | 16 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | remove_string_key_all.sh | 3 | # Usage: | COMMENT |
| LOW | scripts/delete-translation-key.sh | 5 | # Usage: | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | scripts/dedup_lib_imports.py | 38 | CODE | |
| LOW | scripts/test_thumbnail_exif.py | 36 | CODE | |
| LOW | scripts/test_thumbnail_exif.py | 156 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | scripts/test_thumbnail_exif.py | 105 | except Exception: | CODE |
| LOW | scripts/test_thumbnail_exif.py | 173 | except Exception: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | app/src/main/assets/editor/ace/ext-prompt.js | 1 | define("ace/autocomplete/popup",["require","exports","module","ace/virtual_renderer","ace/editor","ace/range","ace/lib/e | CODE |