-
Notifications
You must be signed in to change notification settings - Fork 200
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
File 'lists/default.txt' missing #7
Comments
Yeah, there are a few example subdomain files added by default. If the package is installed via This looks promising. I'll have to do some investigation. In the meantime, if you'd like to access those subdomain lists you can find them with the following:
And combine the I.e.
|
When I was trying to solve a similar problem the recommendation was to use the appdirs module; have you looked into that? |
I believe I've found a decent solution. Check out 72bfc7c for more information. Note that you'll specify just the filename, not a path like Let me know if this is what you were looking for. EDIT: Also note that you'll have to install from Github, I haven't released the latest version to PyPI yet. That will be coming shortly. |
Traceback (most recent call last):
File "fierce.py", line 239, in
main()
File "fierce.py", line 236, in main
fierce(**vars(args))
File "fierce.py", line 157, in fierce
subdomains = [sd.strip() for sd in open(kwargs["subdomain_file"]).readlines()]
FileNotFoundError: [Errno 2] No such file or directory: 'lists/default.txt'
The script does not create the file if it does not already exist. Also it seems to be specified by a relative path - if one installs this via pip, presumably this is intended to be executed from any directory, and the relative path would prevent that I think.
The text was updated successfully, but these errors were encountered: