manuel1010
New Member
How do i know or detect that a particular traffic or IP address is a proxy or not real traffic??? Need help please....
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
{
"status": "ok",
"99.*.*.*": {
"proxy": "no",
"type": "Residential"
}
curl "http://proxycheck.io/v2/$ip"
there is a hard limit of 100 ips a day for a free account#!/bin/bash
#ipinfo.sh
echo "Pls enter your ip:"
read ip
echo -n [
curl "https://ipinfo.io/$ip"
echo ,
curl "http://proxycheck.io/v2/$ip"
echo ]
exit
#!/bin/bash
# ipinfo.sh
# Check if searchIP.csv exists
if [ ! -e searchIP.csv ]; then
echo "searchIP.csv not found."
exit 1
fi
# Create an output file
outputFile="output.json"
echo "[" > "$outputFile"
# Loop through each line in the CSV file
while IFS=, read -r ip
do
# Check if the IP is empty
if [ -z "$ip" ]; then
continue
fi
echo -n "{" >> "$outputFile"
# Fetch information from ipinfo.io
echo -n "\"ipinfo\": " >> "$outputFile"
curl -s "https://ipinfo.io/$ip" >> "$outputFile"
echo "," >> "$outputFile"
# Fetch information from proxycheck.io
echo -n "\"proxycheck\": " >> "$outputFile"
curl -s "http://proxycheck.io/v2/$ip" >> "$outputFile"
echo "}," >> "$outputFile"
done < searchIP.csv
# Remove the trailing comma and close the JSON array
sed -i '$s/,$//' "$outputFile"
echo "]" >> "$outputFile"
echo "Output saved to $outputFile."
That may of worked years ago it does not today --that is an internet holy relic.One common method is to analyze headers for telltale signs like X-Forwarded-For.