Daniel Krügler
Daniel Krügler
Class `ObfuscatedString` provides basically two ways to retrieve its obfuscated string data (for good reasons): Either (and traditionally) via it's `toString` method or via its `toCharArray()`. This two-fold API is...
The current implementation of `ObfuscatedString#toCharArray()` unconditionally returns from the obtained `CharBuffer` the result array by invoking its `array()` method. But there is no guarantee that `CharsetDecoder.decode` actually returns a result...
The current msvc-based stacktrace only determines the module name - not its complete path - contrary to the full featured unixoid implementation. It turns out that this is rather simple...