From 247cc24b139cbfb1581e7c8d6f8edb425f8b7b58 Mon Sep 17 00:00:00 2001 From: jc Date: Mon, 23 Jun 2025 04:44:40 +0000 Subject: [PATCH] slight change made --- scrap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scrap.py b/scrap.py index 01b538e..cd7cd51 100644 --- a/scrap.py +++ b/scrap.py @@ -172,10 +172,10 @@ write_wp("enum.sh", " ".join(wp), lv) write_releases("enum.sh", " ".join(rel_plugins), "plugins") # Update vulns_plugins=() -write_vulns("enum.sh", " ".join(out_plugins), "plugins") +write_vulns("enum.sh", " ".join(out_plugins).replace("`", "'"), "plugins") # Update releases_themes=() write_releases("enum.sh", " ".join(rel_themes), "themes") # Update vulns_themes=() -write_vulns("enum.sh", " ".join(out_themes), "themes") +write_vulns("enum.sh", " ".join(out_themes).replace("`", "'"), "themes")