Skip to content
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

replace ' ' with '' in ligne 358 break space in header (like auth basic) #76

Open
0x25 opened this issue Nov 23, 2023 · 0 comments
Open

Comments

@0x25
Copy link

0x25 commented Nov 23, 2023

Need to add auth basic header

python3 SecretFinder.py -i https://URL -H 'Authorization:Basic dXNlcjpwYXNzd2Q=' -o cli

but the line name,value = i.replace(' ','').split(':') just remove space between Basic and Base64 value.

Authorization:BasicdXNlcjpwYXNzd2Q= who is not a valid header

need to patch and remove the replace

name,value = i.split(':')

@0x25 0x25 changed the title replace ' ' witj '' in ligne 558 break space in header (like auth basic) replace ' ' with '' in ligne 558 break space in header (like auth basic) Nov 23, 2023
@0x25 0x25 changed the title replace ' ' with '' in ligne 558 break space in header (like auth basic) replace ' ' with '' in ligne 358 break space in header (like auth basic) Nov 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant