0xKayala / NucleiFuzzer

NucleiFuzzer is a Powerful Automation tool for detecting XSS, SQLi, SSRF, Open-Redirect, etc.. Vulnerabilities in Web Applications

Home Page:https://github.com/0xKayala/NucleiFuzzer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

No url Found

xcapri opened this issue · comments

commented

How to fix this?

root@xxx:~/# nucleifuzzer -d example.com

    _   __           __     _ ______                         
   / | / /_  _______/ /__  (_) ____/_  __________  ___  _____
  /  |/ / / / / ___/ / _ \/ / /_  / / / /_  /_  / / _ \/ ___/
 / /|  / /_/ / /__/ /  __/ / __/ / /_/ / / /_/ /_/  __/ /    
/_/ |_/\__,_/\___/_/\___/_/_/    \__,_/ /___/___/\___/_/

                               Made by Satya Prakash (0xKayala)

Running ParamSpider on example.com
  File "/root/ParamSpider/paramspider.py", line 42
    url = f"https://web.archive.org/cdx/search/cdx?url=*.{args.domain}/*&output=txt&fl=original&collapse=urlkey&page=/"
                                                                                                                      ^
SyntaxError: invalid syntax
No URLs Found. Exiting...
root@xxx:~/# nucleifuzzer -d https://example.com

    _   __           __     _ ______                         
   / | / /_  _______/ /__  (_) ____/_  __________  ___  _____
  /  |/ / / / / ___/ / _ \/ / /_  / / / /_  /_  / / _ \/ ___/
 / /|  / /_/ / /__/ /  __/ / __/ / /_/ / / /_/ /_/  __/ /    
/_/ |_/\__,_/\___/_/\___/_/_/    \__,_/ /___/___/\___/_/

                               Made by Satya Prakash (0xKayala)

Running ParamSpider on https://example.com
  File "/root/ParamSpider/paramspider.py", line 42
    url = f"https://web.archive.org/cdx/search/cdx?url=*.{args.domain}/*&output=txt&fl=original&collapse=urlkey&page=/"
                                                                                                                      ^
SyntaxError: invalid syntax
No URLs Found. Exiting...

Thanks for raising this issue and providing detailed logs. I've reviewed the error you've reported and it seems to be originating from the paramspider.py script, specifically with the f-string formatting.

To quickly address this:

  1. It looks like there might be an issue with the version of Python you are running. ParamSpider and the related scripts are designed to work with Python 3.6 and above, given that we're utilizing f-string formatting which was introduced in Python 3.6. Please ensure you're using the appropriate Python version.

  2. Alternatively, it's possible there might be some unexpected character or configuration affecting the syntax. If you're sure you're using Python 3.6 or above, I'd recommend pulling the latest version of the repository to ensure you're not working with a potentially corrupted or outdated version.