Hi ,
In line
|
command = f'echo "Subdomain {subdomain} has been discovered!" | {notify_binary} -silent -config {notify_api} -id {domain}' |
, you are using notify flag
-id
According to the help:
-id string[] id to send the notification to (optional)
This one breaks the notify message sending, since id = domain.
I fix it by entirely removing -id {domain} ;-)
Hi ,
In line
sub.Monitor/monitor.py
Line 99 in 8d077ba
-idAccording to the help:
This one breaks the notify message sending, since
id = domain.I fix it by entirely removing
-id {domain};-)