Internet Traffic Generator
Sometimes you need to hide your internet traffic without using VPN especially when you are in a hurry while connected to public wifi networks. If you are a privacy-focused person but not paranoid maybe this might help you.
Let’s start hiding your traffic from the haystack.
First, let us collect user-agents to spoof the device via header requests and save it to file user-agents.txt
.
Then now let us collect the URLs that you want to use for the traffic generator and saved them as urls.txt
Another procedure is to collect tons of proxies, In my case, I use web proxy since I’m familiar with the OWASP redirect vulnerability.
After we collected proxies or web proxies let’s put them on a file and named them as webproxy.txt
.
Now let’s create a script using bash. The logic about this is to shuffle random URLs, random user-agents, random web-proxy based on the contents of text files. In my part, I used curl
for requests in which I can customize my header requests and randomizing the contents of text files using shuf
.
For more other details,
Github Link : https://github.com/maxanthonypablea/inetgen-traffic