Practical samples of ASP.NET Core 11, 10, 9, 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
This report presents the forensic synthetic code analysis of dodyg/practical-aspnetcore, a C# project with 10,411 GitHub stars. SynthScan v2.0 examined 129,957 lines of code across 1829 source files, recording 392 pattern matches distributed across 10 syntactic categories. The overall adjusted score of 12.9 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 392 distinct pattern matches across 10 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 |
|---|---|---|---|---|
| CRITICAL⚡ | projects/htmx/htmx-after-on-load/Program.cs | 43 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/htmx-after-on-load/Program.cs | 49 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/htmx-after-on-load/Program.cs | 56 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/htmx-response-error/Program.cs | 42 | evt.detail.ctx.request.body.set("Name", "John Doe"); | CODE |
| CRITICAL⚡ | projects/htmx/htmx-response-error/Program.cs | 45 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/htmx-response-error/Program.cs | 51 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/htmx-response-error/Program.cs | 58 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/hx-vals/Program.cs | 37 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/hx-vals/Program.cs | 43 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/hx-vals/Program.cs | 50 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-trigger/Program.cs | 42 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-trigger/Program.cs | 48 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-trigger/Program.cs | 55 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-replace-url/Program.cs | 38 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-replace-url/Program.cs | 44 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-replace-url/Program.cs | 51 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/select-oob/Program.cs | 65 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/select-oob/Program.cs | 71 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/select-oob/Program.cs | 78 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/hx-headers/Program.cs | 38 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/hx-headers/Program.cs | 44 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/hx-headers/Program.cs | 51 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/query-string/Program.cs | 38 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/query-string/Program.cs | 44 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/query-string/Program.cs | 51 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-refresh/Program.cs | 38 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-refresh/Program.cs | 44 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-refresh/Program.cs | 51 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/hx-replace-url-2/Program.cs | 55 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/hx-replace-url-2/Program.cs | 61 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/hx-replace-url-2/Program.cs | 68 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/hx-prompt/Program.cs | 39 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/hx-prompt/Program.cs | 45 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/hx-prompt/Program.cs | 52 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/all-verbs/Program.cs | 38 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/all-verbs/Program.cs | 44 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/all-verbs/Program.cs | 51 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/push-url/Program.cs | 38 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/push-url/Program.cs | 44 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/push-url/Program.cs | 51 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/select-2/Program.cs | 57 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/select-2/Program.cs | 63 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/select-2/Program.cs | 70 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL | projects/htmx/htmx-config-request/README.md | 9 | evt.detail.ctx.request.body.set("Name", "John Doe"); | CODE |
| CRITICAL⚡ | projects/htmx/htmx-config-request/Program.cs | 37 | evt.detail.ctx.request.body.set("Name", "John Doe"); | CODE |
| CRITICAL⚡ | projects/htmx/htmx-config-request/Program.cs | 40 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/htmx-config-request/Program.cs | 46 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/htmx-config-request/Program.cs | 53 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-retarget/Program.cs | 57 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-retarget/Program.cs | 63 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-retarget/Program.cs | 70 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/hx-on-2/Program.cs | 38 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/hx-on-2/Program.cs | 44 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/hx-on-2/Program.cs | 51 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-trigger-2/Program.cs | 42 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-trigger-2/Program.cs | 48 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/header-hx-trigger-2/Program.cs | 55 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| CRITICAL⚡ | projects/htmx/hx-preserve/Program.cs | 48 | let httpVerb = evt.detail.ctx.request.method.toUpperCase(); | CODE |
| CRITICAL⚡ | projects/htmx/hx-preserve/Program.cs | 54 | if (evt.detail.ctx.request.body.has(antiForgery.formFieldName)) | CODE |
| CRITICAL⚡ | projects/htmx/hx-preserve/Program.cs | 61 | evt.detail.ctx.request.body.set(antiForgery.formFieldName, antiForgery.requestToken); | CODE |
| 27 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7250 | function defaultReaderClosedPromiseInitialize(reader) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7256 | function defaultReaderClosedPromiseInitializeAsRejected(reader, reason) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7260 | function defaultReaderClosedPromiseInitializeAsResolved(reader) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7264 | function defaultReaderClosedPromiseReject(reader, reason) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7273 | function defaultReaderClosedPromiseResetToRejected(reader, reason) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7276 | function defaultReaderClosedPromiseResolve(reader) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7356 | function AcquireReadableStreamDefaultReader(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7359 | function ReadableStreamAddReadRequest(stream, readRequest) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7362 | function ReadableStreamFulfillReadRequest(stream, chunk, done) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7371 | function ReadableStreamGetNumReadRequests(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7374 | function ReadableStreamHasDefaultReader(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7622 | function AcquireReadableStreamAsyncIterator(stream, preventCancel) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7629 | function IsReadableStreamAsyncIterator(x) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7638 | function streamAsyncIteratorBrandCheckException(name) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7644 | function IsFiniteNonNegativeNumber(v) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7896 | function IsReadableByteStreamController(x) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7905 | function IsReadableStreamBYOBRequest(x) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7914 | function ReadableByteStreamControllerCallPullIfNeeded(controller) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7951 | function ReadableByteStreamControllerConvertPullIntoDescriptor(pullIntoDescriptor) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7956 | function ReadableByteStreamControllerEnqueueChunkToQueue(controller, buffer, byteOffset, byteLength) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7964 | function ReadableByteStreamControllerFillPullIntoDescriptorFromQueue(controller, pullIntoDescriptor) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7994 | function ReadableByteStreamControllerFillHeadPullIntoDescriptor(controller, size, pullIntoDescriptor) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 7998 | function ReadableByteStreamControllerHandleQueueDrain(controller) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8006 | function ReadableByteStreamControllerInvalidateBYOBRequest(controller) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8014 | function ReadableByteStreamControllerProcessPullIntoDescriptorsUsingQueue(controller) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8190 | function ReadableByteStreamControllerError(controller, e) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8200 | function ReadableByteStreamControllerGetDesiredSize(controller) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8210 | function ReadableByteStreamControllerRespond(controller, bytesWritten) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8217 | function ReadableByteStreamControllerRespondWithNewView(controller, view) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8280 | function SetUpReadableStreamBYOBRequest(request, controller, view) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8284 | function byobRequestBrandCheckException(name) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8287 | function byteStreamControllerBrandCheckException(name) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8290 | function AcquireReadableStreamBYOBReader(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8293 | function ReadableStreamAddReadIntoRequest(stream, readIntoRequest) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8296 | function ReadableStreamFulfillReadIntoRequest(stream, chunk, done) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8305 | function ReadableStreamGetNumReadIntoRequests(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8308 | function ReadableStreamHasBYOBReader(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8421 | function IsReadableStreamBYOBReader(x) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8430 | function ReadableStreamBYOBReaderRead(reader, view, readIntoRequest) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8439 | function byobReaderBrandCheckException(name) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8491 | function convertUnderlyingSinkAbortCallback(fn, original, context) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8497 | function convertUnderlyingSinkCloseCallback(fn, original, context) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8503 | function convertUnderlyingSinkStartCallback(fn, original, context) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8509 | function convertUnderlyingSinkWriteCallback(fn, original, context) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8693 | function WritableStreamAddWriteRequest(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8703 | function WritableStreamDealWithRejection(stream, error) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8711 | function WritableStreamStartErroring(stream, reason) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8751 | function WritableStreamFinishInFlightWrite(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8755 | function WritableStreamFinishInFlightWriteWithError(stream, error) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8760 | function WritableStreamFinishInFlightClose(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8777 | function WritableStreamFinishInFlightCloseWithError(stream, error) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8786 | function WritableStreamCloseQueuedOrInFlight(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8792 | function WritableStreamHasOperationMarkedInFlight(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8798 | function WritableStreamMarkCloseRequestInFlight(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8802 | function WritableStreamMarkFirstWriteRequestInFlight(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8805 | function WritableStreamRejectCloseAndClosedPromiseIfNeeded(stream) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8815 | function WritableStreamUpdateBackpressure(stream, backpressure) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8952 | function IsWritableStreamDefaultWriter(x) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8961 | function WritableStreamDefaultWriterAbort(writer, reason) { | CODE |
| LOW⚡ | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 8965 | function WritableStreamDefaultWriterClose(writer) { | CODE |
| 185 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | projects/datastar/backend-patch-signals-2/Program.cs | 0 | signals { {{elementid}}: 'hello world from the backend with signal {{elementid}}' } | STRING |
| HIGH | projects/datastar/backend-patch-signals-3/Program.cs | 0 | signals { {{elementid}}: 'hello world from the backend with signal {{elementid}}' } | STRING |
| HIGH | projects/datastar/backend-patch-signals-4/Program.cs | 0 | signals { {{elementid}}: 'hello world from the backend with signal {{elementid}}' } | STRING |
| HIGH | …ojects/datastar/data-on-signal-patch-filter/Program.cs | 0 | signals { {{elementid}}: 'hello world from the backend with signal {{elementid}}' } | STRING |
| HIGH | projects/datastar/backend-patch-signals/Program.cs | 0 | signals { {{elementid}}: 'hello world from the backend with signal {{elementid}}' } | STRING |
| HIGH | projects/datastar/data-on-signal-patch/Program.cs | 0 | signals { {{elementid}}: 'hello world from the backend with signal {{elementid}}' } | STRING |
| HIGH | projects/datastar/data-indicator/Program.cs | 0 | signals { {{elementid}}: 'hello world from the backend with signal {{elementid}}' } | STRING |
| HIGH | …ojects/datastar/data-on-signal-patch-filter/Program.cs | 0 | <html> <head> <script type="module" src="https://cdn.jsdelivr.net/gh/starfederation/datastar@v1.0.2/bundles/datastar.js" | STRING |
| HIGH | projects/datastar/data-on-signal-patch/Program.cs | 0 | <html> <head> <script type="module" src="https://cdn.jsdelivr.net/gh/starfederation/datastar@v1.0.2/bundles/datastar.js" | STRING |
| HIGH | projects/datastar/data-indicator/Program.cs | 0 | <html> <head> <script type="module" src="https://cdn.jsdelivr.net/gh/starfederation/datastar@v1.0.2/bundles/datastar.js" | STRING |
| HIGH | projects/htmx/header-hx-trigger/Program.cs | 0 | <!doctype html> <html> <head> <style> li{ cursor:pointer; } </style> <meta name="htmx-config" content='{ "antiforgery": | STRING |
| HIGH | projects/htmx/header-hx-replace-url/Program.cs | 0 | <!doctype html> <html> <head> <style> li{ cursor:pointer; } </style> <meta name="htmx-config" content='{ "antiforgery": | STRING |
| HIGH | projects/htmx/hx-headers/Program.cs | 0 | <!doctype html> <html> <head> <style> li{ cursor:pointer; } </style> <meta name="htmx-config" content='{ "antiforgery": | STRING |
| HIGH | projects/htmx/hx-prompt/Program.cs | 0 | <!doctype html> <html> <head> <style> li{ cursor:pointer; } </style> <meta name="htmx-config" content='{ "antiforgery": | STRING |
| HIGH | projects/htmx/all-verbs/Program.cs | 0 | <!doctype html> <html> <head> <style> li{ cursor:pointer; } </style> <meta name="htmx-config" content='{ "antiforgery": | STRING |
| HIGH | projects/htmx/header-hx-retarget/Program.cs | 0 | <!doctype html> <html> <head> <style> li{ cursor:pointer; } </style> <meta name="htmx-config" content='{ "antiforgery": | STRING |
| HIGH | projects/htmx/hx-on-2/Program.cs | 0 | <!doctype html> <html> <head> <style> li{ cursor:pointer; } </style> <meta name="htmx-config" content='{ "antiforgery": | STRING |
| HIGH | projects/htmx/header-hx-trigger-2/Program.cs | 0 | <!doctype html> <html> <head> <style> li{ cursor:pointer; } </style> <meta name="htmx-config" content='{ "antiforgery": | STRING |
| HIGH | projects/htmx/header-hx-trigger-3/Program.cs | 0 | <!doctype html> <html> <head> <style> li{ cursor:pointer; } </style> <meta name="htmx-config" content='{ "antiforgery": | STRING |
| HIGH | projects/htmx/header-hx-trigger-4/Program.cs | 0 | <!doctype html> <html> <head> <style> li{ cursor:pointer; } </style> <meta name="htmx-config" content='{ "antiforgery": | STRING |
| HIGH | projects/htmx/hx-confirm/Program.cs | 0 | <!doctype html> <html> <head> <style> li{ cursor:pointer; } </style> <meta name="htmx-config" content='{ "antiforgery": | STRING |
| HIGH | …roblem-details-middleware/problem-details-3/Program.cs | 0 | <html> <head> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet | STRING |
| HIGH | …roblem-details-middleware/problem-details-2/Program.cs | 0 | <html> <head> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet | STRING |
| HIGH | …/problem-details-middleware/problem-details/Program.cs | 0 | <html> <head> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet | STRING |
| HIGH | projects/minimal-api/endpoint-filter-1/Program.cs | 0 | <html> <head> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet | STRING |
| HIGH | projects/minimal-api/endpoint-filter-3/Program.cs | 0 | <html> <head> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet | STRING |
| HIGH | projects/minimal-api/endpoint-filter-2/Program.cs | 0 | <html> <head> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet | STRING |
| HIGH | projects/minimal-api/open-api-1/Program.cs | 0 | <html> <head> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet | STRING |
| HIGH | projects/minimal-api/open-api-2/Program.cs | 0 | <html> <head> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet | STRING |
| HIGH | projects/minimal-api/map-group-2/Program.cs | 0 | <html> <head> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet | STRING |
| HIGH | projects/minimal-api/map-group-3/Program.cs | 0 | <html> <head> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | projects/localization/localization-6/Program.cs | 13 | //I have added PO file for French and English | COMMENT |
| HIGH | projects/localization/localization-5/Program.cs | 13 | //I have added PO file for French and English | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | MIGRATION-PLAN.md | 120 | #### Step 1: Update .csproj File | COMMENT |
| LOW | MIGRATION-PLAN.md | 146 | #### Step 2: Update Program.cs | COMMENT |
| LOW | MIGRATION-PLAN.md | 225 | #### Step 3: Update README.md | COMMENT |
| LOW | MIGRATION-PLAN.md | 285 | #### Step 1: Update Program.cs | COMMENT |
| LOW | MIGRATION-PLAN.md | 321 | #### Step 2: Update README.md | COMMENT |
| LOW | MIGRATION-PLAN.md | 398 | #### Step 1: Update Program.cs | COMMENT |
| LOW | MIGRATION-PLAN.md | 440 | #### Step 2: Update README.md | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | projects/build.sh | 4 | # ------------------------------------------------------------------------------- | COMMENT |
| MEDIUM | projects/build.sh | 7 | # ------------------------------------------------------------------------------- | COMMENT |
| MEDIUM | projects/build.sh | 26 | # ------------------------------------------------------------------------------- | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | MIGRATION-PLAN.md | 521 | # Should see: Build succeeded. 0 Warning(s). 0 Error(s). | COMMENT |
| LOW | MIGRATION-PLAN.md | 581 | COMMENT | |
| LOW | MIGRATION-PLAN.md | 1021 | ``` | COMMENT |
| LOW | …ojects/markdown-server-middleware/markdown/about/us.md | 1 | # About Us | COMMENT |
| LOW | projects/markdown-server/markdown/about/us.md | 1 | # About Us | COMMENT |
| LOW | projects/logging/logging-1/Program.cs | 1 | var builder = WebApplication.CreateBuilder(); | COMMENT |
| LOW | projects/logging/logging-5/Program.cs | 1 | using System.Collections.Concurrent; | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | projects/response/compression-response/Program.cs | 19 | await context.Response.WriteAsync(@"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium dolor | CODE |
| LOW | projects/response/compression-response/Program.cs | 19 | await context.Response.WriteAsync(@"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium dolor | CODE |
| LOW⚡ | projects/htmx/htmx-response-error/Program.cs | 42 | evt.detail.ctx.request.body.set("Name", "John Doe"); | CODE |
| LOW | projects/htmx/htmx-config-request/README.md | 9 | evt.detail.ctx.request.body.set("Name", "John Doe"); | CODE |
| LOW⚡ | projects/htmx/htmx-config-request/Program.cs | 37 | evt.detail.ctx.request.body.set("Name", "John Doe"); | CODE |
| LOW | projects/sfa/wiki/Program.cs | 374 | .Append(Input.Text.Class("uk-input uk-form-width-large").Attribute("placeholder", "Click to select file").Toggle | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 11458 | value: function getData() { | CODE |
| LOW | projects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/pdf.js | 13042 | value: function getData() { | CODE |
| LOW | …ects/mini/pdf-viewer/wwwroot/js/pdfjs-viewer/viewer.js | 18607 | getData: function getData() { | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | projects/htmx/header-hx-replace-url/Program.cs | 27 | <p>Click on the below links to see the response. Don't forget to check your browser url.</p> | CODE |