BFBlack Fedorainblackfedora.dev路Apr 30, 2022 路 6 min read馃攽 Password attack types and mitigation strategiesIn this post we are going to talk about different password attacks. Knowing how to attack it will help us to propose a defense solution. In general there is 2 main ways we can get a username and a password. We can either guess them or steal them. Bef...00
BFBlack Fedorainblackfedora.dev路Apr 6, 2022 路 3 min read馃攧 How to close the feedback loop on an attackerWhen we discussed adversarial cycle we mentioned that defending the system is a fundamentally unsolvable problem, because it's an infinite game. Our task, however, is not to win it but "tip the economics" in our favor. By that I mean trying to create...00
BFBlack Fedorainblackfedora.dev路Apr 5, 2022 路 3 min readApache: Restrict access by IP addressKeep in mind that this is a static configuration, which is not very effective against adversarial attacks when an attacker constantly changes their tactics. This guide does not cover managing .htaccess file. Locating config files Before applying the ...00
BFBlack Fedorainblackfedora.dev路Apr 2, 2022 路 2 min readHAProxy: Restrict access by IP addressKeep in mind that this is a static configuration, which is not very effective against adversarial attacks when an attacker constantly changes their tactics. By default HAProxy configuration file is located at /etc/haproxy/haproxy.cfg. To block a sing...01J
BFBlack Fedorainblackfedora.dev路Apr 2, 2022 路 2 min readNGINX: Restrict access by IP addressKeep in mind that this is a static configuration, which is not very effective against adversarial attacks when an attacker constantly changes their tactics. Denylisting (that's what NGINX calls it) is done through ngx_http_access_module, which provid...00