So Your SPRX will not work on CEX Because in your Write Process you are using a syscall (905) which only works on DEX
So we have 2 Ways of Changing so your sprx will work on to CEX
So we have 2 Ways of Changing so your sprx will work on to CEX
- 1) GoPros Way - Credits to him
void *Memcpy(void *dst0, const void *src0, size_t len0)
{
char *dst = (char *)dst0;
char *src = (char *)src0;
void *save = dst0;
while (len0--)
*dst++ = *src++;
return save;
}
int write_process(void* destination, const void* source, size_t size)
{
Memcpy(destination,source,size);
}
- 2) Using Syscall 201 (used on CEX)
int32_t write_process(uint64_t ea, const void * data, uint32_t size)
{
system_call_4(201, (uint64_t)sys_process_getpid(), ea, size, (uint64_t)data);
return_to_user_prog(int32_t);
}
This account is currently banned
Ban reason: multi | IP: 86.20.193.29 | Email: N/A
Ban reason: multi | IP: 86.20.193.29 | Email: N/A