diff options
author | van Hauser <vh@thc.org> | 2020-01-26 15:14:23 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-01-26 15:14:23 +0100 |
commit | 2d68cb399e42ae4e8a90093968652fbeac5b0060 (patch) | |
tree | 04f11b510f0a0b3f417b73b3f01fdabd8a7d343c /afl-dyninst.cpp | |
parent | 77f20d8e4d855fa9585e786ad879aeebdb3fb5d0 (diff) | |
download | afl-dyninst-2d68cb399e42ae4e8a90093968652fbeac5b0060.tar.gz |
better docu and greater dockerfile
Diffstat (limited to 'afl-dyninst.cpp')
-rw-r--r-- | afl-dyninst.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/afl-dyninst.cpp b/afl-dyninst.cpp index e5e7ff6..35e55f3 100644 --- a/afl-dyninst.cpp +++ b/afl-dyninst.cpp @@ -54,7 +54,7 @@ const char *functions[] = { "main", "_main", "_initproc", "_init", "start", "_st const char *instLibrary = "libAflDyninst.so"; static const char *OPT_STR = "fi:o:l:e:E:vs:dr:m:S:Dx"; -static const char *USAGE = "-dfvxD -i <binary> -o <binary> -l <library> -e <address> -E <address> -s <number> -S <funcname> -m <size>\n \ +static const char *USAGE = " -dfvxD -i <binary> -o <binary> -l <library> -e <address> -E <address> -s <number> -S <funcname> -m <size>\n \ -i: input binary \n \ -o: output binary\n \ -d: do not instrument the binary, only supplied libraries\n \ @@ -345,7 +345,7 @@ int main(int argc, char **argv) { char *func2patch = NULL; int loop; - cout << "afl-dyninst (c) 2017-2019 by Aleksandar Nikolic and Marc Heuse [https://github.com/vanhauser-thc/afl-dyninst] Apache 2.0 License" << endl; + cout << "afl-dyninst (c) 2017-2020 by Aleksandar Nikolic and Marc Heuse [https://github.com/vanhauser-thc/afl-dyninst] Apache 2.0 License" << endl; if (argc < 3 || strncmp(argv[1], "-h", 2) == 0 || strncmp(argv[1], "--h", 3) == 0) { cout << "Usage: " << argv[0] << USAGE; |