From ab5a3ea91d2a8d2d7e10cf477343bc8d64a7a962 Mon Sep 17 00:00:00 2001 From: inflictx <109818286+inflictx@users.noreply.github.com> Date: Wed, 24 Jun 2026 14:15:42 +0300 Subject: [PATCH 1/2] Add ARS3NAL - offline pentest & bug-bounty arsenal --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 74ebee7..ad4e99b 100644 --- a/README.md +++ b/README.md @@ -598,6 +598,7 @@ ## Uncategorized +- [ARS3NAL](https://github.com/inflictx/Arsenal) - Offline-first, searchable arsenal for pentest & bug bounty: ~1500 payloads, a click-to-build command generator, GTFOBins, wordlists, an embedded CyberChef, reverse shells and 70 checklists. Self-hosted web app with a live static demo. - [RF Swift](https://github.com/PentHertz/RF-Swift) - A powerful multi-platform RF toolbox that deploys specialized radio tools in seconds on Linux, Windows, and macOS—supporting x86_64, ARM64 (Raspberry Pi, Apple Silicon), and RISC-V architectures without disrupting your primary OS. - [bountyplz](https://github.com/fransr/bountyplz) - Automated security reporting from markdown templates (HackerOne and Bugcrowd are currently the platforms supported) - [PayloadsAllTheThings](https://github.com/swisskyrepo/PayloadsAllTheThings) - A list of useful payloads and bypass for Web Application Security and Pentest/CTF From 2aef7c1764918cb3f4822230c32f498065316e33 Mon Sep 17 00:00:00 2001 From: Kamil Date: Tue, 7 Jul 2026 14:20:06 +0200 Subject: [PATCH 2/2] ci: fix fork PR README diff base --- .github/workflows/stargazers.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/stargazers.yml b/.github/workflows/stargazers.yml index d1b0acc..29c40c1 100644 --- a/.github/workflows/stargazers.yml +++ b/.github/workflows/stargazers.yml @@ -24,14 +24,10 @@ jobs: fetch-depth: 0 persist-credentials: false - - name: Fetch base branch - run: | - git fetch origin main --depth=1 - - name: Extract newly added URLs and GitHub repo links run: | - # Show diff between base branch and PR HEAD, only for README - git diff --unified=0 origin/main...HEAD -- README.md > diff.txt + # On pull_request, HEAD is GitHub's synthetic merge commit and HEAD^1 is the base. + git diff --unified=0 HEAD^1 HEAD -- README.md > diff.txt # Extract ALL added https:// URLs from added (+) lines sed -n 's/^+.*\(https:\/\/[^ )]*\).*/\1/p' diff.txt \