From 680b0296776faf9598d9a896e216a104ff7c357a Mon Sep 17 00:00:00 2001 From: Roman Hergenreder Date: Tue, 27 Feb 2024 11:59:04 +0100 Subject: [PATCH] sqli one bugfix --- sqli.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sqli.py b/sqli.py index 0e59a97..da47a3f 100644 --- a/sqli.py +++ b/sqli.py @@ -86,6 +86,7 @@ class ReflectedSQLi(SQLi, ABC): return self.reflected_sqli(query_columns, table, condition, offset)[str_column] def extract_multiple_ints(self, columns: list|str, table=None, condition=None, verbose=False): + one = False if isinstance(columns, str): columns = [columns] one = True @@ -112,6 +113,7 @@ class ReflectedSQLi(SQLi, ABC): return rows def extract_multiple_strings(self, columns: list|str, table=None, condition=None, verbose=False): + one = False if isinstance(columns, str): columns = [columns] one = True