From 3ab33502215f13e45e13e7ea74aca74ea7f24799 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 18 Jun 2024 21:12:30 +0400 Subject: [PATCH] Update wordpress-plugins-update.py --- .github/scripts/wordpress-plugins-update.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/scripts/wordpress-plugins-update.py b/.github/scripts/wordpress-plugins-update.py index 42d39bf12f..4d57c1873b 100644 --- a/.github/scripts/wordpress-plugins-update.py +++ b/.github/scripts/wordpress-plugins-update.py @@ -9,7 +9,7 @@ compares the detect version with the payload version. The generated template also includes the tags top-100 and top-200 allowing filtering. e.g. -nuclei -t technologies/wordpress/plugins -tags top-100 -u https://www.example.com +nuclei -t http/technologies/wordpress/plugins -tags top-100 -u https://www.example.com ''' __author__ = "ricardomaia" @@ -43,8 +43,7 @@ for page_number in range(1, 11): # Parse HTML soup = BeautifulSoup(html, 'html.parser') - - results = soup.find(id="main") + results = soup.find(class_="plugin-cards") articles = results.find_all("div", class_="plugin-card") # Setting the top tag @@ -123,7 +122,7 @@ info: wpscan: https://wpscan.com/plugin/{name} tags: tech,wordpress,wp-plugin,{top_tag} -requests: +http: - method: GET path: @@ -164,7 +163,7 @@ requests: work_dir = os.getcwd() print(f"Current working directory: {work_dir}") helper_dir = f"{work_dir}/helpers/wordpress/plugins" - template_dir = f"{work_dir}/technologies/wordpress/plugins" + template_dir = f"{work_dir}/http/technologies/wordpress/plugins" if not os.path.exists(helper_dir): os.makedirs(helper_dir) @@ -177,7 +176,7 @@ requests: version_file.write(version) version_file.close() - template_path = f"technologies/wordpress/plugins/{name}.yaml" + template_path = f"http/technologies/wordpress/plugins/{name}.yaml" template_file = open(template_path, "w") # Dev environment template_file.write(template) template_file.close()