-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
fix(tool_arsenal): incorrect regex version numbers #1086
Conversation
👋 Hi @AnonymousWP, |
Regarding this commit (feat(external_tools): add lookup command theHarvester): I finally found a way to make it work directly via the container itself (see image), but once I try this via the YAML file, it doesn't work. I tried multiple combinations, but it's still not working. It complains about that it's an invalid lookup command ( |
Remember I already work on this on one of your PR |
Yeah I know, I've seen that, but that PR is already merged, so this branch should contain your db field size fix as well. |
Have you check it ? |
I haven't checked it in the database itself, but I assume that 1. when your PR is merged and 2. I brought down the containers, re-built and then started them again, the database should contain the change. Right? |
I tried fixing https://github.com/dwisiswant0/crlfuzz, but no luck unfortunately. The issue is within the update command, but attempted several approaches. Anyway, now I look into crlfuzz, it's not working anyway, see: dwisiswant0/crlfuzz#44. So might as well drop it? So unless you guys want to help me fixing the ones I was struggling with (see initial post), I think this PR can be marked as ready. Let me know @yogeshojha @psyray. |
Should, but maybe it's not. |
It doesn't work because you should My command in this comment works |
OK I've tried some tests for theHarvester, and while command given above works in the shell, it does not work in reNgine. Line 922 in 195f8f5
Line 4086 in 195f8f5
My thought is that we need to create a python script like this, for example in import sys;
sys.path.append("/usr/src/github/theHarvester/theHarvester/lib/");
from version import version;
print(version()) And call this script from the version lookup command |
@psyray it is unrelated to The version lookup command executes from Instead of creating a new file/api to just check theHarvester version, I guess we can cat and grep the lib/version.py |
@AnonymousWP unless we have something else to fix here, please remove this as draft. All the tool versions looks good to me! tested and verified. |
Well, Yogesh just said he tested it, so seems like it does work. @psyray @yogeshojha Thanks for the help and suggestions. ❤️ Marked it as ready for review. |
Tried to fix sublist3r, OneForAll, crlfuzz and Hakrawler by spending quite some time and effort on it, but no luck. Hardest was OneForAll, because that's the only one that has a command for outputting the version. The other two don't.