Skip to content
This repository was archived by the owner on Jan 28, 2021. It is now read-only.

Commit

Permalink
i dont remember!
Browse files Browse the repository at this point in the history
  • Loading branch information
TerriblePanda committed Sep 12, 2019
1 parent ff47794 commit a454c80
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
15 changes: 9 additions & 6 deletions jbytemod.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ simplify_graph:BOOLEAN:graph=true
remove_redundant:BOOLEAN:graph=false
max_redundant_input:INT:graph=2
decompile_graph:BOOLEAN:graph=true
primary_color:STRING:color=#511111
primary_color:STRING:color=#557799
secondary_color:STRING:color=#995555
use_weblaf:BOOLEAN:style=true
ff_rbr:BOOLEAN:decompiler_fernflower=true
Expand All @@ -22,8 +22,8 @@ ff_inn:BOOLEAN:decompiler_fernflower=true
ff_fdi:BOOLEAN:decompiler_fernflower=true
ff_den:BOOLEAN:decompiler_fernflower=true
ff_lac:BOOLEAN:decompiler_fernflower=false
ff_asc:BOOLEAN:decompiler_fernflower=false
ff_dgs:BOOLEAN:decompiler_fernflower=true
ff_asc:BOOLEAN:decompiler_fernflower=true
ff_dgs:BOOLEAN:decompiler_fernflower=false
ff_uto:BOOLEAN:decompiler_fernflower=true
ff_nns:BOOLEAN:decompiler_fernflower=false
ff_dc4:BOOLEAN:decompiler_fernflower=true
Expand Down Expand Up @@ -53,14 +53,14 @@ cfr_hidebridgemethods:BOOLEAN:decompiler_cfr=true
cfr_removeboilerplate:BOOLEAN:decompiler_cfr=true
cfr_renamedupmembers:BOOLEAN:decompiler_cfr=false
cfr_decodelambdas:BOOLEAN:decompiler_cfr=true
cfr_forloopaggcapture:BOOLEAN:decompiler_cfr=false
cfr_forloopaggcapture:BOOLEAN:decompiler_cfr=true
cfr_labelledblocks:BOOLEAN:decompiler_cfr=true
cfr_eclipse:BOOLEAN:decompiler_cfr=true
cfr_recovertypehints:BOOLEAN:decompiler_cfr=false
cfr_forcetopsort:BOOLEAN:decompiler_cfr=false
cfr_showinferrable:BOOLEAN:decompiler_cfr=false
cfr_removebadgenerics:BOOLEAN:decompiler_cfr=true
cfr_hideutf:BOOLEAN:decompiler_cfr=false
cfr_hideutf:BOOLEAN:decompiler_cfr=true
cfr_hidelangimports:BOOLEAN:decompiler_cfr=true
cfr_innerclasses:BOOLEAN:decompiler_cfr=true
cfr_removeinnerclasssynthetics:BOOLEAN:decompiler_cfr=true
Expand All @@ -75,7 +75,7 @@ cfr_renameillegalidents:BOOLEAN:decompiler_cfr=true
cfr_silent:BOOLEAN:decompiler_cfr=false
cfr_recover:BOOLEAN:decompiler_cfr=true
cfr_stringbuffer:BOOLEAN:decompiler_cfr=false
cfr_forceexceptionprune:BOOLEAN:decompiler_cfr=false
cfr_forceexceptionprune:BOOLEAN:decompiler_cfr=true
cfr_sugarasserts:BOOLEAN:decompiler_cfr=true
cfr_arrayiter:BOOLEAN:decompiler_cfr=true
cfr_forcetopsortaggress:BOOLEAN:decompiler_cfr=false
Expand Down Expand Up @@ -104,3 +104,6 @@ procyon_mergeVariables:BOOLEAN:decompiler_procyon=false
procyon_disableForEachTransforms:BOOLEAN:decompiler_procyon=false
procyon_showDebugLineNumbers:BOOLEAN:decompiler_procyon=false
procyon_simplifyMemberReferences:BOOLEAN:decompiler_procyon=false
discord_state:BOOLEAN:general=true
auto_scan:BOOLEAN:general=true
bad_class_check:BOOLEAN:general=true
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import hakery.club.raccscanner.Raccoon;
import hakery.club.raccscanner.scanner.impl.classes.ClassCountScanner;
import hakery.club.raccscanner.scanner.impl.classes.DebugInfoScanner;
import hakery.club.raccscanner.scanner.impl.debugging.DebugScanner;
import hakery.club.raccscanner.scanner.impl.jar.JarSizeScanner;
import hakery.club.raccscanner.scanner.impl.obfuscators.allatori.AllatoriStringEncryptionScanner;
import hakery.club.raccscanner.scanner.impl.obfuscators.dasho.DashOStringEncryptionScanner;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
package hakery.club.raccscanner.scanner.impl.debugging;

import com.sun.org.apache.xpath.internal.operations.String;
import hakery.club.raccscanner.scanner.Scanner;
import me.lpk.util.ASMUtils;
import org.objectweb.asm.ClassWriter;

public class DebugScanner extends Scanner<Integer> {

@Override
public boolean scan() {

raccoon.getClasses().forEach((name, node) -> {
System.out.println(name);

node.methods.forEach(methodNode -> System.out.println(methodNode.name));
});

Expand Down

0 comments on commit a454c80

Please sign in to comment.