Python Forum

Full Version: Trouble in running tool
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
kindly give me a solution please
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!
aah how it is possible .

this tool here what it say man

http://rgaucher.info/beta/grabber/
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.
(Sep-22-2017, 03:09 PM)rjahmed Wrote: [ -> ]this tool here what it say man
It's the same tool that i link to,so the warning not to use is the same.
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
(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 python
It 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.
so you mean that tool name "GRABBER" work with Beautifulsoup older than 2012(version 3)?
I don't know.  Does it work after you fix the error?
(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 BeautifulSoup
Then try to run it at your own risk.
Pages: 1 2 3