Skip to content

Commit ec123ba

Browse files
authored
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.
1 parent 737f227 commit ec123ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/core/update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def update():
163163
infoMsg += "to use a GitHub for Windows client for updating "
164164
infoMsg += "purposes (https://desktop.github.com/) or just "
165165
infoMsg += "download the latest snapshot from "
166-
infoMsg += "https://github.com/sqlmapproject/sqlmap/downloads"
166+
infoMsg += "https://github.com/sqlmapproject/sqlmap/releases"
167167
else:
168168
infoMsg = "for Linux platform it's recommended "
169169
infoMsg += "to install a standard 'git' package (e.g.: 'apt install git')"

0 commit comments

Comments
 (0)