Fix broken GitHub downloads URL in update message (#6001)

The /downloads endpoint was removed by GitHub years ago and now returns 404. Updated to point to /releases which has the actual download links.
This commit is contained in:
Farhan Ansari
2026-01-05 00:35:13 +05:30
committed by GitHub
parent 737f2279e2
commit ec123bafb1

View File

@@ -163,7 +163,7 @@ def update():
infoMsg += "to use a GitHub for Windows client for updating "
infoMsg += "purposes (https://desktop.github.com/) or just "
infoMsg += "download the latest snapshot from "
infoMsg += "https://github.com/sqlmapproject/sqlmap/downloads"
infoMsg += "https://github.com/sqlmapproject/sqlmap/releases"
else:
infoMsg = "for Linux platform it's recommended "
infoMsg += "to install a standard 'git' package (e.g.: 'apt install git')"