PCDVD數位科技討論區
PCDVD數位科技討論區   註冊 常見問題 標記討論區為已讀

回到   PCDVD數位科技討論區 > 其他群組 > 社會時事發言區
帳戶
密碼
 

回應
 
主題工具
拿破崙波拿巴
*停權中*
 
拿破崙波拿巴的大頭照
 

加入日期: Dec 2018
文章: 53
Talking 支那詐騙光頭佬 靠幕僚造假網路人氣

支那人 除了會吹牛以外造假來詐騙百姓 也早有先例

[YOUTUBE]HItuFoxw2Qk[/YOUTUBE]

洋蔥路由重新啟動,重連就換 IP 了嘛,怎麼覺得支那人造的假 很容易被抓包呢

附一下以前刷 boo.tw 洋蔥路由的腳本

不要臉支那人 騙三歲小孩的把戲誰不會 還可以換瀏覽器勒

代碼:
#!/bin/bash


######################################
### Depends: phantomjs tor curl
######################################

TOR_PROXY='--proxy=127.0.0.1:9050 --proxy-type=socks5'
CURL_PROXY='--socks5 127.0.0.1:9050'

######################################
check_systemd_fun(){
if [ -f "/bin/systemctl" ]; then
    SYSTEMCTL=y
else
    SYSTEMCTL=n
fi
}

