Help! Track Network Traffic

roflmao1337

Platinian
Original poster
Dec 26, 2018
14
2
3
37
Germany
Hello,

I sucessfully modified some functions in my apps Il2ccp.so file. However, those changes like getter methods are only visual, as they get overwritten by the server.

For example there is a chest where I modified to always get the best weapon, but when I open it I only get a random one.

I thought to debug / understand it, it would be a good idea to get up a mitm proxy and track the server calls.
Unfortunately I only see the server calls that the Java code of the app is doing. (Like login, payment etc.)
But while running I dont see any communcation.

The Android Manifest has alrdy debuggable = true and the Network security xml is like follows:
<network-security-config>
<debug-overrides>
<trust-anchors>
<certificates src="system" />
<certificates src="user" />
</trust-anchors>
</debug-overrides>
</network-security-config>

why do I still not see any communication that is triggered from the il2cpp.so ?