NShiftKey-Rule-Guide logo NShiftKey-Rule-Guide

1. Vulnerability Description

2. Vulnerability Countermeasure

3. Example Code

class Test {
    val str = "this is my $interpolated string lookalike"
    val str2 = "this is my ${interpolated.string} lookalike"
}
class Test {
    val a = "hello"
    val str = s"${a}"
}