Skip to content

Commit

Permalink
fix(obfuscator): fixed token logger protection
Browse files Browse the repository at this point in the history
  • Loading branch information
terminalsin committed Jun 28, 2022
1 parent 2fee8a3 commit 6bdcfb9
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ void handle(final InitMethodTransformEvent event) {
.filter(SkidConstantExpr.class::isInstance)
.map(SkidConstantExpr.class::cast)
.filter(e -> e.getType().equals(TypeUtil.STRING_TYPE))
.collect(Collectors.toList())
.forEach(e -> {
final String cst = (String) e.getConstant();
final Optional<String> match = bannedStrings
Expand Down

2 comments on commit 6bdcfb9

@Envitous
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Imagine

@terminalsin
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Imagine

ikr

Please sign in to comment.