From 0dfded4fedb53929f0da90d7dda9dc0dc1793485 Mon Sep 17 00:00:00 2001 From: Ronald Cantillo <42101257+Rooyca@users.noreply.github.com> Date: Fri, 7 Nov 2025 04:23:58 +0000 Subject: [PATCH] Change shebang to use env for bash I also fixed an error with the backtick character --- StealthSQL.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/StealthSQL.sh b/StealthSQL.sh index 7507743..6075706 100644 --- a/StealthSQL.sh +++ b/StealthSQL.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash print_banner() { @@ -71,7 +71,7 @@ get_query_output() { if [ "$is_count" == true ]; then dictionary="0123456789" else - dictionary="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~" + dictionary="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&'()*+,-./:;<=>?@[\\]^_\`{|}~" fi while [ "$flag" = true ]; do