OpenWRT Wireguard routing trick

Here is a smashing trick. Routing problems can arise if Wireguard replace default route when up, then when it is down you may not have a default route.
So, Have your default route for 0.0.0.0/0
And then Wireguard routes split the full IP space in two. You have two routes that are more specific. That way when wireguard is up, the wireguard routes take preferences. When down, default route works.
uci set network.@wireguard_wgclient[0].route_allowed_ips=”0″ uci -q delete network.@wireguard_wgclient[0].allowed_ips uci add_list network.@wireguard_wgclient[0].allowed_ips=”0.0.0.0/1″ uci add_list network.@wireguard_wgclient[0].allowed_ips=”128.0.0.0/1″
Discuss it here forum.openwrt.org/t/help-config-wireguard-client/69132/13

IP Reverse Lookup

The IP Reverse Lookup can return multiple domains for an IP.
There is also a query to check if an email is free or not.
A free API account is available, but after 250 requests it runs into a pumpkin and you must get a paid account.
viewdns.info/

Kali spiderfoot

Kali has a tool called spiderfoot to assist in OSINT gathering.
‘This package contains an open source intelligence (OSINT) automation tool. Its goal is to automate the process of gathering intelligence about a given target, which may be an IP address, domain name, hostname, network subnet, ASN, e-mail address or person’s name.’
www.kali.org/tools/spiderfoot/

External IP address and port forward for your device

You can get a free account on portmap.io
There are some limitation to the free account. only one port no custom dns no cert
Paid accounts offer more capability. portmap.io
Basically you connect to their servers with OpenVPN and then they forward a port from a public IP to your device which can be behind NAT firewall.
Here is a ‘How To’ for OpenWrt setup forum.openwrt.org/t/howto-free-cheap-vpn-port-forwarding-for-starlink-type-systems-portmap-io/142244