Skip to content

Commit a636971

Browse files
committed
Change error message
1 parent 3f3e681 commit a636971

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

modules/auxiliary/scanner/http/clansphere_traversal.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ def run_host(ip)
6363
})
6464

6565
if res and res.body =~ /^Fatal error\:/
66-
print_error("Either '#{datastore['FILE']}' does not exist, or no permission.")
66+
print_error("Unable to read '#{datastore['FILE']}', possibily because:")
67+
print_error("\t1. File does not exist.")
68+
print_error("\t2. No permission.")
69+
print_error("\t3. #{ip} isn't vulnerable to null byte poisoning.")
6770

6871
elsif res and res.code == 200
6972
pattern_end = " UTC +1 - Load:"

0 commit comments

Comments
 (0)