Code Monkey home page Code Monkey logo

internetincome's Introduction

💻 Internet Income 💸 (Multiproxy Support) 🏰

This script lets you earn income by sharing your internet bandwidth. The income is passive and you don't have to do anything after the setup but keep getting payouts to your account. The main advantage of this script is the use of multiple proxies through docker containers. This script has been tested in linux amd64, arm64 or aarch64 platforms. Your income depends on the number of proxies used and the location of proxy. If you use all the apps mentioned, you can earn about $50 per month or more from 1 IP depending on the location of the proxy.

💰 Register with the following links:

1. EarnApp 2. PacketStream 3. Honeygain
4. IPRoyal 5. Peer2Profit @peer2profit_app_bot 6. ProxyRack
7. Repocket 8. Traffmonetizer 9. ProxyLite
10. BitPing 11. Ebesucher (Private autosurf with cookies accepted) 12. Mysterium (Payment of $1 or ~0.22 MYST is required during setup for every node)
13. Adnade (Private autosurf) 14. EarnFM 15. CloudCollab (Updated soon)
16. GagaNode (Updated soon) 17. Spider Income (Not Supported) 18. Traffic Earn (Not Supported)
19. Salad (Use code WM5ZHG for a 2x earning rate bonus!) (Not Supported) 20. CryptoProxy (Mobile device) 21. PacketShare (Not Supported)
22. Speedshare (Not Supported) 23. Meson Network (Updated soon) 24. Cash Raven (Mobile device)
25. Spide Network (Not Supported) 26. Pi (Docker available in Windows only and only 1 node per account) 27. Addon Money (Browser Extension)
28. Surfe(Browser Extension) 29. Slice (Browser Extension)
  • Not Supported are the apps which are not available in docker environment, you may use them in windows.
  • Adnade and Ebesucher use firefox browser inside the container, so they consume more resources compared to other containers.

🧑‍⚖️ Comparison of different apps based on proxy type

App Name Residential/Home ISP Datacenter/Hosting/VPS Limit per Account Devices per IP
EarnApp ✔️ 15 1
PacketStream ✔️ No limit 1
Honeygain ✔️ 10 1
IPRoyal ✔️ No limit 1
Ebesucher ✔️ No limit 1
Adnade ✔️ No limit 1
EarnFM ✔️ No limit 1
Peer2Profit ✔️ ✔️ No limit No limit
ProxyRack ✔️ ✔️ 500 1
Repocket ✔️ ✔️ No limit 2
Traffmonetizer ✔️ ✔️ No limit No limit
ProxyLite ✔️ ✔️ No limit 1
BitPing ✔️ ✔️ No limit 1
Mysterium ✔️ ✔️ No limit 1
GagaNode ✔️ ✔️ No limit 1
  • The comparison mentioned above was updated on 30-04-2023 and may be subject to change later.
  • No Limit indicates the website has not mentioned any specifics about it and multiproxies were working. Try to use 1 device per IP if possible.

🏡 Prerequisites

Run the following commands to install or update docker.

Ubuntu 20.04 is recommended.

Linux

Install docker on Linux

sudo apt-get update
sudo apt-get -y install docker.io

If you are using arm or aarch linux OS, you also need to install binfmt emulator to support amd64 images on your pc.

For ARM or AARCH Architectures

sudo docker run --privileged --rm tonistiigi/binfmt --install all
sudo apt-get install qemu binfmt-support qemu-user-static

Windows

Install Docker on Windows

Follow this tutorial till 7.30 minutes where docker runs on ubuntu and then follow the next steps below to download the code.

Docker

Want to try docker for free without installation?

If you like to use docker directly for free, you can use Play with Docker. It resets every 4 hours.

👇 What next❓

Download the code and edit the configuration file properties.conf with your account details.
If you don't have GUI access but have terminal access, use the following commands to download the code.

Download the code

wget -O main.zip https://github.com/engageub/InternetIncome/archive/refs/heads/main.zip
sudo apt-get install unzip
unzip -o main.zip
cd InternetIncome-main
  • Please edit the "properties.conf" file using the following instructions and save the changes.
  • If you are using proxies, please set the "USE_PROXIES" value to "true".
  • When setting your email, password, or token, always use double quotes ("") due to special characters.
  • If you do not wish to use a particular application, leave the default value as it is, and the script will not run for that application.

Update configuration and save

vi properties.conf

🏃 Run the script

After you have followed all the mentioned above steps just run the following command to start and check your income flow to you:money_mouth_face: .

Start the process

sudo bash internetIncome.sh --start

🛑 Stop and Delete containers

To stop and delete all the containers started with the script. Run the following command. Note that for earnapp, proxyrack, traffmonetizer and mysterium the data is not deleted and same ids will be used on delete and start, since it is required to do manual setup each time you start. Delete them or use a different folder to download the script if you want to change the node ids.

Stop and delete containers

Note that back up of device Ids and node Ids are present in the same folder of the script.

sudo bash internetIncome.sh --delete

Delete backup files and folders

To delete the backup files and folders created by the script, use the following command. This will also delete mysterium data, so if you already made payment for the node take a backup before runnning the command.

sudo bash internetIncome.sh --deleteBackup

🏬 Proxies or Hosting Providers

