How to blacklist an IP on TIdHTTPServer

不问归期 提交于 2019-12-13 04:39:26

问题


In a TIdHTTPServer component, I'd like to enable a blacklist of IP addresses to block. I'd like to make sure this is on the lowest level possible to prevent any unnecessary data streaming in from a blacklisted client. How should I intercept this server component to block an IP on the lowest level possible? This applies to both IP v4 and v6


回答1:


On Indy 9, there was an event for refusing a connection before it was actually accepted. On Indy 10, it's still not implemented.

If you look at IdCustomTCPServer.pas, in procedure TIdListenerThread.Run there is a comment in there about exposing an event to the user to let them decide whether the connection should be accepted.

I would modify the source and implement it there.

If that's not for you, then you can disconnect them in the OnConnect event.



来源:https://stackoverflow.com/questions/15516818/how-to-blacklist-an-ip-on-tidhttpserver

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!