vfsfitvnm
vfsfitvnm
Hi, thanks for this project. This issue is somewhat similar to #9. Also, I know there's a rewrite in progress, but I wanted to report it anyway. So, I noticed...
For obvious reasons, the `stage2*.bin` file will be created as root when launching the script with `sudo`. In this case, the shellcode (that will run as non privileged user) won't...
Version `0.4.0` introduced the synchronized lyrics, which are obtained from kugou, a chinese music streaming service. The quality of the lyrics is good - so I was questioning myself if...
Currently, the playback has 3 loop options: 1. **Loop none**: when the queue ends, the playback ends as well 2. **Loop all**: when the queue ends, the playback re-starts from...
Will do once google releases the android 13 aosp system image for emulators - [ ] #262 - [ ] #265 - [x] #266
Hi, shouldn't [this](https://github.com/mcaubrey/clay_containers/blob/master/lib/widgets/clay_container.dart#L33) method be replaceable by the following simpler and more efficient code? ```dart extension on Color { Color withIncrement(int amount) => Color.fromRGBO( (this.red + amount).clamp(0, 255), (this.green +...
### Discussed in https://github.com/vfsfitvnm/frida-il2cpp-bridge/discussions/420 Originally posted by **keinPlan** October 28, 2023 got a problem with a function (UnityVersion 2021.3.22f1). if i'm calling the function the parameter seems to be passed...
Hi all! [This](https://github.com/vfsfitvnm/frida-il2cpp-bridge/discussions/259#discussioncomment-5252963) discussion made me realize we need to massively improve the documentation and usability of this project. - Newcomers often find difficult to get started - and I...
Hi :smile_cat: I noticed I was getting `NullPointerException`s when using `SHA256KeyHasher`. I could narrow it down to `InMemoryKache` - the following test fails: ```kt @Test fun concurrency() = runTest {...