全球主机交流论坛

标题: 大佬们 给新手个刷积分的脚本吧 [打印本页]

作者: wong    时间: 2019-4-9 12:37
标题: 大佬们 给新手个刷积分的脚本吧
查了好多个的**.php的脚本都不能用啊,求一个可用的
作者: xfspace    时间: 2019-4-9 12:42
新手要女子女子发帖
作者: 不认识    时间: 2019-4-9 12:42
刷论坛积分的脚本??
作者: 肤白貌美天然呆    时间: 2019-4-9 12:45
看我签名
作者: zdszf    时间: 2019-4-9 13:00
萌咔的python版本
作者: ttb525    时间: 2019-4-9 13:12
他要的不是手动的吧
作者: art    时间: 2019-4-9 13:12
提示: 作者被禁止或删除 内容自动屏蔽
作者: 蓝色文字    时间: 2019-4-9 13:26
过来瞧瞧,看有没有相关帖子。。。
作者: kejiweng0    时间: 2019-4-9 13:29
签名
作者: 慈善赌王    时间: 2019-4-9 13:34
像我这样,水水就赚一积分...
作者: lionchen    时间: 2019-4-9 13:38
楼主积分比俺高
作者: strwei    时间: 2019-4-9 13:48
年轻人,不要急躁,多水水帖子就有了
作者: shuangyeying    时间: 2019-4-9 14:00
其实水着水着就没意思了啦
作者: wong    时间: 2019-4-9 14:09
lionchen 发表于 2019-4-9 13:38
楼主积分比俺高


作者: wong    时间: 2019-4-9 14:11
zdszf 发表于 2019-4-9 13:00
萌咔的python版本

大佬 发一个呗
作者: wong    时间: 2019-4-9 14:13
kejiweng0 发表于 2019-4-9 13:29
签名

我想要个自动定时的那种
作者: yomkk    时间: 2019-4-9 14:15
我用的Python那个的脚本,google搜下就有
作者: huangfight    时间: 2019-4-9 14:17
书签法(来自论坛某个贴的回帖):

javascript: function mjj(){var nv_forum=document.getElementById("nv_forum");var start_num=20481;for(var i=0;i<20;i++){var img=document.createElement("img");img.src="http://443502.xyz/space-uid-"+start_num+".html";img.style.display='none';nv_forum.appendChild(img);start_num++}alert("刷分完毕")}mjj();

作者: 2手核弹专卖    时间: 2019-4-9 14:23
同新手,跟着楼主水
作者: 502    时间: 2019-4-9 14:26
https://gist.github.com/BFDZ/7c37b873953328d14293b5897fdd09ce
作者: 破论坛早晚药丸    时间: 2019-4-9 14:29
https://xpsss.com/1164.html
转自论坛某位大佬的
作者: 揽月    时间: 2019-4-9 14:33
看看这个,不需要用vps,白 piao 腾讯云,https://443502.xyz/thread-530902-1-1.html
作者: wong    时间: 2019-4-9 15:06
揽月 发表于 2019-4-9 14:33
看看这个,不需要用vps,白 piao 腾讯云,https://443502.xyz/thread-530902-1-1.html

谢谢大佬
作者: 绝望法师    时间: 2019-4-9 15:24
天天水帖就行
作者: jiasongji    时间: 2019-4-9 15:28
我也划划水
作者: lily0592    时间: 2019-4-9 15:36
多水水
作者: hyperxu    时间: 2019-4-9 15:46
看了眼自己的积分,我选择水一下
作者: 淡定定定哥    时间: 2019-4-9 16:21
比如看看我签名?PHP的
作者: zdszf    时间: 2019-4-9 18:10
wong 发表于 2019-4-9 14:11
大佬 发一个呗
  1. #!/usr/bin/env python
  2. # -*- coding: UTF-8 -*-

  3. from urllib import request
  4. from http import cookiejar
  5. import time

  6. account_dict = {
  7.     '0': {'username': 'xxxxx', 'password': 'xxxxx'},
  8.     '1': {'username': 'yyyyy', 'password': 'yyyyy'},
  9.     '2': {'username': 'zzzzz', 'password': 'zzzzz'},
  10. }

  11. def Login(URL, UserData):
  12.     __cookies = ''
  13.     __cookie = cookiejar.CookieJar()
  14.     __handler = request.HTTPCookieProcessor(__cookie)
  15.     __req = request.Request(URL, data=str(UserData).encode('utf-8'))
  16.     request.build_opener(__handler).open(__req)
  17.     for cookie in __cookie:
  18.         __cookies += cookie.name + '=' + cookie.value + ';'
  19.     return __cookies

  20. def GetPage(URL, Header_Cookies):
  21.     __Header = {'Cookie': str(Header_Cookies)}
  22.     __req = request.Request(URL, headers=__Header)
  23.     return request.urlopen(__req).read().decode('utf-8')

  24. def GetCredit(username, password):
  25.     Login_URL = 'https://443502.xyz/member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes&lssubmit=yes&inajax=1'
  26.     My_Home = 'https://443502.xyz/home.php?mod=spacecp&inajax=1'

  27.     user_data = 'username=' + str(username) + '&' + 'password=' + str(password)
  28.     My_Cookies = Login(Login_URL, user_data)

  29.     if '<td>' + str(username) + '</td>' not in GetPage(My_Home, My_Cookies):
  30.         isLogin = False
  31.         print('[%s] Login Fail!' % username)
  32.     else:
  33.         isLogin = True
  34.         print('[%s] Login Success!' % username)

  35.     if isLogin:
  36.         for __x in range(25397, 25410):
  37.             __url = 'https://443502.xyz/space-uid-{}.html'.format(__x)
  38.             time.sleep( 10 )
  39.             GetPage(__url, My_Cookies)

  40. if __name__ == '__main__':
  41.     for __i in range(0, len(account_dict)):
  42.         GetCredit(account_dict[str(__i)]['username'], account_dict[str(__i)]['password'])
复制代码


python3




欢迎光临 全球主机交流论坛 (https://443502.xyz/) Powered by Discuz! X3.4