The Most Active and Friendliest
Affiliate Marketing Community Online!

“Adavice”/  “1Win

ZeroPark weird traffic source URL

Learning and without losing money is an accomplishment -- seriously.
You just need to find better situations to Make Bank ;)
 
And what attributes are stored in 'your database'?
  • Are you capturing the IP addresses --
  • have you backtracked them to their hosts and networks,
  • are they in the tor exit node lists?

What domain they came from means little sometimes is my point.
 
There are no 'tools' you need to understand machine code.
I can automate a host check on IPs.
$host <ip>
just make a bash script and loop that list -- print the results to a file -- that is the easy part actually :p
the hard part is having the experience to analyze the list
The logic and network knowledge I have never seen in some 'tool'.
Same as their is no a do it yourself 'Surgery Tool'

tor exit node lists are published -- do a search and find then like I had to.
The Internet contains a library of knowledge -- invest the time to learn what you need to know.


let me google that for you
 
Make your own bots :ninja:

#!/bin/bash
#ipinfo.sh

echo "Pls enter your ip:"
read ip
curl "htt(remove this space!)ps://ipinfo.io/$ip"
exit
^^ you can only do 1000 lookups per day free ;) otherwise get your wallet out
I have donated this in the past as charityware
you need to make this an executable on a LINUX system.
all datacenter servers 'bots' if you want to tag them that

barry@-DS-7:~$ ./ipinfo.sh
Pls enter your ip:
51.15.122.236
{
"ip": "51.15.122.236",
"hostname": "236-122-15-51.rev.cloud.scaleway.com",
"city": "",
"region": "",
"country": "FR",
"loc": "48.8582,2.3387",
"org": "AS12876 ONLINE S.A.S."
}
barry@-DS-7:~$ ./ipinfo.sh
Pls enter your ip:
68.183.66.165
{
"ip": "68.183.66.165",
"city": "Frankfurt",
"region": "Hessen",
"country": "DE",
"loc": "50.1167,8.6833",
"org": "AS14061 DigitalOcean, LLC"
}barry@-DS-7:~$ ./ipinfo.sh
Pls enter your ip:
167.99.248.246
{
"ip": "167.99.248.246",
"city": "Frankfurt",
"region": "Hessen",
"country": "DE",
"loc": "50.1167,8.6833",
"org": "AS14061 DigitalOcean, LLC"
}barry@-DS-7:~$ ./ipinfo.sh
Pls enter your ip:
159.89.110.114
{
"ip": "159.89.110.114",
"city": "Frankfurt",
"region": "Hessen",
"country": "DE",
"loc": "50.1167,8.6833",
"org": "AS14061 DigitalOcean, LLC"
}barry@-DS-7:~$ ./ipinfo.sh
Pls enter your ip:
46.101.240.184
{
"ip": "46.101.240.184",
"city": "Frankfurt",
"region": "Hessen",
"country": "DE",
"loc": "50.1167,8.6833",
"org": "AS14061 DigitalOcean, LLC"
}barry@-DS-7:~$
 
banners
Back