its me again with the ptrace error. I fixed ptrace by adding a kernel ( ubuntu 10.10 had security update with ptrace ). Anyways I have another question, why it crashes when reading memory sometimes ?? I can't read some addresses, but other works fine. Here's code:

bool readMemory(unsigned addr, char *data, unsigned size){
    if(ptrace(PTRACE_ATTACH, 2534, 0, 0)!=0)
        return false;

    wait(0);

    for(unsigned i=0;i<size;i+=sizeof(int)){
        int buff;
        buff=ptrace(PTRACE_PEEKDATA, 2534, addr+i, 0);
        memcpy(data+i, &buff, sizeof(int));
    }

    if(ptrace(PTRACE_DETACH, 2534, 0, 0)!=0)
        return false;

    return true;
    }


    int main(int argc, char **argv)
    {
    unsigned hexNumber = 0x8349999;

    char data[200];
    for(unsigned i = 0; i < 1000; i++) {
        readMemory(hexNumber+i, data, 1);
        if(data[0] == 'l') {
            std::cout << std::hex << hexNumber+i << std::endl;
        }
    }
    return 0;
}

So question is: why the code crash/freeze Linux Mint 12 system ?? Thanks.

link|improve this question
What process were you referring by 2534?? – bi0s.kidd0 Mar 24 at 6:34
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.