diff --git a/scripts/http-backup-finder.nse b/scripts/http-backup-finder.nse index af3da963c..6046d1432 100644 --- a/scripts/http-backup-finder.nse +++ b/scripts/http-backup-finder.nse @@ -56,6 +56,7 @@ local function backupNames(filename) table.insert(backup_names, "Copy of {basename}.{suffix}") -- windows copy table.insert(backup_names, "Copy (2) of {basename}.{suffix}") -- windows second copy table.insert(backup_names, "{basename}.{suffix}.1") -- generic backup + table.insert(backup_names, "{basename}.{suffix}.~1~") -- bzr --revert residue end @@ -133,4 +134,4 @@ action = function(host, port) backups.name = crawler:getLimitations() return stdnse.format_output(true, backups) end -end \ No newline at end of file +end