i want to import ram variables of a specific process into javascript.
it's quite simple to get the values using C:
int main(int argc, char *argv[]){
char *ptr = (char *)0x12345678;
printf("%c\n", *ptr);
return 0;
}
but how do i get these values into a .js file? is there any workaround, any tool to achieve this?