Skip to content
New issue

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

[Binsearch] Unable to find main table in binsearch page. This happens sometimes ;-) (HAPPENS ALWAYS) #920

Closed
colemar opened this issue Mar 4, 2024 · 3 comments
Labels

Comments

@colemar
Copy link

colemar commented Mar 4, 2024

Binsearch: An unexpected error occurred while communicating with the indexer: Unable to find main table in binsearch page. This happens sometimes ;-)
Version: 5.3.7

At this time it happens always.
binsearch.info seems to be OK.

@colemar colemar added the bug label Mar 4, 2024
@Chathula
Copy link

Chathula commented Jun 5, 2024

Same here!

@themana
Copy link

themana commented Jun 5, 2024

@theotherp
I believe the issue relates to how hydra2 is set to parse the HTML response from binsearch.info.

The code below is looking for a table called r2 but binsearch.info changed its HTML and no longer name the results table as such it's failing to find the results.

Binsearch.java
Line #116
Elements mainTables = doc.select("table#r2");
Possible fix - can't test as I run it in a docker container
Elements mainTables = doc.select("table.result-table");

@theotherp
Copy link
Owner

Thanks for the analysis, @themana. I'll look into it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants