Not yet because with the fix, now is going to work always... but for sure it will be done. If I receive some help it can be done very soon. I just need to "translate" all the iptables commands to the new nomenclature... These are the commands to translate. Any help is welcome:

Saving and restoring:
iptables-save > file
iptables-restore < file

Probably saving and restoring will be the same

Cleaning rules:
iptables -F
iptables -t nat -F
iptables -X
iptables -t nat -X

Cleaning stuff maybe will be unchanged (wild guess, didn't checked yet new nomenclature documentation)

Policy stuff:
iptables -P FORWARD ACCEPT

Some rules:
iptables -t nat -A PREROUTING -p tcp --dport 80 -j DNAT --to-destination 192.168.1.1:80
iptables -A INPUT -p tcp --destination-port 80 -j ACCEPT
iptables -A INPUT -p udp --destination-port 53 -j ACCEPT
iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 10000

NAT masquerading:
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

Icmp stuff:
iptables -A INPUT -p icmp --icmp-type 8 -s 192.168.1.0/255.255.255.0 -d 192.168.1.1/255.255.255.0 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -s 192.168.1.0/255.255.255.0 -d 192.168.1.1/255.255.255.0 -j DROP

That's all. For sure, airgeddon has more iptables rules... but most of them are "repeated" just with some different data (port or whatever)... but translating this I could adapt it to the new nftables. Any help? I have not too much time lately!

Thanks.