######################################
goto_boo_fun(){
# Get Revenue
# boo.tw
BOO_LANG=$(curl -A "$AGENT" $CURL_PROXY -e "https://www.google.com/search?q=boo.tw/$CODE" http://boo.tw/$CODE | grep 'b00.tw' | sed 's/.*l=//g' | sed 's/>//g')

if [ "$BOO_LANG" == "" ]; then
    echo "****************************************************"
    echo " boo.tw connection failed!!"
    echo "****************************************************"
    echo ""
else
    # read boo ads 
    phantomjs $TOR_PROXY /usr/share/bootw/bootw.js $CODE $BRONUM > /dev/null

    echo "****************************************************"
    echo " GoTo http://b00.tw/"$CODE"?l=$BOO_LANG"
    echo "****************************************************"
    echo ""

    # b00.tw
    LINK_STATUS=$(curl -A "$AGENT" $CURL_PROXY -e http://boo.tw/$CODE http://b00.tw/"$CODE"?l=$BOO_LANG | grep b00.tw | sed 's/.*\/\///g' | sed 's/\/.*//g')
    if [ "$LINK_STATUS" == "b00.tw" ]; then
        # read b00 ads 
        phantomjs $TOR_PROXY /usr/share/bootw/b00tw.js $CODE $BRONUM $BOO_LANG > /dev/null
        echo "****************************************************"
        echo " Get 0.0020 USD "
        echo "****************************************************"
        echo ""
    else
        echo "****************************************************"
        echo " b00.tw connection failed!!"
        echo "****************************************************"
        echo ""
    fi
fi


# rm -rf /tmp/boo.tw.html
# rm -rf /tmp/boo-screenshot.png
# rm -rf /tmp/b00.tw.html
# rm -rf /tmp/b00-screenshot.png

sleep 1

clear
}

######################################
restart_tor_fun(){
if [ "$SYSTEMCTL" == "y" ]; then
    sudo systemctl restart tor
else
    sudo service tor restart
fi

sleep 5
# Check IP:
# IP TEST:
# GET_IP=$(curl --socks5 127.0.0.1:9050 http://www.icanhazip.com)
GET_IP=$(phantomjs $TOR_PROXY /usr/share/bootw/ip.js | sed /TypeError/d)

clear
echo "****************************************************"
echo " Restart Tor Proxy...."
echo " Current IP: $GET_IP"
echo "****************************************************"
echo ""

start_fun
}

######################################
start_fun(){
goto_boo_fun
restart_tor_fun
}

######################################
menu_fun(){
clear
echo -e ""
echo -e "    ***************************"
echo -e "    BOO TW Auto Revenue"
echo -e "    ***************************"
echo -e ""
echo -e "    press ENTER to use the boo.tw URL"
echo -e "    for example: http://boo.tw/K7bXS"
echo -e ""
echo -e "    0) Exit"
echo -e ""
read URL
[[ "$URL" ]]

if [ "$URL" == "0" ]; then
    exit
else
    echo $URL > /tmp/boo-url
    CODE=$(sed 's/.*\///g' /tmp/boo-url)
    rm -f /tmp/boo-url

    # rm -rf /tmp/boo.tw.html
    # rm -rf /tmp/b00.tw.html
    # rm -rf /tmp/boo-screenshot.png
    # rm -rf /tmp/b00-screenshot.png

    clear
    echo -e "    **** Start BOO TW Auto Revenue ****"
    echo -e ""
    start_fun
fi
}

######################################
check_tor_fun(){
if [ "$SYSTEMCTL" == "y" ]; then
    TOR_STATUS=$(sudo systemctl status tor | grep Active | awk '{print $2}')
    if [ "$TOR_STATUS" == "active" ]; then
        echo -e "    **** Tor Server Status Activated ****"
    else
        sudo systemctl start tor
        sleep 5
        # curl --socks5 127.0.0.1:9050 http://www.icanhazip.com
        GET_IP=$(phantomjs $TOR_PROXY /usr/share/bootw/ip.js | sed /TypeError/d)
        echo "****************************************************"
        echo " Start Tor Proxy...."
        echo " Current IP: $GET_IP"
        echo "****************************************************"
        echo ""
    fi
else
    TOR_STATUS=$(sudo service tor status | sed 's/.*tor/tor/g')
    if [ "$TOR_STATUS" == "tor is running" ]; then
        echo -e "    **** Tor Server Status Activated ****"
    else
        sudo service tor start
        sleep 5
        GET_IP=$(phantomjs $TOR_PROXY /usr/share/bootw/ip.js | sed /TypeError/d)
        echo "****************************************************"
        echo " Start Tor Proxy...."
        echo " Current IP: $GET_IP"
        echo "****************************************************"
        echo ""
    fi
fi

}

######################################
set_browse_fun(){
clear
echo -e ""
echo -e "    ***************************"
echo -e "    Settings User-Agent"
echo -e "    ***************************"
echo -e ""
echo -e "    1) Internet Explorer"
echo -e ""
echo -e "    2) Firefox"
echo -e ""
echo -e "    3) Safari"
echo -e ""
echo -e "    4) Chrome"
echo -e ""
echo -e "    5) Opera"
echo -e ""
read BRONUM
[[ "$BRONUM" ]]

if [ "$BRONUM" == "1" ]; then
    AGENT='Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko'
elif  [ "$BRONUM" == "2" ]; then
    AGENT='Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'
elif  [ "$BRONUM" == "3" ]; then
    AGENT='Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7'
elif  [ "$BRONUM" == "4" ]; then
    AGENT='Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36'
elif  [ "$BRONUM" == "5" ]; then
    AGENT='Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.60'
else
    AGENT='Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:58.0) Gecko/20100101 Firefox/58.0'
fi

}

check_systemd_fun
check_tor_fun
set_browse_fun
menu_fun
     
      

此文章於 2019-03-08 12:04 PM 被 拿破崙波拿巴 編輯.
舊 2019-03-08, 12:02 PM #1
回應時引用此文章
拿破崙波拿巴離線中  


回應


POPIN
主題工具

發表文章規則
不可以發起新主題
不可以回應主題
不可以上傳附加檔案
不可以編輯您的文章

vB 代碼打開
[IMG]代碼關閉
HTML代碼關閉



所有的時間均為GMT +8。 現在的時間是01:06 AM.


vBulletin Version 3.0.1
powered_by_vbulletin 2024。