-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FeatReq | Extend webcrack instance #48
Comments
Sounds like a good idea How about such an API? function myPlugin({ types }) {
return {
runAfter: 'deobfuscate', // 'parse' | 'prepare' | 'unminify' | 'deobfuscate' | 'unpack'
visitor: {
Identifier(path) {}
},
};
}
const result = await webcrack(input, { plugins: [myPlugin] });
console.log(result.code); |
I 🖤 that idea! |
Great! |
It'd be great If we can extend rules/scripts. Depends on choice, before or after deobfuscation.
For example:
The text was updated successfully, but these errors were encountered: