Menu

LD_PRELOAD should be absolute

girardc
2011-08-29
2013-05-09
  • girardc

    girardc - 2011-08-29

    With LD_PRELOAD as it is defined now, the following error is returned:

    ERROR: ld.so: object 'libproxychains.so' from LD_PRELOAD cannot be preloaded: ignored.

    The following patch fix it: http://pastebin.com/nkMKKUKw

     
  • Anonymous

    Anonymous - 2012-08-27

    Thanks, this is working.
    For a Linux beginner it was not very easy to understand: /usr/bin/proxychains must be opend as superuser and then changet to make it look like this:

    #!/bin/sh
    echo "ProxyChains-3.1 (http://proxychains.sf.net)"
    if  ; then
    echo " usage:"
            echo "          proxychains <prog> "
            exit
    fi
    LD_PRELOAD=/usr/lib/libproxychains.so
    exec "$@"

    I don't have this error anymore, nevertheless I'm not anonymous when I open Dillo, but this is surely another problem.

     
  • rofl0r

    rofl0r - 2012-09-02

    darthseverus, the official proxychains repo is now at https://github.com/rofl0r/proxychains
    compile that, ( ./configure ; make ;  sudo make install)
    then ./proxychains4 your_app)
    if it doesnt work (unlikely), you can open an issue in the tracker there.

     

Log in to post a comment.