From 4f7566f8a23629862a2cf5b6fe7a54ce9381f83d Mon Sep 17 00:00:00 2001 From: Jakob Lehner Date: Wed, 1 Apr 2026 13:02:23 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20correct=20GitHub=20username=20in=20READM?= =?UTF-8?q?E=20URLs=20(networkchuck=20=E2=86=92=20theNetworkChuck)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The raw.githubusercontent.com and github.com URLs in the README used 'networkchuck' instead of 'theNetworkChuck', causing 404 errors for check.sh, check.ps1, and the git clone command. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d6f552b..ebed2c9 100644 --- a/README.md +++ b/README.md @@ -25,17 +25,17 @@ npm list -g axios **Mac/Linux:** ```bash -curl -sL https://raw.githubusercontent.com/networkchuck/axios-attack-guide/main/check.sh | bash +curl -sL https://raw.githubusercontent.com/theNetworkChuck/axios-attack-guide/main/check.sh | bash ``` **Windows (PowerShell):** ```powershell -irm https://raw.githubusercontent.com/networkchuck/axios-attack-guide/main/check.ps1 | iex +irm https://raw.githubusercontent.com/theNetworkChuck/axios-attack-guide/main/check.ps1 | iex ``` Or clone and run locally: ```bash -git clone https://github.com/networkchuck/axios-attack-guide.git +git clone https://github.com/theNetworkChuck/axios-attack-guide.git cd axios-attack-guide ./check.sh # Mac/Linux .\check.ps1 # Windows PowerShell