Giacomo Ferretti

Results 36 comments of Giacomo Ferretti

XAPK files are simply ZIP files containing the base apk and the various split apks.

`mfoc` is for Mifare Classic, not SRIX4K. There are other tools like https://github.com/giacomoferretti/nfc-srix-tools to dump your key.

The result, as the name implies, is a JWS token A.K.A. JSON Web Signature. You can check the contents of the JWS on websites like https://jwt.io/ Read more here: https://en.wikipedia.org/wiki/JSON_Web_Token

Happened to me too, but I don't remember which kernel version created that BTRFS partition... :frowning_face:

Ok, it doesn't work even when I create a new BTRFS partition. BTW, this repo is still helpful because I can retrieve some files using the inline data in the...

`metadata.db` is a [`bbolt`](https://github.com/etcd-io/bbolt) database. I didn't recover much from it, only small files. At least I could export the list of files (lost files), and with `photorec` recovered the...

I don't remember which one I used, but it's probably this: ```go package main import ( "encoding/gob" "encoding/hex" "errors" "fmt" "io" "log" "os" "path" "strings" bolt "go.etcd.io/bbolt" "github.com/giacomoferretti/bbolt-dump/internal/btrfs" "github.com/giacomoferretti/bbolt-dump/internal/btrfscue" )...

Check https://github.com/giacomoferretti/btrfscue-metadata-extract for a full source.

@kuai6 @netdoggy can you test the merged PR #2825?

You are correct, since 5.0 they made ART the default runtime (on 4.4 was experimental opt-in). You can modify the .odex file to run arbitrary code while maintaining the original...