Skip to content
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lelinhtinh committed Oct 11, 2019
1 parent 16bfdef commit e61437a
Show file tree
Hide file tree
Showing 10 changed files with 122 additions and 167 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: de4js
description: JavaScript Deobfuscator and Unpacker
version: 1.3.2
version: 1.4.0
author: Zzbaivong
author_email: [email protected]
url: https://lelinhtinh.github.io
Expand Down
4 changes: 2 additions & 2 deletions _data/options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
- key: p_a_c_k_e_r
name: Packer
- key: javascriptobfuscator
name: Javascript Obfuscator
name: JS Obfuscator
- key: myobfuscate
name: My Obfuscate
name: My Obfuscate
1 change: 1 addition & 0 deletions _includes/highlight-js/styles/hljs-theme.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

74 changes: 0 additions & 74 deletions _includes/highlight-js/styles/tomorrow-night-bright.css

This file was deleted.

18 changes: 5 additions & 13 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="{{ site.lang | default: " en-US " }}" manifest="de4js.appcache">
<html lang="{{ site.lang | default: 'en-US' }}" manifest="de4js.appcache">

<head>
<meta charset='utf-8'>
Expand Down Expand Up @@ -44,7 +44,6 @@ <h2>{{ site.description }}</h2>
<section id="main_content">
<form class="wrap" name="bvDecode">
<textarea id="input" class="content" rows="7" placeholder="Paste code here..."></textarea>
<textarea id="output"></textarea>

<div class="config center">
<input id="none" class="magic-radio" type="radio" value="" name="encode" checked>
Expand All @@ -57,20 +56,13 @@ <h2>{{ site.description }}</h2>
<label for="nicify">Unreadable</label>
</div>

<div class="config center">
<input id="beautify" class="magic-checkbox" type="checkbox" name="beautify" checked>
<label for="beautify">Beautify</label>
<input id="auto" class="magic-checkbox" type="checkbox" name="auto">
<label for="auto">Auto</label>
</div>

<div class="center">
<button id="redecode" class="btn" type="button">
Continue decoding
</button>
<button id="clear" class="btn" type="reset">
Clear
</button>
<button id="auto" class="btn" type="button">
Auto Decode
</button>
</div>

<div class="view-wrap">
Expand All @@ -82,7 +74,7 @@ <h2>{{ site.description }}</h2>
<img class="btn-icon" src="{{ 'assets/icon/external-link-symbol.png' | relative_url }}" alt="Open in new tab">
</a>
</div>
<pre id="view" class="hljs">Please choose a right encoding type!</pre>
<pre id="view" class="hljs"></pre>
</div>
</form>
</section>
Expand Down
28 changes: 22 additions & 6 deletions assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ $special-primary-color: #9C27B0;
$special-disabled-color: #000000;

@import "{{ site.theme }}";
{% include highlight-js/styles/tomorrow-night-bright.css %}
{% include highlight-js/styles/hljs-theme.css %}
.hljs{
background: #030303;
}
@import "magic-check/sass/magic-check.scss";

body,
Expand All @@ -33,10 +36,6 @@ code {
resize: vertical;
}

#output {
display: none;
}

.config {
font-size: smaller;
color: #595656;
Expand All @@ -52,7 +51,7 @@ code {

label {
display: inline-block;
margin: .5em;
margin: .3em;
}
}

Expand All @@ -62,6 +61,8 @@ code {
}

.btn {
cursor: pointer;

&:active,
&:focus,
&:hover {
Expand All @@ -76,13 +77,28 @@ code {
&::-moz-focus-inner {
border: 0 none;
}

&:disabled {
cursor: not-allowed;
background: #141414;
border-color: #1b1b1b;
color: #525252;
}
}

#view {
transition: opacity ease-in-out .2s;

&.waiting {
opacity: .3;

&:empty:before {
content: 'Please wait...';
}
}

&:empty:before {
content: 'Please choose a right encoding type!';
}
}

Expand Down
Loading

0 comments on commit e61437a

Please sign in to comment.