Compare commits

...

6 Commits

Author SHA1 Message Date
df24c3876e 1.11 2025-10-11 18:39:28 -03:00
b29836ee79 1.11 Delay Split FIX 2025-10-11 15:59:44 -03:00
f526a21c66 1.10 ALPHA 2025-10-10 22:14:04 -03:00
9c05de766b Fix Install 2025-10-10 11:59:43 -03:00
0a22fe6b0b Fix Readme beta 2025-10-10 11:47:12 -03:00
5ed53d33b9 1.9 BETA
Suporte a payloads gigantes, com caracteres randomicos
2025-10-10 11:42:32 -03:00
4 changed files with 11 additions and 3 deletions

View File

@@ -3,6 +3,12 @@
### 📦 How to Install ### 📦 How to Install
** NEW PARAMETER FOR PAYLOAD: **
```bash
[split]x-skip: 200[crlf][crlf]
```
**Step-by-step:** **Step-by-step:**
```bash ```bash

Binary file not shown.

Binary file not shown.

View File

@@ -4,7 +4,7 @@
set -e set -e
INSTALL_DIR="$HOME/DragonX" INSTALL_DIR="$HOME/DragonX"
REPO_URL="https://git.dr2.site/penguinehis/DragonX-SSH-Proxy" REPO_URL="https://git.dr2.site/penguinehis/DragonX-SSH-Proxy.git"
echo "Installing DragonX into $INSTALL_DIR..." echo "Installing DragonX into $INSTALL_DIR..."
@@ -17,10 +17,12 @@ fi
# Fetch code # Fetch code
if [ -d "$INSTALL_DIR/.git" ]; then if [ -d "$INSTALL_DIR/.git" ]; then
echo "Existing repo detected. Pulling latest..." echo "Existing repo detected. Pulling latest..."
git -C "$INSTALL_DIR" pull --rebase --autostash || true git -C "$INSTALL_DIR" fetch origin
git -C "$INSTALL_DIR" checkout main
git -C "$INSTALL_DIR" pull --rebase --autostash origin main || true
else else
rm -rf "$INSTALL_DIR" rm -rf "$INSTALL_DIR"
git clone --depth 1 "$REPO_URL" "$INSTALL_DIR" git clone --depth 1 --branch main "$REPO_URL" "$INSTALL_DIR"
fi fi
# Ensure executables are present & executable # Ensure executables are present & executable