Posts

Showing posts from December, 2019

Nut Simulator/AppleSeed - Real iOS emulator (Chinese)

Image
Disclaimer: None of the software, the author, nor the blog owner is affiliated with, or sponsored or authorized by, Apple Inc. or its affiliates. Heilei/HLSimulator and Nut Simulator/AppleSeed are the only real emulators for Windows with limitation so far. Do not trust some various money hungry fake blogger websites who claims there are thousands of best iOS Emulators to run iOS apps on PC, whatever, except iEmulators that are hosting 3rd party emulation apps for iOS (it's a good website for non-jb tho). Forget all about fake articles. This emulator runs iOS 10.1 Note: It's not possible to install IPA Jailbreak is not possible App Store cannot be added because emulator is based on Xcode Official website:  http://grbbs.5fun.com/portal.php System Requirements: Operating system:  Windows7 (64bit)/Windows10 (64bit) CPU:  Multi-core CPU supporting VT-X or AMD-V virtualization technology Graphics card:  Support OpenGL 2.0 or above RAM:  8GB or more Storag

Heilei iOS emulator can install IPA but only available for developers (HeileiOSX/HLSimulator)

Image
Installing IPA on an iOS emulator was technically possible but decided to make it only available for game developers https://www.heilei.com/news_content-79.html -------------------------------------------------------------------------------- Heiley Apple Development Edition released 2019-08-30 15:11:07 Dear users of Heilei, unknowingly, Heilei has been out for half a year. In the past six months, our development team has been working hard to optimize the client experience, but due to lack of development energy and manpower, we only updated To 100 popular games and applications, and the reality is that several new games will be launched every day in the country, and a large number of users require new games to be updated every day. We do want to meet everyone's needs, but at present we are Work is still on the client's experience optimization and performance improvement, so the energy for updating and adapting the game is slightly insufficient. After caref

[VIP] HeileiOSX/HLSimulator - The real iOS emulator (Chinese)

Image
Disclaimer: None of the software, the author, nor the forum owner is affiliated with, or sponsored or authorized by, Apple Inc. or its affiliates.   Heilei/HLSimulator and Nut Simulator/AppleSeed are the only real emulators for Windows with limitation so far. Do not trust some various money hungry fake websites who claims there are thousands of best iOS Emulators to run iOS apps on PC, whatever. Forget all about fake websites.   Note: This emulator runs iOS 9.2, ARM64. Based on Xcode simulator but this can run games in hardware acceleration It's possible to install IPA but only available for developers, see more about it  黑雷苹果开发版发布 - 黑雷苹果桌面版 -iOS 模拟器 - 手机 iOS 模拟器 - 杭州几维逻辑科技有限公司 Jailbreak is not possible App Store cannot be added because emulator is based on Xcode AMD not supported. Stay tuned Sadly, new version is now VIP ONLY. Maybe you can use older version that doesn't require VIP Official website:  iOS 手游模拟器 - 苹果模拟器 -iOS 模拟器 - 杭州几维逻辑科技有限公司 Sys

[Source Code] Get Unity Version C#

As requested. This code read unity asset binary and get strings of unity version C#: using System; using System.IO; using System.Text; C#: string UnityVersion ( string file) {     try     {         BinaryReader br = new BinaryReader (File. OpenRead (file));         string hex = null ;         for ( int i = 0x14 ; i <= 0x1f ; i++)         {             br.BaseStream.Position = i;             hex += br. ReadByte (). ToString ( "X2" );         }         br. Close ();         var bytes = new byte [hex.Length / 2 ];         for ( var i = 0 ; i < bytes.Length; i++)         {             bytes[i] = Convert. ToByte (hex. Substring (i * 2 , 2 ), 16 );         }         string str = Encoding.ASCII. GetString (bytes);         var strs = str. Split ( '.' );        // Logs("Got unity version");         return strs[ 0 ] + "." + strs[ 1 ];     }     catch ( Exception ex)    

Wayback Machine did saved whole Youtube video

Image
While I was watching random Youtube videos, I found a link to video that went private. I looked up on Wayback Machine to see how many views it got. Surprisingly it plays the video Now I know that I can watch private or deleted videos if the page was already saved before You can try it out:  https://web.archive.org/web/20180310042130/https://www.youtube.com/watch?v=YYgmdhsrPu4 I tried saving random video, it gets stuck on loading sadly.

Bluestacks team fixed sdcard issue on Bluestacks 4

Image
I had contacted Bluestacks regarding sdcard issue that you couldn't access it. They fixed it. However Windows folder is not fully fixed yet, but at least it does not appear as a file lol. To access the Windows folder, navigate to (root)/nmt/windows. You can see your files there Update Bluestacks 4 to latest version to have this issue fixed  https://www.bluestacks.com/

Android Hacker's Handbook (PDF)

Just found it on the internet :D https://repo.zenk-security.com/Magazine%20E-book/Android%20Hacker's%20Handbook.pdf

How to turn a split APK into a normal non-split APK

Hey guys, recently many modders contacting me about how to mod a split APK. We have already many tutorials about how to download or extract the split APKs, mod a split APK as it is and how to use a split APK installer to make the mod apply to the device. Here some examples of the mentioned tutorials: - How to mod split APKs (App bundles) - How to backup/export split APK (App bundles) (NO root & root) - How to install/sideload split APKs/zipped .APKS file (NO root) But there is another way to return the split APK into a normal APK again. Basically, there are  2 types of split APKs . One type does have  2 split APKs  ( base APK  +  config. architecture APK), the other type does have  4 split APKs in total . Let's start first with the easy one, the  2 split  APK 1. Take the  base APK  and decompile it. 2. Take the  lib folder  of the  config.arch APK  and add it to the decompiled  base APK . 3. Now open the  AndroidManifest.xml  in the decompiled  base APK  an

LUA & LUAC Decryption and Encryption tool to mod Cocos2dlua games

Image
Disclaimer: This is for educational purposes only, this is not for all games. Please do not message me for help This tools will help you to modded games that has libcocos2dlua. but you dont need to modded libcocos2dlua.so, cause you just need to modded file .lua or .luac file only and you can find the file in  Name.apk\assets\src  (All .lua or .luac file in there). but in some games maybe their  Signature  or the  KEY  is encrypted in .so file, so you need to  Analyz\Decrypt\Bypass\Crack  their Encryption to get the  Signature  or the  KEY  to decrypt .lua or .luac file. And for people who know about lua programming maybe will easy to modded cocos2dlua games!! Requirements: - IDA Pro - Notepad++ - My Tools - Example Games:  Manga Allstar - Apps on Google Play Tutorial: - First, open 1 .lua or .luac file with notepad to Check the Signature   - Open libcocos2dlua.so with IDA Pro and Search String with keyword "main.lua or that Signature that you found in the file

BlueStacks 4 - 64-Bit Android Version

Image
You are right, Bluestacks officially released a 64-bit version of BlueStacks 4 which allows for running 64-bit only games like Dead by Daylight and Pokemon Masters but unfortunately OpenGLES version is 3.0 and games Dead by Daylight and Pokemon Masters are currently unsupported Download: https://www.bluestacks.com/download.html If the installer detecting your system as 32-bit, choose from the other BlueStacks Versions and select: Operating System: Windows 64 Bit Android Architecture: Android 64 Bit You should see this shortcut called BlueStacks (64-bit)after installation

Matlog Libre v1.3.0 APK (Commit 4857ea1) | Stuck in loading fixed

Image
I compiled Matlog on my own and it finally solved loading stuck issues. Github:  plusCubed/matlog Name: Matlog Libre Version:  v1.3.0 Needs Root:  Yes Internet required:   No Overview: MatLog is a free and open-source material-style log reader for Android based on CatLog. It shows a scrolling (tailed) view of the Android "logcat" system log, hence the goofy name. It also allows you to record logs in real time, send logs via email, and filter using a variety of criteria. FAQs: Taken from CatLog's FAQ: Where are the logs saved? On the SD card, under /sdcard/catlog/saved_logs/. I can't see any logs! This problem typically shows up on custom ROMs. First off, try an alternative logging app, to verify that the problem is with your ROM and not MatLog. Next, see if your ROM offers system-wide settings to disable logging. Be sure to reboot after you change anything. If that still doesn't work, you can contact the creator of your ROM to file a b