it's been a while, but antilvl 1.4.0 is finally released. i did not plan to make another release, but there were some show-stopping bugs in the linux version and some other things that were just embarrassing. :D
major changes include:
you can read more / download here: http://androidcracking.blogspot.com/p/antilvl_01.html
major changes include:
- option to use your own signatures
- more control over which fingerprints are used
- support for verizon drm
- a few new anti-tampering checks are known
- some fixes in how fingerprints were applied
you can read more / download here: http://androidcracking.blogspot.com/p/antilvl_01.html
This comment has been removed by a blog administrator.
ReplyDelete**SELLING SSN+DOB FULLZ**
DeleteCONTACT
Telegram > @leadsupplier
ICQ > 752822040
Email > leads.sellers1212@gmail.com
>>1$ each without DL/ID number
>>2$ each with DL
>>5$ each for premium (also included relative info)
*Will reduce price if buying in bulk
*Hope for a long term business
FORMAT OF LEADS/FULLZ/PROS
->FULL NAME
->SSN
->DATE OF BIRTH
->DRIVING LICENSE NUMBER WITH EXPIRY DATE
->COMPLETE ADDRESS
->PHONE NUMBER, EMAIL, I.P ADDRESS
->EMPLOYMENT DETAILS
->REALTIONSHIP DETAILS
->MORTGAGE INFO
->BANK ACCOUNT DETAILS
>Fresh Leads for tax returns & w-2 form filling
>Payment mode BTC, ETH, LTC, PayPal, USDT & PERFECT MONEY
''OTHER GADGETS PROVIDING''
>SSN+DOB Fullz
>CC with CVV
>Photo ID's
>Dead Fullz
>Spamming Tutorials
>Carding Tutorials
>Hacking Tutorials
>SMTP Linux Root
>DUMPS with pins track 1 and 2
>Sock Tools
>Server I.P's
>HQ Emails with passwords
Email > leads.sellers1212@gmail.com
Telegram > @leadsupplier
ICQ > 752822040
THANK YOU
SCAM SCAM
DeleteI have used your tool to reclaim all the Verizon DRM protected apps that I bought.
ReplyDeleteNow when I switch carriers this week they wont be stealing all my game loft games from me and robbing me of my hard earned money
Thank you for this tool
IT works well and it's very fast. Thanks once again
LaBBa, i had to remove your comment since it mentioned a specific app. the --skip-cleanup option will still create an *-antilvl.apk and you should use that for your output when you do --assemble-only. all antilvl has is the classes.dex, and without a full apk it can not rebuild a working apk.
ReplyDeleteAnonymous: you're a great example of when drm fails. glad you got it sorted.
ReplyDeleteLohan I will be supporting you in your further development of this tool. I know the whole community of users will be also behind you.
ReplyDeleteIn your opinion do you think the fingerprint method will be able to detect and disable every ammount of DRM code in a .apk file if the fingerprints are updated?
Google is saying that with LVL Tamper resistance that they can stop it but I believe this is just lies that are being told to developers to not discourage them.
I would like to know your opinion on this since you are the writer of this great tool.
Anonymous, since fingerprints replicate what someone would do, ie. find this, replace it with that, it can do most things. the trick is understanding the code well enough to make good fingerprints.
ReplyDeletegoogle and other developers know there is no uncrackable drm. everyone knows. the decision to add more protection requires a cost benefit analysis. how much does developing robust protection cost and how much do you benefit as a developer? this is not an easy question to answer since there is not any good evidence to suggest a direct link between a pirated release and a decline in sales. eventually it will be cracked anyway, so programmer efforts will be wasted.
Amen brother lohan. Very wise words from a wise person. I agree with you.
ReplyDeleteI am disgusted by DRM especially since I would rather buy products without DRM than buy something that has it (as is most Verizon products)
Especially since most of these "methods" will require the user to have internet. Totally defeating the purpose of a versatile mobile device.
i'm not worthy of such praise, really. i'm just some guy. :D
ReplyDeletesince you are into drm free games, you might be interested to know about the humble indie bundle. there have been several, so far. they are "pay as much as you want" and all of the games are drm free. they're all indie developers, but the games are quite well produced, especially for the price.
Thank you for the game suggestion. I have checked it out and I plan to purchase it to help charitable organizations.
ReplyDeleteI have a question about antiLVL.jar
Is it possible to do batch processing of APKs using this tool so that every APK will be checked patched and signed in a specific directory
batch processing can be done with the terminal. if you're on linux, you have shell scripts. if on windows, you could write a one line batch file that looped through every *.apk in a directory.
ReplyDeletethis is a batch file i use:
@ECHO OFF
SET TEST_DIR=\antilvl
SET OUTPUT_DIR=%TEST_DIR%\output
SET ANTILVL_CMD=java -jar antilvl.jar
SET ANTILVL_OPTS=--force --skip-cleanup
FOR /f "usebackq delims=|" %%f IN (`dir /b "%TEST_DIR%\*.apk"`) DO %ANTILVL_CMD% %ANTILVL_OPTS% %TEST_DIR%\%%f "%OUTPUT_DIR%\%%f-antilvl.apk"
PAUSE
Forgive me lohan but would those commands be used in a .bat file?
ReplyDeleteThose commands look like Windows CMD
I tried using them as a bat but I don't think I'm going about it correctly.(I'm not trained with all the CMD commands and so trying to understand each function variable is confusing me)
yes, it's a batch file. we'll talk on google.
ReplyDeletethere is a tiny bug with the above batch file if your path has spaces. use this instead:
ReplyDelete@ECHO OFF
SET TEST_DIR=\antilvl
SET OUTPUT_DIR=%TEST_DIR%\output
SET ANTILVL_CMD=java -jar antilvl.jar
SET ANTILVL_OPTS=--force --skip-cleanup
FOR /f "usebackq delims=|" %%f IN (`dir /b "%TEST_DIR%\*.apk"`) DO %ANTILVL_CMD% %ANTILVL_OPTS% "%TEST_DIR%\%%f" "%OUTPUT_DIR%\%%f-antilvl.apk"
PAUSE
Great tool Lohan ... thx a lot
ReplyDeletewhich tool use AntiLVL du decompile/recompile ?
Because it works with some app I tested whereas I have decompile/recompile errors on the same app with apktool
(I wanted to do the work with apktool and then my brain ;-) )
Anonymous: apktool will try to decode resources by default and this is often problematic. my guess is the resource formats are always changing and brut has his hands full figuring them out. anyway, use --no-res with apktool and it will just decode the smali. i prefer to just use baksmali and smali instead of apktool, which is what apktool uses under the hood.
ReplyDeleteHi Lohan,
ReplyDeleteDo I miss something or AntiLVL4 doesn't do anything agaisnt getdeviceID ???
I mean : in antiLVL 1.2.5, there is a deviceID spoof thing in smalihook.smali
ReplyDeleteBut in antiLVL 1.4.0, I don't find anything about it.
I tried antiLVL on a target that use several protections with getDeviceId() of TelephonyManager ... and antiLVL didn't touch it.
Learner: hello Learner. you are very astute to notice the missing function. i didn't think anyone used it. unfortunately, i removed it from the public version.
ReplyDeleteFortunately i managed to get 1.1.5 working on my target (an app you worked on in the past.. G.. k) but i dream of a 1.4.0 version + this spoofId function. I will try to merge it by myself. Is there a private version ;-)?
ReplyDeleteSo why is the download link removed?
ReplyDeleteare you scared of getting busted?
Anonymous, the page was, for some strange reason, no longer existent. it has been recreated. now i have to fix some links..
ReplyDeleteHey guys, I just made some stats how much cracked are my apps and anti lvl is used for more than 30% of usage of paid flavor of my apps. Do you really think you are doing great job? I'm disgusted from your work. You think you are smart but you do bad thing for Android:
ReplyDelete- you help warez with trojans
- you disgust people that work hard to deliver good quality apps
- incorrectly cracked apps cause application malfunction so I'm spending a lot of time with support of your errors
Go to hell
I am having some problem with fpinclude of linux version. Can you please tell me , what it does. And Synatax also.
ReplyDeleteWhat i tried?
java -jar antivil --fpinclude hook file size [my.apk]
I am using antivil instead of antilvl , as i have renamed it. xd to avoid confusion
DeleteAny chance of updating the version of smali/baksmali that antilvl is built with? I've noticed that it's built with v1.2.8 of both libs, but in November of last year, they updated it to include support for Honeycomb/ICS. This is increasingly important since I've been seeing some errors lately related to the outdated [dis]assembler, which I've not seen when manually using v1.3.3.
ReplyDeleteA really great help would be allowing the usage of a user-specified distribution...this way an update of antilvl wouldn't be needed. Just a thought.
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
ReplyDeleteat java.util.Arrays.copyOf(Unknown Source)
at java.lang.AbstractStringBuilder.expandCapacity(Unknown Source)
at java.lang.AbstractStringBuilder.append(Unknown Source)
at java.lang.StringBuilder.append(Unknown Source)
at ev.(Unknown Source)
at ex.a(Unknown Source)
at antilvl.Main.main(Unknown Source)
Anonymous,
ReplyDeleteseems like a generic java out of memory error. try running antilvl with:
java -Xmx4g antilvl.jar
this will use 4 gigs as the maximum heap size. should be enough. if your computer has less, use that.
Have come across a few apps that antilvl isn't working on. They show as failing the license check. Each are apps I've purchased ....I just want the drm gone. Any tips?
ReplyDeleteAnonymous,
ReplyDeleteAntiLVL will never be able to crack all apps. It would require a lot of time and effort and I'm just not that interested in pissing developers off. I made a swiss-army-knife type tool with a decent foundation for cracking many lvl variants and I'm going to leave it at that. I may add some more features, but that's it. Sorry!
Wonderful article .worth reading .Thank you for sharing.
ReplyDeleteDownloaded files not working on android
Enjoyed reading the article above , really explains everything in detail,the article is very interesting and effective.
ReplyDeleteThank you and good luck for the upcoming articles.
**SELLING SSN+DOB FULLZ**
ReplyDeleteCONTACT
Telegram > @leadsupplier
ICQ > 752822040
Email > leads.sellers1212@gmail.com
>>1$ each without DL/ID number
>>2$ each with DL
>>5$ each for premium (also included relative info)
*Will reduce price if buying in bulk
*Hope for a long term business
FORMAT OF LEADS/FULLZ/PROS
->FULL NAME
->SSN
->DATE OF BIRTH
->DRIVING LICENSE NUMBER WITH EXPIRY DATE
->COMPLETE ADDRESS
->PHONE NUMBER, EMAIL, I.P ADDRESS
->EMPLOYMENT DETAILS
->REALTIONSHIP DETAILS
->MORTGAGE INFO
->BANK ACCOUNT DETAILS
>Fresh Leads for tax returns & w-2 form filling
>Payment mode BTC, ETH, LTC, PayPal, USDT & PERFECT MONEY
''OTHER GADGETS PROVIDING''
>SSN+DOB Fullz
>CC with CVV
>Photo ID's
>Dead Fullz
>Spamming Tutorials
>Carding Tutorials
>Hacking Tutorials
>SMTP Linux Root
>DUMPS with pins track 1 and 2
>Sock Tools
>Server I.P's
>HQ Emails with passwords
Email > leads.sellers1212@gmail.com
Telegram > @leadsupplier
ICQ > 752822040
THANK YOU
The Best Apps and Games For Android ·https://apkmodule.com/flipaclip-cartoon-animation-mod-apk/
ReplyDeleteYour website is very good and nice information was provided in your site, thanks for sharing.
ReplyDeletepython internship | web development internship |internship for mechanical engineering students |mechanical engineering internships |java training in chennai |internship for 1st year engineering students |online internships for cse students |online internship for engineering students |internship for ece students|data science internships |