about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2020-07-27 10:41:07 +0200
committerGitHub <noreply@github.com>2020-07-27 10:41:07 +0200
commit4eb06bb54b56117fc6858a1c76dc891e33a63fed (patch)
treed3d40781bf9ecd43347deaffca3e6e58fb55ecd1
parentbd5308d8395419e1217b76b96c5cfbde83e95e9d (diff)
parent024a88a6bbf2e25e5b61f061e9b98351cbc86a66 (diff)
downloadafl++-4eb06bb54b56117fc6858a1c76dc891e33a63fed.tar.gz
Merge pull request #465 from electricworry/wine-fix
Fixes AFLplusplus/AFLplusplus#464 winepath path translation for .cur_…
-rwxr-xr-xafl-wine-trace7
1 files changed, 6 insertions, 1 deletions
diff --git a/afl-wine-trace b/afl-wine-trace
index 65525a33..8853a757 100755
--- a/afl-wine-trace
+++ b/afl-wine-trace
@@ -68,7 +68,12 @@ else:
 argv = sys.argv[1:]
 for i in range(len(argv)):
     if ".cur_input" in argv[i]:
-        argv[i] = subprocess.run([os.path.join(os.path.dirname(wine_path), "winepath"), "--windows", argv[i]], universal_newlines=True, stdout=subprocess.PIPE).stdout
+        # Get the Wine translated path using the winepath tool
+        arg_translated = subprocess.run([os.path.join(os.path.dirname(wine_path), "winepath"), "--windows", argv[i]], universal_newlines=True, stdout=subprocess.PIPE).stdout
+        # Remove the spurious LF at the end of the path
+        if len(arg_translated) > 0 and arg_translated[-1] == '\n':
+            arg_translated = arg_translated[:-1]
+        argv[i] = arg_translated
         break
 
 print("[afl-wine-trace] exec:", " ".join([qemu_path, wine_path] + argv))