File tree Expand file tree Collapse file tree 4 files changed +38
-17
lines changed Expand file tree Collapse file tree 4 files changed +38
-17
lines changed Original file line number Diff line number Diff line change 1
1
# javascript-deobfuscator
2
+ ![ screenshot] ( https://i.gyazo.com/cc25e38d9a2fb036a7be9415a0c1c51d.png )
3
+
4
+ JavaScript Deobfuscation Tool
2
5
3
6
## Project setup
4
7
```
Original file line number Diff line number Diff line change 1
1
<!DOCTYPE html>
2
2
< html lang ="en ">
3
- < head >
4
- < meta charset ="utf-8 ">
5
- < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6
- < meta name ="viewport " content ="width=device-width,initial-scale=1.0 ">
7
- < link rel ="icon " href ="<%= BASE_URL %>favicon.ico ">
8
- < title > < %= htmlWebpackPlugin.options.title %> </ title >
9
- < script src ="https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.11.0/beautify.min.js "> </ script >
10
- </ head >
11
- < body >
12
- < noscript >
13
- < strong > We're sorry but < %= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</ strong >
14
- </ noscript >
15
- < div id ="app "> </ div >
16
- <!-- built files will be auto injected -->
17
- </ body >
18
- </ html >
3
+
4
+ < head >
5
+ < meta charset ="utf-8 ">
6
+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
7
+ < meta name ="viewport " content ="width=device-width,initial-scale=1.0 ">
8
+ < link rel ="icon " href ="<%= BASE_URL %>favicon.ico ">
9
+ < title > < %= htmlWebpackPlugin.options.title %> </ title >
10
+ < script src ="https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.11.0/beautify.min.js "> </ script >
11
+ < script async src ="https://www.googletagmanager.com/gtag/js?id=UA-162765588-3 "> </ script >
12
+ < script >
13
+ window . dataLayer = window . dataLayer || [ ] ;
14
+ function gtag ( ) { dataLayer . push ( arguments ) ; }
15
+ gtag ( 'js' , new Date ( ) ) ;
16
+ gtag ( 'config' , 'UA-162765588-3' ) ;
17
+ </ script >
18
+ </ head >
19
+
20
+ < body >
21
+ < noscript >
22
+ < strong > We're sorry but < %= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
23
+ Please enable it to continue.</ strong >
24
+ </ noscript >
25
+ < div id ="app "> </ div >
26
+ <!-- built files will be auto injected -->
27
+ </ body >
28
+
29
+ </ html >
Original file line number Diff line number Diff line change 57
57
@click =" copyToClipboard"
58
58
></textarea >
59
59
</div >
60
+
61
+ <div class =" mb-4" >
62
+ <a href =" https://github.com/LostMyCode/javascript-deobfuscator/issues" target =" _blank" >Feedback (GitHub)</a >
63
+ </div >
60
64
</div >
61
65
</template >
62
66
@@ -84,6 +88,7 @@ export default {
84
88
methods: {
85
89
decode () {
86
90
this .running = true ;
91
+ this .outputCode = null ;
87
92
this .$refs .alert .hide ();
88
93
89
94
const type = this .analizer .checkType (this .targetName , this .mainCode );
Original file line number Diff line number Diff line change @@ -2,9 +2,11 @@ module.exports = {
2
2
"transpileDependencies" : [
3
3
] ,
4
4
5
+ publicPath : './' ,
6
+
5
7
css : {
6
8
extract : {
7
- filename : "style.css"
9
+ filename : "./css/ style.css"
8
10
}
9
11
}
10
12
}
You can’t perform that action at this time.
0 commit comments