![]() |
Trouble in running tool - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html) +--- Thread: Trouble in running tool (/thread-5129.html) |
RE: Trouble in running tool - rjahmed - Sep-22-2017 kindly give me a solution please RE: Trouble in running tool - snippsat - Sep-22-2017 Grabber.py is an old tool that should not be used. This is what's it say on GitHub Quote:Do not use this tool, it's an artifact from the past. Use Burp or w3af! RE: Trouble in running tool - rjahmed - Sep-22-2017 aah how it is possible . this tool here what it say man http://rgaucher.info/beta/grabber/ RE: Trouble in running tool - nilamo - Sep-22-2017 It's possible if you do either... a) use a different tool, or b) fix grabber so it isn't broken anymore. Both of those paths have been described previously in this thread. RE: Trouble in running tool - snippsat - Sep-22-2017 (Sep-22-2017, 03:09 PM)rjahmed Wrote: this tool here what it say manIt's the same tool that i link to,so the warning not to use is the same. RE: Trouble in running tool - rjahmed - Sep-22-2017 what the issue here a tool or i have not successfully installed pip and beautifulsoup ? there is nothing written on github that it does not support python https://github.com/neuroo/grabber RE: Trouble in running tool - snippsat - Sep-22-2017 (Sep-22-2017, 03:21 PM)rjahmed Wrote: what the issue here a tool or i have not successfully installed pip and beautifulsoup ?Yes the new version is installed correctly. To try to run that tool(as you should not),you need Beautifulsoup older than 2012(version 3). (Sep-22-2017, 03:21 PM)rjahmed Wrote: there is nothing written on github that it does not support pythonIt do support Python,but all tool used is old and may not work any more. Author has written two warnings [DON'T USE ME] plain ol' web apps scanner .
RE: Trouble in running tool - rjahmed - Sep-22-2017 so you mean that tool name "GRABBER" work with Beautifulsoup older than 2012(version 3)? RE: Trouble in running tool - nilamo - Sep-22-2017 I don't know. Does it work after you fix the error? RE: Trouble in running tool - snippsat - Sep-22-2017 (Sep-22-2017, 03:38 PM)rjahmed Wrote: so you mean that tool name "GRABBER" work with Beautifulsoup older than 2012(version 3)?I don't know,but i guess there will be other problems. You can change source code from: from BeautifulSoup import BeautifulSoup # To from bs4 import BeautifulSoupThen try to run it at your own risk. |