From 0edb82c24f6adf4a07ef681c2470a73588daef94 Mon Sep 17 00:00:00 2001 From: peace-maker Date: Mon, 10 Jul 2023 09:30:24 +0200 Subject: [PATCH] Only catch Exceptions instead of everything Co-authored-by: Arusekk --- pwnlib/libcdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnlib/libcdb.py b/pwnlib/libcdb.py index 24a5f33de..899cda00d 100644 --- a/pwnlib/libcdb.py +++ b/pwnlib/libcdb.py @@ -444,7 +444,7 @@ def download_libraries(libc_path, unstrip=True): try: if unstrip: unstrip_libc(libc_path) - except: + except Exception: pass return cache_dir