We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
We're getting the undefined method cells' for #Array:0x007f8ba99466f0` error in WPScan with terminal-table 1.5.2.
undefined method
Full stack trace:
[!] undefined method `cells' for #<Array:0x007f902bd9c0e8> [!] Trace: [!] /Users/ryan/Tools/wpscan/lib/common/hacks.rb:69:in `render' /Users/ryan/Tools/wpscan/lib/common/collections/wp_users/output.rb:25:in `output' ./wpscan.rb:364:in `main' ./wpscan.rb:443:in `<main>'
To reproduce: /wpscan.rb -u www.somewordpresssite.com -w password-list.txt
/wpscan.rb -u www.somewordpresssite.com -w password-list.txt
Being tracked here by our users - wpscanteam/wpscan#841
The text was updated successfully, but these errors were encountered:
Line 69 of /Users/ryan/Tools/wpscan/lib/common/hacks.rb is unless @headings.cells.empty?
/Users/ryan/Tools/wpscan/lib/common/hacks.rb
unless @headings.cells.empty?
Sorry, something went wrong.
This is not a bug in the the gem, but as the code has been updated some days ago:
to
@headings.each do |row| unless row.cells.empty?
The monkey patch should also have been updated on our side (I should have noticed that when rebasing the #32)
I think we will keep the v1.4.5 until the #32 is merged :)
Yeah, the problem is in your monkey patch, not our code. #32 is merged, hopefully you can remove your monkey patch completely.
No branches or pull requests
Hi,
We're getting the
undefined method
cells' for #Array:0x007f8ba99466f0` error in WPScan with terminal-table 1.5.2.Full stack trace:
To reproduce:
/wpscan.rb -u www.somewordpresssite.com -w password-list.txt
Being tracked here by our users - wpscanteam/wpscan#841
The text was updated successfully, but these errors were encountered: