recon_profile icon indicating copy to clipboard operation
recon_profile copied to clipboard

Error: jq: error (at <stdin>:0): Cannot index string with string "dns_names"

Open Yashvendra opened this issue 5 years ago • 8 comments

When tried running

for i in `certspotter developer.xxxx.com | httprobe`; do
       python3 ~/tools/dirsearch/dirsearch.py -u $1/  -t 200 -e php  
done

It throws this error: jq: error (at <stdin>:0): Cannot index string with string "dns_names"

Yashvendra avatar Dec 27 '19 12:12 Yashvendra

Same error here... Any solution?

catekuser avatar Mar 14 '20 07:03 catekuser

same issue, any solution?

hitesh9811 avatar Jul 12 '20 21:07 hitesh9811

Same issue, any help would be greatly appreciated

ProngedFork avatar Nov 11 '20 09:11 ProngedFork

I modified into this and it is working perfectly fine for me: curl -s https://certspotter.com/api/v0/certs?domain=yahoo.com | jq '.[].dns_names[]' | tr -d '"' | sort -u

ProngedFork avatar Nov 11 '20 11:11 ProngedFork

it is showning same error

rogermax007 avatar Apr 24 '21 12:04 rogermax007

certspotter(){ curl -s https://api.certspotter.com/v1/issuances?domain=$1&expand=dns_names&expand=issuer | jq '.[].dns_names[]' | tr -d '"' | sort -u }

bharath619 avatar Jun 30 '21 14:06 bharath619

Thanks

On Wed, 30 Jun 2021 at 8:06 PM, bharath619 @.***> wrote:

certspotter(){ curl -s https://api.certspotter.com/v1/issuances?domain=$1&expand=dns_names&expand=issuer | jq '.[].dns_names[]' | tr -d '"' | sort -u }

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/nahamsec/recon_profile/issues/7#issuecomment-871461218, or unsubscribe https://github.com/notifications/unsubscribe-auth/ARNXEV2CDPVODAAL2DMYORLTVMTWLANCNFSM4J73K5CQ .

rogermax007 avatar Jun 30 '21 14:06 rogermax007

thanks Dear brother

sai-beep avatar Nov 11 '22 11:11 sai-beep