As described in issue #126, when a big frida script with a lot of code is attached/spawned to/with an application, rms throws an exception PayloadTooLargeError: request entity too large.
This is due to the HTTP request body being too large because of the large amount of code. Changing the length of the POST body content in this case (to 50mb - bit overkill but doesn't hurt to have it this large) fixes the issue.
As described in issue #126, when a big frida script with a lot of code is attached/spawned to/with an application, rms throws an exception
PayloadTooLargeError: request entity too large
.This is due to the HTTP request body being too large because of the large amount of code. Changing the length of the POST body content in this case (to
50mb
- bit overkill but doesn't hurt to have it this large) fixes the issue.