Giter Site home page Giter Site logo

Comments (3)

spinpx avatar spinpx commented on May 10, 2024

Hi @hexcoder- . I can't reproduce this issue in binutils and file program. Can your provide the program you tested?
The logs shows that the fuzzer can not find any new branch. Can you make sure:

  • the tested program is instrumented.
  • Can you use RUST_LOC=info,(angora/angora_fuzzer will use it) and see that the log " INFO angora::depot::sync > sync xx file from seeds." to make sure xx is not 0. If it is 0, then please check output/queue.

I tested in file by Re-run

from angora.

hexcoder- avatar hexcoder- commented on May 10, 2024

I updated the docker image, and tried again. First with -input i, then after 5 seconds I terminated it. Angora showed 15 paths found, but output/queue is empty then! I don't understand why.

I repeated the runs and let it run a bit longer with -i i. Then I saw that angora created alternative output directories o.1, o.2, ... and also in this format o.2019-01-10T07:18:00.792939624+00:00, which contained queue entries, but these were not found when -o o was given when restarting (leading to the error message).

The program translit is from schilytools (https://sourceforge.net/projects/schilytools/files/schily-2018-12-21.tar.bz2/download) and is like tr. I compiled once with SUBARCH=fast_ and once with SUBARCH=_taint in order to get the executables separated in different subdirectories.

from angora.

spinpx avatar spinpx commented on May 10, 2024

o.1 is created because o directory is existed. I removed the code, and give a panic error with warning directly now. 6f125af
The logic of restart is rename the output directory o to o.2019-01-10T07:18:00.792939624+00:00 (extend with timestamp). Then use its queue directory as seed directory.

let seeds_dir = if restart {
let orig_out_dir = out_dir.with_extension(Local::now().to_rfc3339());
fs::rename(&out_dir, orig_out_dir.clone()).unwrap();
fs::create_dir(&out_dir).unwrap();
PathBuf::from(orig_out_dir).join(INPUTS_DIR)
} else {
PathBuf::from(in_dir)
};

I still can't find the reason now. I hope these can help you.

from angora.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.