2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-10 21:33:36 +00:00

Added 'Disassemble x86' operation

This commit is contained in:
n1474335
2017-10-04 22:35:44 +01:00
parent 89ca2cc631
commit cd5265fad4
12 changed files with 5886 additions and 19 deletions

View File

@@ -9,7 +9,7 @@ require("babel-polyfill");
const Chef = require("../core/Chef.js").default;
const CyberChef = module.exports = {
const CyberChef = {
bake: function(input, recipeConfig) {
this.chef = new Chef();
@@ -23,3 +23,5 @@ const CyberChef = module.exports = {
}
};
module.exports = CyberChef;