Bad Request 400

Status
Not open for further replies.

mcs3ss2

Active Member
Sep 8, 2020
258
27
28
AU
Hi Guys,

Debian 12 Install

I am getting Bad Request 400 when browsing with fqdn url however if I browse with IP Django-PBX portal loads up OK.
I am guessing it could be something to do with nginx.
Any pointers ?

nginx error log


Code:
2024/02/15 18:42:33 [crit] 1040#1040: *39 SSL_read() failed (SSL: error:1C80006C:Provider routines::invalid aad error:0A0C0103:SSL routines::internal error) while waiting for request, client: 987.876.765.654, server: 123.234.456.568:443
 

Adrian Fretwell

Well-Known Member
Aug 13, 2017
1,416
376
83
This does look more like an ssl error, but it is worth checking the following:

Check your /home/djangp-pbx/pbx/pbx/settings.py file. See what you have in the ALLOWED_HOSTS list.
It should look have in there:
'127.0.0.1', 'Your server IP', 'Your FQDN'
at the very least.

You can do a wildcard domain with a leading dot '.mydomain.com'

If you make changes they will not take effect until you issue the following command as root:
uwsgi --reload /var/run/uwsgi/app/djangopbx/pid

https://www.djangopbx.com/static/documentation/commandline/root_commands.html
 

mcs3ss2

Active Member
Sep 8, 2020
258
27
28
AU
@Adrian Fretwell
Thank you
I did not make any changes to that file, something the install script might have missed? I did change the domain in the install script as suggesting in your video.

All submenu links in Firewall are 500 Error
 

mcs3ss2

Active Member
Sep 8, 2020
258
27
28
AU
Code:
define ipv4_sip_gateways = { 192.168.13.5, 192.168.88.0/24 }
define ipv6_sip_gateways = { fc00:6b2:0211:fb0f::/64 }
define ipv4_sip_customers = {}
define ipv6_sip_customers = {}
define ipv4_white_list = {123.456.789.321}
define ipv6_white_list = { fc00:04c8:0214:fc81::/64 }
define sip_service_ports = { 5060, 5061 }
define private_tcp_services = { 22 }
define public_tcp_services = { 80, 443 }
define private_udp_services = {}
define public_udp_services = {}
 

Adrian Fretwell

Well-Known Member
Aug 13, 2017
1,416
376
83
I assume there is more that what you have shown.

Logging in as the django-pbx user try issuing a /usr/local/bin/fw-show-ipv4-white-list.sh This should return some json showing the IPs in the list
 

mcs3ss2

Active Member
Sep 8, 2020
258
27
28
AU
Sorry, Full NFT Here

Code:
#!/usr/sbin/nft -f

