From d3b0a2fc7db99e2be16532355f16c160f5f4f9ef Mon Sep 17 00:00:00 2001 From: Raskolnikoff Date: Sat, 6 Sep 2025 13:45:31 +0900 Subject: [PATCH 1/2] fix: too large fonts on READEME.md --- README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b402610..4cbfddd 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,10 @@ -# > **Openfire Exploit Suite** — A full-stack security testing toolkit (recon, PoC, Burp plugin, Metasploit modules) for identifying and exploiting Openfire admin console and setup weaknesses. -# -# > **Repository description (sidebar):** -# >> Openfire Exploit Suite — recon, PoC, Burp plugin, and Metasploit modules for Openfire vulnerabilities. Open‑source and responsibly shared. -# -# > **Suggested GitHub Topics (tags):** Openfire • Exploit • Metasploit • Burp Extension • PoC • Security Tool • Responsible Disclosure • CVE-2023-32315 • Recon Tool # Openfire Exploit Suite - +#### > **Openfire Exploit Suite** — A full-stack security testing toolkit (recon, PoC, Burp plugin, Metasploit modules) for identifying and exploiting Openfire admin console and setup weaknesses. +#### > **Repository description (sidebar):** +#### >> Openfire Exploit Suite — recon, PoC, Burp plugin, and Metasploit modules for Openfire vulnerabilities. Open‑source and responsibly shared. +#### > **Suggested GitHub Topics (tags):** Openfire • Exploit • Metasploit • Burp Extension • PoC • Security Tool • Responsible Disclosure • CVE-2023-32315 • Recon Tool +### [![Burp Suite](https://img.shields.io/badge/Burp%20Suite-Pro%20Edition-orange)]() [![Metasploit](https://img.shields.io/badge/Metasploit-Framework-blue)]() [![Python](https://img.shields.io/badge/Python-3.11-green)]() From 6c26bba22d4caae099bd63ed0a92e58367257d05 Mon Sep 17 00:00:00 2001 From: Raskolnikoff Date: Sat, 6 Sep 2025 13:49:06 +0900 Subject: [PATCH 2/2] fix: issue of github workflow pages.yml --- .github/workflows/pages.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 5e0efa9..c52dd65 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -3,21 +3,31 @@ name: Deploy GitHub Pages on: push: branches: [ "main" ] + workflow_dispatch: {} permissions: contents: read pages: write id-token: write +concurrency: + group: pages + cancel-in-progress: true + jobs: deploy: runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} steps: - name: Checkout uses: actions/checkout@v4 - name: Setup Pages uses: actions/configure-pages@v4 + with: + enablement: true # create/ensure Pages site if not already configured - name: Upload site uses: actions/upload-pages-artifact@v3