I assumed it was curl, because yesterday it was requesting a wrong url when I checked the thread, and today it's not "finding the url". But, since your answer was so short. Have fun.
Code:/* find address left in ram */ for(str = (unsigned char*)0x1A000000; str < (unsigned char*)0x20000000; str++) { /* Search for /payload which indicates the current address */ if(*(unsigned int*)str == 0x2F706179 && *(unsigned int*)(str+4) == 0x6C6F6164) { leaddr = (char*)str; while(*leaddr) leaddr--; leaddr++; /* If string starts with http its likely to be correct */ if(*(unsigned int*)leaddr == 0x68747470) break; leaddr = (char*)0; } } if(leaddr == (char*)0) OSFatal("URL not found");
The loop can't find the word /payload in the memory.
Maybe it's a good idea to find a other solution how we can search in the memory for this word. /payload = hex(2f7061796c6f6164) = 0x2F706179 and 0x6C6F6164
if(*(unsigned int*)leaddr == 0x68747470)
break;
if(*(unsigned int*)leaddr == 0x68747470)
str=(unsigned char*)0x20000000; // We go out when it was found.
Code:/* find address left in ram */ for(str = (unsigned char*)0x1A000000; str < (unsigned char*)0x20000000; str++) { /* Search for /payload which indicates the current address */ if(*(unsigned int*)str == 0x2F706179 && *(unsigned int*)(str+4) == 0x6C6F6164) { leaddr = (char*)str; while(*leaddr) leaddr--; leaddr++; /* If string starts with http its likely to be correct */ if(*(unsigned int*)leaddr == 0x68747470) break; leaddr = (char*)0; } } if(leaddr == (char*)0) OSFatal("URL not found");
The loop can't find the word /payload in the memory.
Maybe it's a good idea to find a other solution how we can search in the memory for this word. /payload = hex(2f7061796c6f6164) = 0x2F706179 and 0x6C6F6164
That is exactly how I feel at the moment, tried helping. Oh wellI assumed it was curl, because yesterday it was requesting a wrong url when I checked the thread, and today it's not "finding the url". But, since your answer was so short. Have fun.
Not until we get a kexploit, we are likely to get the iosu exploit before we get the kernel for the webkit.I guess there's not much we can do about 5.5.0 then...
Well now that you say it, yeah you're totally right on that point. That'll most likely happenNot until we get a kexploit, we are likely to get the iosu exploit before we get the kernel for the webkit.
? You mean like strcmp, strlen, memset? You can do this. Elaborate if I'm misunderstanding your question.Does the System supports string functions? (i guess not)
The Exploit Isn't Stable Yet™Well now that you say it, yeah you're totally right on that point. That'll most likely happen
