zhaojintaozhao opened a new issue #5181: URL: https://github.com/apache/incubator-doris/issues/5181
Hi All: When FE, BE, and HDFS-Broker starting, these process will start mysql- server\http-server and thrift-server. These servers don't bind detailed host addresses(just like 10.11.22.33), so these servers listen on all-zero adrdess(0.0.0.0), just like 0.0.0.0:9030. Binding all-zero ports (0.0.0.0:9030) is equals to binding all IP addresses of the local host, which causes network-wide listening. The Doris service is directly exposed to the public network, which is vulnerable to attacks. That may be a security problem. When starting the mysql-server\http-server\thrift-server, bind a specific IP address to avoid all-zero port listening. Currently, I have resolved this security problem. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org