Skip to content

Commit 324db1f

Browse files
committed
fix: pass --disable-coloring to sqlmap to remove ANSI escape codes from output
1 parent cfd4b90 commit 324db1f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ export default function App() {
608608
}
609609

610610
function buildArgs(config: SqlmapConfig): string[] {
611-
const args: string[] = [];
611+
const args: string[] = ["--disable-coloring"];
612612
if (config.targetUrl) args.push("-u", config.targetUrl);
613613
if (config.data) args.push("--data", config.data);
614614
if (config.cookie) args.push("--cookie", config.cookie);

0 commit comments

Comments
 (0)