table inet filter {
    counter sip-ipv4-inbound-gateway {
        comment "IPv4 SIP received from Gateway"
    }

    counter sip-ipv4-udp-authorised {
        comment "IPv4 UDP SIP packets authorised"
    }

    counter sip-ipv4-tcp-authorised {
        comment "IPv4 TCP SIP packets authorised"
    }

    counter sip-ipv4-udp-unauthorised {
        comment "IPv4 UDP SIP packets unauthorised"
    }

    counter sip-ipv4-tcp-unauthorised {
        comment "IPv4 TCP SIP packets unauthorised"
    }

    counter sip-ipv4-udp-dropped {
        comment "IPv4 UDP SIP packets dropped"
    }

    counter sip-ipv4-tcp-dropped {
        comment "IPv4 TCP SIP packets dropped"
    }

    counter sip-ipv6-inbound-gateway {
        comment "IPv6 SIP received from Gateway"
    }

    counter sip-ipv6-udp-authorised {
        comment "IPv6 UDP SIP packets authorised"
    }

    counter sip-ipv6-tcp-authorised {
        comment "IPv6 TCP SIP packets authorised"
    }

    counter sip-ipv6-udp-unauthorised {
        comment "IPv6 UDP SIP packets unauthorised"
    }

    counter sip-ipv6-tcp-unauthorised {
        comment "IPv6 TCP SIP packets unauthorised"
    }

    counter sip-ipv6-udp-dropped {
        comment "IPv6 UDP SIP packets dropped"
    }

    counter sip-ipv6-tcp-dropped {
        comment "IPv6 TCP SIP packets dropped"
    }

    counter web-ipv4-tcp-dropped {
        comment "IPv4 TCP Web packets dropped"
    }

    counter web-ipv6-tcp-dropped {
        comment "IPv6 TCP Web packets dropped"
    }

    set ipv4_white_list {
        type ipv4_addr
        flags interval
        comment "Accept packets from these IPv4 hosts"
        elements = $ipv4_white_list
    }

    set ipv6_white_list {
        type ipv6_addr
        flags interval
        comment "Accept packets from these IPv6 hosts"
        elements = $ipv6_white_list
    }

    set ipv4_sip_gateway_list {
        type ipv4_addr
        flags interval
        comment "IPv4 SIP Gateways"
        elements = $ipv4_sip_gateways
    }

    set ipv6_sip_gateway_list {
        type ipv6_addr
        flags interval
        comment "IPv6 SIP Gateways"
        elements = $ipv6_sip_gateways
    }

    set ipv4_sip_customer_list {
        type ipv4_addr
        comment "SIP Customer IPv4 Addresses"
        elements = $ipv4_sip_customers
    }

    set ipv6_sip_customer_list {
        type ipv6_addr
        comment "SIP Customer IPv6 Addresses"
        elements = $ipv6_sip_customers
    }

    set ipv4_web_block_list {
        type ipv4_addr
        comment "IPs banned from web service"
    }

    set ipv6_web_block_list {
        type ipv6_addr
        comment "IPs banned from web service"
    }

    set ipv4_sip_meter {
        type ipv4_addr
        size 65535
        flags timeout, dynamic
    }

    set ipv6_sip_meter {
        type ipv6_addr
        size 65535
        flags timeout, dynamic
    }

    set sip_service_ports {
        type inet_service
        comment "Destination ports of SIP services we offer"
        elements = $sip_service_ports
    }

    set private_tcp_services {
        type inet_service
        comment "Destination ports of whitelist TCP only services we offer"
        elements = $private_tcp_services
    }

    set public_tcp_services {
        type inet_service
        comment "Destination ports of public TCP services we offer"
        elements = $public_tcp_services
    }

    set private_udp_services {
        type inet_service
        comment "Destination ports of whitelist only UDP services we offer"
        elements = $private_udp_services
    }

    set public_udp_services {
        type inet_service
        comment "Destination ports of public UDP services we offer"
        elements = $public_udp_services
    }

    chain inbound_ipv4 {
        udp dport 16384-32768 accept
        icmp type echo-request limit rate 5/second accept
        icmp type { destination-unreachable, echo-reply, source-quench, time-exceeded } accept

        ip saddr @ipv4_sip_gateway_list counter name sip-ipv4-inbound-gateway accept

        ip saddr @ipv4_sip_customer_list udp dport @sip_service_ports counter name sip-ipv4-udp-authorised accept
        ip saddr @ipv4_sip_customer_list tcp dport @sip_service_ports counter name sip-ipv4-tcp-authorised accept
        udp dport @sip_service_ports update @ipv4_sip_meter { ip saddr timeout 2h limit rate 20/hour } counter name sip-ipv4-udp-unauthorised accept
        udp dport @sip_service_ports counter name sip-ipv4-udp-dropped drop
        tcp dport @sip_service_ports update @ipv4_sip_meter { ip saddr timeout 2h limit rate 20/hour } counter name sip-ipv4-tcp-unauthorised accept
        tcp dport @sip_service_ports counter name sip-ipv4-tcp-dropped drop

        ip saddr @ipv4_web_block_list tcp dport { 80, 443 } counter name web-ipv4-tcp-dropped drop
        # Allow traffic from established and related packets
        ct state { established, related } accept
        tcp dport @public_tcp_services accept
        udp dport @public_udp_services accept
        ip saddr @ipv4_white_list tcp dport @private_tcp_services accept
        ip saddr @ipv4_white_list udp dport @private_udp_services accept
    }

    chain inbound_ipv6 {
        udp dport 16384-32768 accept
        # accept neighbour discovery otherwise connectivity breaks
        icmpv6 type { nd-neighbor-solicit, nd-router-advert, nd-neighbor-advert } accept
        icmpv6 type { destination-unreachable, echo-reply, packet-too-big, parameter-problem, time-exceeded } accept
        icmpv6 type echo-request limit rate 5/second accept

        ip6 saddr @ipv6_sip_gateway_list counter name sip-ipv6-inbound-gateway accept

        ip6 saddr @ipv6_sip_customer_list udp dport @sip_service_ports counter name sip-ipv6-udp-authorised accept
        ip6 saddr @ipv6_sip_customer_list tcp dport @sip_service_ports counter name sip-ipv6-tcp-authorised accept
        udp dport @sip_service_ports update @ipv6_sip_meter { ip6 saddr timeout 2h limit rate 20/hour } counter name sip-ipv6-udp-unauthorised accept
        udp dport @sip_service_ports counter name sip-ipv6-udp-dropped drop
        tcp dport @sip_service_ports update @ipv6_sip_meter { ip6 saddr timeout 2h limit rate 20/hour } counter name sip-ipv6-tcp-unauthorised accept
        tcp dport @sip_service_ports counter name sip-ipv6-tcp-dropped drop

        ip6 saddr @ipv6_web_block_list tcp dport { 80, 443 } counter name web-ipv6-tcp-dropped drop
        # Allow traffic from established and related packets
        ct state { established, related } accept
        tcp dport @public_tcp_services accept
        udp dport @public_udp_services accept
        ip6 saddr @ipv6_white_list tcp dport @private_tcp_services accept
        ip6 saddr @ipv6_white_list udp dport @private_udp_services accept
    }

    chain inbound {
        type filter hook input priority filter; policy drop;

        # Allow all from loopback
        iifname "lo" accept
        # Jump to chain according to layer 3 protocol using a verdict map
        meta protocol vmap { ip : jump inbound_ipv4, ip6 : jump inbound_ipv6 }
    }

    chain outbound {
        type filter hook output priority filter; policy accept;

        # Set differential services bits for RTP Priority
        udp sport 16384-32768 ip dscp set 0x2e

        # Set differential services bits for SIP Priority
        udp sport @sip_service_ports ip dscp set 0x1a
        tcp sport @sip_service_ports ip dscp set 0x1a
    }
}


