Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove genericeval unpacker as unsafe
  • Loading branch information
bitwiseman committed Apr 1, 2013
1 parent 408988b commit 1d688f4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 55 deletions.
8 changes: 0 additions & 8 deletions index.html
Expand Up @@ -152,7 +152,6 @@
<script src="unpackers/urlencode_unpacker.js"></script>
<script src="unpackers/p_a_c_k_e_r_unpacker.js"></script>
<script src="unpackers/myobfuscate_unpacker.js"></script>
<script src="unpackers/genericeval_unpacker.js"></script>

<script>

Expand All @@ -169,7 +168,6 @@
P_A_C_K_E_R.run_tests(st);
Urlencoded.run_tests(st);
MyObfuscate.run_tests(st);
GenericEval.run_tests(st);
// $('#testresults').html(results.replace(/r/g, '').replace(/\n/g, '<br>'));
var results = st.results_raw().replace(/ /g, '&nbsp;').replace(/\r/g, '·').replace(/\n/g, '<br>');
$('#testresults').html(results).show();
Expand Down Expand Up @@ -238,12 +236,6 @@
}
}
}
if (GenericEval.detect(source)) {
var unpacked = GenericEval.unpack(source);
if (unpacked != source) {
source = unpacker_filter(unpacked);
}
}

return trailing_comments + source;
}
Expand Down
47 changes: 0 additions & 47 deletions unpackers/genericeval_unpacker.js

This file was deleted.

0 comments on commit 1d688f4

Please sign in to comment.