43
ISP junk generator (self.privacy)
submitted 2 months ago by Dust0741 to c/[email protected]

Is there something that can generate random Internet usage to make the real sites I go to a bit obfuscated?

I'm thinking something that runs on my server, and simply visits a random website. It probably shouldn't actually be random, and some sort of tweaking would be great. Like the ability to have it visit every news site there is. That way the ISP will have a harder time telling my political bias.

The threat model for this is below using a VPN for normal usage, although getting a dedicated VPN IP address is a project for one day.

you are viewing a single comment's thread
view the rest of the comments
[-] [email protected] 8 points 2 months ago

It'd be pretty quick to write a script that loads a randomly selected url from a prepopulated list at random intervals. Could probably do it in grease monkey directly in Firefox so you could use other tools in addition like adnausium and a client spoofer.

[-] Dust0741 2 points 2 months ago

Yea. My issue now is finding a list of these sites

[-] [email protected] 2 points 2 months ago* (last edited 2 months ago)

Just start listing the most popular and generic sites. Then Google a topic like technology and copy whatever those sites are. I imagine you could have a pretty decent list populated in 15 minutes. You could also just ask chatgpt to create lists of the top 100 sites for "x".

What would write in? I might be willing to help because this interests me as well.

[-] Dust0741 3 points 2 months ago

That's a good idea.

Probably just a shell script. Someone mentioned using curl so that'd be pretty easy

[-] [email protected] 2 points 2 months ago

Let me know if you start working on anything. I want to try to use greasemonkey, I haven't in years.

[-] Dust0741 1 points 2 months ago* (last edited 2 months ago)

Little curl shell script that works:

#!/bin/bash

# Random_Curl_Request.sh

# CSV file containing websites
CSV_FILE="/home/user/Documents/randomSiteVisitor/websites.csv"

# Get a random line from the CSV file
RANDOM_LINE=$(shuf -n 1 "$CSV_FILE")

# Extract the website URL from the random line
WEBSITE=$(echo $RANDOM_LINE | cut -d ',' -f 1)

# Make a curl request to the random website every minute
while true; do
    curl $WEBSITE
    sleep 60

    # Get a new random line from the CSV file
    RANDOM_LINE=$(shuf -n 1 "$CSV_FILE")

    # Extract the website URL from the new random line
    NEW_WEBSITE=$(echo $RANDOM_LINE | cut -d ',' -f 1)

    # Update the website URL for the next iteration
    WEBSITE=$NEW_WEBSITE
done

[-] [email protected] 1 points 2 months ago

Oh dang, nice. Simple and sweet. Thanks.

load more comments (2 replies)
load more comments (6 replies)
load more comments (6 replies)
this post was submitted on 07 Mar 2024
43 points (92.2% liked)

Privacy

29147 readers
629 users here now

A place to discuss privacy and freedom in the digital world.

Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.

In this community everyone is welcome to post links and discuss topics related to privacy.

Some Rules

Related communities

Chat rooms

much thanks to @gary_host_laptop for the logo design :)

founded 4 years ago
MODERATORS