Follow along with the video below to see how to install our site as a web app on your home screen.
Note: this_feature_currently_requires_accessing_site_using_safari
I didn't test it yet, but looks good, thank youFirst step would be to check if it's a proxy/datacenter IP or a residential IP.
I can recommend this website and API for that: Proxy & VPN detection API - IPHub.info
Works pretty good in my experience.
Take a list of all the IP's hitting your website and analyze them all.
Or, you can hire 100 monkeys to type them into the form on some website ...
Do you have access to your webserver logs where the traffic is logged? Start there.
How much traffic? a random sample of 2,000 IPs would be enough to make a pretty statistically accurate assessment.
in ssh cut and shuf -n2000 >list
Learn what a reverse lookup is and what it will tell you. hostnames that come back are tell alls
do you understand ssh and server administration at all?
make a bash script to loop and do a lookup on the /24 CIDR of every IP sorted to sort -u (without duplication) |unique -c in a sort will reveal a lot -- many bots will use similar IP C and D blocks (usually belonging to datacenters) 1.2.1-254.1-254 (IPv4)
IPv6 is a real can of worms