Skip to content

Commit dda6c53

Browse files
committed
Fix table alignment
1 parent ed7dc18 commit dda6c53

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

documentation/modules/auxiliary/scanner/http/wp_registrationmagic_sqli.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ resource (registrationmagic.rb)> run
6767
[*] {SQLi} Executing (select group_concat(GPc) from (select cast(concat_ws(';',ifnull(user_login,''),ifnull(user_pass,'')) as binary) GPc from wp_users limit 3) PfXJX)
6868
[*] {SQLi} Encoded to (select group_concat(GPc) from (select cast(concat_ws(0x3b,ifnull(user_login,repeat(0xc,0)),ifnull(user_pass,repeat(0x24,0))) as binary) GPc from wp_users limit 3) PfXJX)
6969
[*] {SQLi} Time-based injection: expecting output of length 124
70-
[+] wp_users
70+
[+] Dumped table contents:
71+
wp_users
7172
========
7273
7374
user_login user_pass

modules/auxiliary/scanner/http/wp_registrationmagic_sqli.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ def run_host(ip)
114114
})
115115
table << user
116116
end
117-
print_good(table.to_s)
117+
print_good('Dumped table contents:')
118+
print_line(table.to_s)
118119
end
119120
end

0 commit comments

Comments
 (0)