Click here to get proxies or hosting providers with free credits.

❔ FAQ

🤔 How to use residential proxies❓

If you wish to use proxies, you need to set the value of variable USE_PROXIES to true in properties.conf file. Then, create a file name proxies.txt in the same folder you have internetIncome.sh file. Add your proxies in each line in the format protocol://user:pass@ip:port or protocol://ip:port Example proxies.txt file below. Use your own proxies.

Proxy list example format

socks5://username:[email protected]:7874
http://username:[email protected]:7878
socks5://15.4.5.2:7875
http://13.23.5.2:7872

For any other proxy format, please click here to format proxies.

🤔 Can I use without proxies❓

Yes❗ You can use the script with direct internet connection by setting the variable USE_PROXIES to false in properties.conf file. This is the default configuration when you download the script.

🤔 How to use multiple accounts❓

For multiple users to use the same host, simply create different folders and download the script in each folder and set the configuration. It is recommended not to create multilple accounts for yourself.

🤔 How to auto update containers❓

To auto update all containers on the host, run the following command.

sudo docker run --detach --name watchtower --restart always --volume /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower

🤔 How to clean up all docker containers on the host❓

Please run the following command to delete all the running and stale containers on your host. The commands also delete stale docker images.

sudo docker container ls -a | awk '{print $1}' | xargs sudo docker rm -f
sudo docker system prune -f -a

🤔 Why are some of the containers for the same application offline❓

If your proxies are working properly, ensure that your CPU usage remains below 80% and that you have enough available RAM. Otherwise, high CPU usage or insufficient RAM could cause the issue you are experiencing. In addition to this, the application website may also be throttling the requests either due to multiple authentication requests in a short span of time or the request may be timing out etc. For example in case of iproyals pawns website this happens very frequently when multiple devices are added. Giving a delay between startup of instances is not always a solution for this, since it worked without any delay sometimes. Restarting the instance multiple times always worked. This is something intermittent and related to the application that is being used. You will need to restart containers manually for those instances where proxies are offline.

🤔 Why is Mysterium node not working❓

If you are using proxy instead of direct connection, you may see the node online but no earnings. There is an ongoing issue here xjasonlyu/tun2socks#262 . It is crucial to understand that the Mysterium node operates differently from other applications, as it necessitates the enabling of UDP (User Datagram Protocol). This protocol is essential for the proper functioning of the Mysterium node. In the case of utilizing SOCKS5 proxies, it is imperative to confirm with your provider whether UDP is enabled for your specific SOCKS5 proxy. When utilizing a direct internet connection, it is imperative to ensure that your firewall is configured to allow UDP traffic.

🤔 Where is Mysterium data stored❓

The data pertaining to your Mysterium keys is stored in the designated "mysterium-data" folder, located in the same directory as the script. It is crucial to note that the script does not remove or delete this folder, as it contains your private keys. Losing these keys would necessitate the payment for a new Mysterium node. Therefore, it is imperative to exercise caution and ensure the safety and security of the "mysterium-data" folder, as it contains sensitive and valuable information. By taking appropriate measures to preserve and back up this data, you can mitigate the risk of potential loss and subsequent financial implications.

🤔 How to access 127.0.0.1 urls for ebesucher or mystnodes if GUI is not available in linux❓

If your VPS does not have port restrictions to access your VPS IP globally, you can access your localhost urls by replacing it with your VPS IP address. For example, if your VPS IP address is 2.4.75.2 and you wish to access your localhost url http://127.0.0.1:2000 ,then replace the IP with your VPS IP to access it elsewhere. The url to access directly using VPS IP would be http://2.4.75.2:2000

If your VPS IP is not accessible globally, please run the following command to get the corresponsing url.

ssh -R 80:localhost:2000 serveo.net

In the above command 2000 represents the port number of your localhost or 127.0.0.1. For each browser instance, there is a separate port number. Please change the port number accordingly. You will receive an url after running the above command which can be accessed globally.

🤔 Where are earnapp node urls stored and how to restore them❓

The UUID or node IDs are required to identify your unique nodes in earnapp dashboard. These nodes are stored in earnapp.txt file and are not deleted. The same node Ids will be used when you start the application again. You do not need to delete existing nodes in dashboard and add them again when you use --delete option. If you already have an existing node and would like to use it via the script you may add them in earnapp.txt file in the same format as the existing file.

🤔 How to replace proxies for already running containers❓

If you wish to use change proxies for already running container due to bad proxies or proxies being offline, update them in proxies.txt and remove your old proxies. Make sure you have the same number of proxies as you had earlier in proxies.txt file. Then run the following command.

sudo bash updateProxies.sh

📇 License:

  • This product is available for free and may be freely copied and distributed in its original form.
  • However, it is prohibited to distribute modified copies of the product.
  • Personal modifications are allowed for personal use only.

⚠️ Disclaimer

This script is provided "as is" and without warranty of any kind.
The author makes no warranties, express or implied, that this script is free of errors, defects, or suitable for any particular purpose.
The author shall not be liable for any damages suffered by any user of this script, whether direct, indirect, incidental, consequential, or special, arising from the use of or inability to use this script or its documentation, even if the author has been advised of the possibility of such damages.

internetincome's People

Contributors

engageub avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.