最近有在hostloc那边看到MJJ利用alexamaster赚钱的教程,虽然这个挂机方式已经有一段时间了,但是问其当前是否有收益的时候,得知每个月还有1-3美元收入,所以西瓜也准备分享一下。

注册alexamaster

注册地址

注册不能用qq邮箱,注册后登陆账户,点击surfs

alexamaster利用闲置VPS挂机浏览广告赚钱
 

点击surf now,会有一个链接,这个就是你的赚钱链接:

alexamaster利用闲置VPS挂机浏览广告赚钱
 
 

你可以在windows上用chrome或firefox直接打开此链接,会自动浏览广告页面赚取点击数,浏览器需在设置中允许弹窗。

如果你是linux系统,建议安装ubuntu16.04 64位版本,然后运行如下脚本可以自动挖矿

wget xiaofd.github.io/vncam.sh
bash vncam.sh -p 'xiaofd.github.io/others/passwd-d10086' -u 'https://www.alexamaster.net/Master/127888'

https://www.alexamaster.net/Master/127888替换成你的链接

点击上一个图中的“MY SURFS”可以查看你的挖矿客户端是否运行

赚到1美元以上即可提取到Paypal

实测用5个vps运行6天后达到1美元提现门槛:

alexamaster利用闲置VPS挂机浏览广告赚钱
 
 

每个vps的内存在512M或以上,4个运行Ubuntu,1个运行windows,由于浏览器可能存在跑死现象,因此通过脚本对浏览器任务进行监控,并且每天定时重启vps

alexamaster利用闲置VPS挂机浏览广告赚钱
 
 

windows监控脚本

1、设置chrome浏览器的主页为你的浏览广告地址,比如https://www.alexamaster.net/Master/127888

2、编写批处理,保存为alex.bat

:start
taskkill /IM chrome.exe /F
ping 127.0.0.1 -n 30 >nul
cd "C:\Program Files (x86)\Google\Chrome\Application\"
echo %date:~0,4%-%date:~5,2%-%date:~8,2%-%time:~0,2%:%time:~3,2%:%time:~6,2%
start chrome.exe
ping 127.0.0.1 -n 7200 >nul
goto start

运行alex.bat,会每两个小时重启chrome浏览器,防止卡死

linux脚本

1、建立监控脚本,比如/root/mon.sh

#!/bin/sh
echo `date`>>/tmp/mon.txt
icount=`ps aux |grep firefox|grep -v grep|wc -l`
if [ $icount -lt 1 ] ;then
/sbin/reboot
fi
icount=`netstat -nautp|grep firefox|grep -v grep|wc -l`
if [ $icount -lt 3 ] ;then
killall firefox
sleep 2
su root -c 'export DISPLAY=localhost:1;firefox --profile ~/.alexa/alexa --new-tab https://www.alexamaster.net/Master/127888 &'
fi

上述脚本对firefox浏览器进行监控,发现异常会自动重启

2、增加定时任务

crontab -e

输入:

0 4 * * * /sbin/reboot
*/20 * * * * /root/mon.sh

每天重启一次,每20分钟检查firefox进程


下面实测提现过程:

选make money,request:

alexamaster利用闲置VPS挂机浏览广告赚钱
 

可以看到,提现还要满足上述所有条件,Good votes要达到200,可以通过Earn Points做任务、加朋友或朋友聊天来提高votes

当Good votes达到200后,可以申请提现到paypal

alexamaster利用闲置VPS挂机浏览广告赚钱

一天内到达PP账户

alexamaster利用闲置VPS挂机浏览广告赚钱

提现金额与等待天数关系:

alexamaster利用闲置VPS挂机浏览广告赚钱

好了,美元到手。

 

via.http://blog.iytc.net/wordpress/?p=3999

http://xgsa.net/164.html

最后修改:2020 年 01 月 22 日 10 : 14 PM