table netdev filter {
    counter ipv4-block-list-dropped {
        comment "IPv4 Block list dropped"
    }

    counter ipv6-block-list-dropped {
        comment "IPv6 Block list dropped"
    }

    set ipv4_block_list {
        type ipv4_addr
        flags interval
        comment "Drop all packets from these hosts"
    }

    set ipv6_block_list {
        type ipv6_addr
        flags interval
        comment "Drop all packets from these hosts"
    }

    chain ingress {
        type filter hook ingress device eth0 priority -500; policy accept;
        # Drop all fragments.
        ip frag-off & 0x1fff != 0 counter drop

        # Drop IPv4s not in internet (RFC 1918, RFC 5735 etc.)
        ip saddr {
        0.0.0.0/8,
        10.0.0.0/8,
        100.64.0.0/10,
        127.0.0.0/8,
        169.254.0.0/16,
        172.16.0.0/12,
        192.0.0.0/24,
        192.0.2.0/24,
        198.18.0.0/15,
        198.51.100.0/24,
        203.0.113.0/24,
        224.0.0.0/3
        } counter drop

        # Drop bad addresses.
        ip saddr @ipv4_block_list counter name ipv4-block-list-dropped drop
        ip6 saddr @ipv6_block_list counter name ipv6-block-list-dropped drop

        # Drop XMAS packets.
        tcp flags & (fin|syn|rst|psh|ack|urg) == fin|syn|rst|psh|ack|urg counter drop

        # Drop NULL packets.
        tcp flags & (fin|syn|rst|psh|ack|urg) == 0x0 counter drop

        # Drop uncommon MSS values.
        tcp flags syn tcp option maxseg size 1-535 counter drop
    }
}


table inet mangle {
    chain prerouting {
        type filter hook prerouting priority -150;

        # Drop invalid
        ct state invalid counter drop

        # TCP SYN (Drop new without SYN)
        tcp flags & (fin|syn|rst|ack) != syn ct state new counter drop
    }
}
 
Last edited:

Adrian Fretwell

Well-Known Member
Aug 13, 2017
1,416
376
83
Logging in as the django-pbx user try issuing a /usr/local/bin/fw-show-ipv4-white-list.sh This should return some json showing the IPs in the list
 

Adrian Fretwell

Well-Known Member
Aug 13, 2017
1,416
376
83
For the benefit of anyone reading this thread, nftables had not been installed.
apt-get install nftables fixed the problem.

Although nftables is supposed to be the default firewall on Debian12, we have found it missing one some cloud and VPS builds.
The install script has now been modified to make sure nftables is always installed.
 
Status
Not open for further replies.