-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changelog: Refractoring the version of the obfuscator to the end Adding the advanced module Pulling latest core deobfuscator version Minor changes
- Loading branch information
1 parent
756b0d6
commit eb73226
Showing
14 changed files
with
194 additions
and
27 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
...arefight/narumiideobfgui/deobfuscatorutils/subclasses/latest_qProtectFlowTransformer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
package gq.malwarefight.narumiideobfgui.deobfuscatorutils.subclasses; | ||
|
||
import uwu.narumi.deobfuscator.transformer.impl.qprotect.latest.qProtectFlowTransformer; | ||
|
||
public class latest_qProtectFlowTransformer extends qProtectFlowTransformer {} | ||
public class latest_qProtectFlowTransformer extends uwu.narumi.deobfuscator.transformer.impl.qprotect.latest.qProtectFlowTransformer {} |
4 changes: 1 addition & 3 deletions
4
...malwarefight/narumiideobfgui/deobfuscatorutils/subclasses/latest_qProtectTransformer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
package gq.malwarefight.narumiideobfgui.deobfuscatorutils.subclasses; | ||
|
||
import uwu.narumi.deobfuscator.transformer.composed.qprotect.latest.qProtectTransformer; | ||
|
||
public class latest_qProtectTransformer extends qProtectTransformer {} | ||
public class latest_qProtectTransformer extends uwu.narumi.deobfuscator.transformer.composed.qprotect.latest.qProtectTransformer {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...lasses/b31_qProtectStringTransformer.java → ...lasses/qProtectStringTransformer_b31.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package gq.malwarefight.narumiideobfgui.deobfuscatorutils.subclasses; | ||
|
||
import uwu.narumi.deobfuscator.transformer.impl.qprotect.b31.qProtectStringTransformer; | ||
public class b31_qProtectStringTransformer extends qProtectStringTransformer {} | ||
public class qProtectStringTransformer_b31 extends qProtectStringTransformer {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
src/main/resources/gq/malwarefight/narumiideobfgui/deobfuscator-gui-advanced-view.fxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version = "1.0" encoding = "UTF-8"?> | ||
|
||
<?import javafx.geometry.Insets?> | ||
<?import javafx.scene.control.*?> | ||
<?import javafx.scene.layout.HBox?> | ||
<?import javafx.scene.layout.VBox?> | ||
<VBox xmlns:fx="http://javafx.com/fxml" | ||
fx:controller="gq.malwarefight.narumiideobfgui.DeobfuscatorGUIController" alignment="CENTER"> | ||
<padding> | ||
<Insets bottom="20.0" left="20.0" right="20.0" top="20.0"/> | ||
</padding> | ||
<HBox alignment="TOP_CENTER"> | ||
<Label>Input file</Label> | ||
<TextField fx:id="inputName"/> | ||
<Button text="Choose" onAction="#chooseInputFile"/> | ||
</HBox> | ||
<HBox alignment="TOP_CENTER"> | ||
<Label>Output file</Label> | ||
<TextField fx:id="outputName"/> | ||
<Button text="Choose" onAction="#chooseOutputFile"/> | ||
</HBox> | ||
<ScrollPane> | ||
<VBox alignment="CENTER" fx:id="buttonContainer"/> | ||
</ScrollPane> | ||
<Button text="Deobfuscate" onAction="#deobfuscate"/> | ||
<Label fx:id = "result"/> | ||
</VBox> |