Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Banned IP entry into an error log #332

Copy link
Copy link
@RobertFojtikAEN

Description

@RobertFojtikAEN
Issue body actions

Is there any issue to write banned IP entry to an error log ?

Something like that:

if ((((static_cast<webserver*>(cls))->default_policy == http_utils::ACCEPT) &&
            ((static_cast<webserver*>(cls))->bans.count(ip_representation(addr))) &&
            (!(static_cast<webserver*>(cls))->allowances.count(ip_representation(addr)))) ||
        (((static_cast<webserver*>(cls))->default_policy == http_utils::REJECT) &&
         ((!(static_cast<webserver*>(cls))->allowances.count(ip_representation(addr))) ||
          ((static_cast<webserver*>(cls))->bans.count(ip_representation(addr)))))) {
    
    //log banned IP
    std::string msg = "IP '" + httpserver::http::get_ip_str(addr) + "' rejected\n";
    webserver* dws = static_cast<webserver*>(cls);
    dws->log_error(msg);

    return MHD_NO;
}

Metadata

Metadata

Assignees

Labels

feature-requestFeature requests or enhancementsFeature requests or enhancements

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    Morty Proxy This is a proxified and sanitized view of the page, visit original site.