You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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(':')
The text was updated successfully, but these errors were encountered:
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
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
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 headerneed to patch and remove the replace
name,value = i.split(':')
The text was updated successfully, but these errors were encountered: