Search found 9 matches

by Galfpart
Tue Jun 07, 2005 12:19 am
Forum: PSP Development
Topic: 6 ways to crash the wipeout browser...
Replies: 54
Views: 32108

First of all it's nice to see that somebody is actually trying this! What did not work for you? Didn't the browser crash at all? edit: you need to modify the return address to jump to your code first, of course. simply sending this code and overflowing the stack doesn't help at all. stack looks simi...
by Galfpart
Sat Jun 04, 2005 11:58 pm
Forum: PSP Development
Topic: 6 ways to crash the wipeout browser...
Replies: 54
Views: 32108

sounds like a good idea. i hope someone can try it, i don't have any
hardware to test it on ;-)
by Galfpart
Thu Jun 02, 2005 6:43 pm
Forum: PSP Development
Topic: 6 ways to crash the wipeout browser...
Replies: 54
Views: 32108

http://www.phrack.org/show.php?p=56&a=15 ----| Intro Writing shellcode for the MIPS/Irix platform is not much different from writing shellcode for the x86 architecture. There are, however, a few tricks worth knowing when attempting to write clean shellcode (which does not have any NULL bytes and...
by Galfpart
Thu Jun 02, 2005 1:02 am
Forum: PSP Development
Topic: 6 ways to crash the wipeout browser...
Replies: 54
Views: 32108

a few locations of the "jr" instruction: .text:00000000 08 00 E0 03 jr $31 .text:00002068 08 00 20 00 jr $1 .text:001E072C 08 00 40 00 jr $2 .text:001024E0 08 00 80 00 jr $4 The problem is that "jr" seems to use $1, $2, $4 and $31 only. I couldn't find any more "jr" ins...
by Galfpart
Thu Jun 02, 2005 12:22 am
Forum: PSP Development
Topic: 6 ways to crash the wipeout browser...
Replies: 54
Views: 32108

ooOOHHH, you're saying hope to find a static point in the binary that contains the assembly instruction "jr $sp" or equivalent. Sorry, I didn't follow that part. *shuts his mouth* :) exactly. and if just ANY register points to our overwritten stack, chances are VERY high that you're soon ...
by Galfpart
Thu Jun 02, 2005 12:03 am
Forum: PSP Development
Topic: 6 ways to crash the wipeout browser...
Replies: 54
Views: 32108

if we could access those registers, we could be running the shellcode I'm not sure if I correctly understand you but you can access the registers if you overwrite the return address (which - according to tmbinc - one can) with the address of a code-location redirecting program flow to the content o...
by Galfpart
Wed Jun 01, 2005 9:30 pm
Forum: PSP Development
Topic: 6 ways to crash the wipeout browser...
Replies: 54
Views: 32108

Thanks! the bad news: Searching down CASE-INSENSITIVELY for binary string 08 00 a0 03... Search failed. Command "AskBinaryText" failed Gotta have a deeper look... edit: as MIPS processors have a lot of registers, there may be more than just one register pointing to the stack. maybe someone...
by Galfpart
Wed Jun 01, 2005 9:22 pm
Forum: PSP Development
Topic: 6 ways to crash the wipeout browser...
Replies: 54
Views: 32108

pixel, what'd be the opcode sequence of that instruction ?

thanks in advance
by Galfpart
Wed Jun 01, 2005 8:43 pm
Forum: PSP Development
Topic: 6 ways to crash the wipeout browser...
Replies: 54
Views: 32108

tmbinc, nice work so far. tmbinc: have you tried looking for a byte sequence in the wipeout binary which will form an opcode to copy the current stack pointer into the Program counter/ Instruction Pointer ? something like MOV PC, SP (ARM equivalent) or PUSH ESP (IA32 equivalent) RET From there you c...