Dirbuster fails to access files when non standard port used
Status: Beta
Brought to you by:
sitting-duck
If you try to brute force a web server listening on a non standard port then dirbuster fails to access any files it finds.
It looks like the bug is in the HTMLparse class on line 215.
I've changed the URL constructor to include the port, and it now works fine:
//create work unit, so item can be added to the queue
WorkUnit workUnit = new WorkUnit(
new URL(work.getWork().getProtocol(), work.getWork().getHost(), work.getWork().getPort(), founditem),
founditem.endsWith("/"), method, baseCase, null);
Psiinon