Skip to content

Commit

Permalink
Update r0tracer.js
Browse files Browse the repository at this point in the history
  • Loading branch information
r0ysue authored Jun 23, 2021
1 parent 9549cc9 commit 64a5cc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions r0tracer.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ function hook(white, black, target = null) {
var targetClasses = new Array();
Java.enumerateLoadedClasses({
onMatch: function (className) {
if (className.toString().indexOf(white) >= 0 &&
className.toString().indexOf(black) < 0
if (className.toString().toLowerCase().indexOf(white) >= 0 &&
className.toString().toLowerCase().indexOf(black) < 0
) {
console.Black("Found Class => ", className)
targetClasses.push(className);
Expand Down

0 comments on commit 64a5cc5

Please sign in to comment.