cryptofuzz icon indicating copy to clipboard operation
cryptofuzz copied to clipboard

Building Cryptofuzz

Open encryption00 opened this issue 1 year ago • 4 comments

I need help with the building of Cryptofuzz -- I kept getting fatal error of not having the boost/algorithm/hex.hpp. Does anyone have a more detailed guide on building the fuzzer, newbie here

encryption00 avatar Aug 04 '22 04:08 encryption00

This just means you don't have the boost library installed. To install on Red Hat linux for example, you can run dnf in boost-devel

Once you've installed boost, you shouldn't see the missing lib error anymore

marquitos0119 avatar Aug 25 '22 14:08 marquitos0119

Sorry, missed this. Yes you can install Boost using your OS' package manager or build from source by downloading a recent version from https://www.boost.org/.

guidovranken avatar Aug 25 '22 15:08 guidovranken

I downloaded the most recent version of Boost, and built it, but I still don't know how to fix the error of not having the boost/algorithm/hex.hpp. Can you provide more details?

joc7188 avatar Sep 15 '22 13:09 joc7188

Did you also install the headers? Can you try this?

    tar jxf boost_1_74_0.tar.bz2
    cd boost_1_74_0/
    CFLAGS="" CXXFLAGS="" ./bootstrap.sh
    CFLAGS="" CXXFLAGS="" ./b2 headers
    cp -R boost/ /usr/include/

guidovranken avatar Sep 15 '22 14:09 guidovranken