-
Notifications
You must be signed in to change notification settings - Fork 296
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
Custom multidex and custom flutter packer #372
Custom multidex and custom flutter packer #372
Conversation
Update packers.yara
Modified CustomMultiDexPacker to detect more samples
Reference ticket id: rednaga#368 rednaga#370
apkid/rules/dex/packers.yara
Outdated
{ | ||
meta: | ||
description = "custom_flutter" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The description
tag you can maintain the previous name "Custom Flutter"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maintained the previous name "Custom Flutter"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This
rule custom_flutter : packer
{
meta:
description = "custom_flutter"
...
}
should be
rule custom_flutter : packer
{
meta:
description = "Custom Flutter"
...
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I cannot see this fixed @ReBensk
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please address this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Last change before merging in master. Please address this
Hi @ReBensk , Almost there! I have noticed that this file and others in the project are using 2 spaces. Check other rules within the file you're pushing into. Please remove the extra indentation, and we'd be able to finally merge it. Good work and thanks! |
Hi @enovella, I have removed the extra indentation. “Thank you for your valuable feedback” |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I cannot see the last changes applied on the PR. Did you manage to push the changes in #372 ?
|
apkid/rules/dex/packers.yara
Outdated
author = "ReBensk" | ||
{ | ||
meta: | ||
description = "custom_flutter" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't forget "Custom Flutter" :P
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did some small changes on the code to cover more samples |
"Custom Flutter" instead of "description: custom_flutter" and "Custom Multidex" instead of description = "Custom multidex" |
Hi @ReBensk , Unfortunately, I didn't have the time to review well the opcodes and so on. Let's merge it and see if you can tweak it more in the near future. Thanks for your work. Edu |
Reference ticket id:
#368
#370