Aditya Gujar
Aditya Gujar
You can find ffuf example command in the Wiki-> Examples page to get an idea. Providing multiple wordlists is not supported yet. ``` python shadowclone.py -i --split 300 -o -c...
are you running this command from the same directory where you have kept your Dockerfile? If not you can give it a path to your dockerfile like this `lithops runtime...
did you update `config.py` with the name of your runtime? Also, have you completed the setup steps under "local machine" section
Well, that is expected because each chunk is uploaded separately so right now it's causing lots of s3 API requests that's slowing it down. I have got a new idea...
Have you tried running with python version 3.8?
@georgebecerescu your error looks like its coming from Docker. do you have docker socket disabled? Or maybe you are running as non-root user? > Got permission denied while trying to...
15 minutes is the maximum execution time for AWS lambda. You can increase the `runtime_timeout` upto 900 seconds by editing the ~/.lithops/config file. I have found 5 minutes to be...
There is an example for this in wiki ``` python shadowclone.py -i -c "nuclei -duc -l {INPUT} -t /nuclei-templates/technologies/tech-detect.yaml -config-directory /tmp/" ``` Another pro tip: don't run all templates `-t...
It seems ProjectDiscovery changed the directory structure for nuclei-templates repo recently. Use the correct path and it should work after that
try this ``` python3 shadowclone.py -i ~/bbdata/alive.txt -c "/go/bin/nuclei -l {INPUT} -t /nuclei-templates/http/technologies/tech-detect.yaml -config-directory /tmp/" ``` >Also you mentioned that you can't run all the templates any reason why? Running...