├── README.md ├── Samsung_RCE └── Samsung_RCE--零组专版.jar ├── Seeyon_getshell └── Seeyon_getshell-零组专版.jar ├── iFofa └── ifofa.exe ├── 文库签到脚本 ├── auto-check.py └── 使用说明.txt ├── 说明 └── 锐捷_RCE └── 锐捷_RCE--零组专版.jar /README.md: -------------------------------------------------------------------------------- 1 | # Zero-box 2 | ## 几款小工具 3 | -------------------------------------------------------------------------------- /Samsung_RCE/Samsung_RCE--零组专版.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0-Xyao/Zero-box/0fd6c62e5e2544a94c71961b03ce7e94b7d16653/Samsung_RCE/Samsung_RCE--零组专版.jar -------------------------------------------------------------------------------- /Seeyon_getshell/Seeyon_getshell-零组专版.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0-Xyao/Zero-box/0fd6c62e5e2544a94c71961b03ce7e94b7d16653/Seeyon_getshell/Seeyon_getshell-零组专版.jar -------------------------------------------------------------------------------- /iFofa/ifofa.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0-Xyao/Zero-box/0fd6c62e5e2544a94c71961b03ce7e94b7d16653/iFofa/ifofa.exe -------------------------------------------------------------------------------- /文库签到脚本/auto-check.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding:utf-8 -*- 3 | 4 | import requests 5 | import base64 6 | import json 7 | 8 | def b64_image(image): 9 | ##base64转image存储成图片 10 | strs = image 11 | imgdata = base64.b64decode(strs) 12 | file = open('1.jpg', 'wb') 13 | file.write(imgdata) 14 | file.close() 15 | 16 | def get_code_uuid(): 17 | ##获取image、UUID值 18 | code_url = "https://wiki.0-sec.org/api/user/captchaImage" 19 | code_image = requests.get(code_url) 20 | json_data = json.loads(code_image.content) 21 | base64_image = json_data['data']['img'] 22 | base64_uuid = json_data['data']['uuid'] 23 | b64_image(base64_image) 24 | 25 | return base64_uuid 26 | 27 | def base64_api(): 28 | img_path = "./1.jpg" 29 | with open(img_path, 'rb') as f: 30 | base64_data = base64.b64encode(f.read()) 31 | b64 = base64_data.decode() 32 | data = {"username": "你的api用户名", "password": "你的api用户密码", "image": b64}##你的验证码api账户 33 | result = json.loads(requests.post("http://api.ttshitu.com/base64", json=data).text) 34 | if result['success']: 35 | return result["data"]["result"] 36 | else: 37 | print("验证码识别抽风了,再执行一遍吧") 38 | 39 | def login(uuid): 40 | username = "你的用户名" 41 | password = "你的用户密码" 42 | headers = {'Accept': 'application/json, text/plain, */*','User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','Content-Type': 'application/json;charset=UTF-8','Accept-Encoding': 'gzip, deflate','Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8'} 43 | url = "https://wiki.0-sec.org/api/user/login" 44 | login_data = {"account":username,"password":password,"code":base64_api(),"uuid":uuid}##字典 45 | data_json = json.dumps(login_data)##转json格式 46 | logins = requests.post(url=url,headers=headers,data=data_json) 47 | token = json.loads(logins.content)['data']['token'] 48 | 49 | return token 50 | 51 | def sign(token): 52 | headers = {'Zero-Token':token} 53 | url = "https://wiki.0-sec.org/api/profile" 54 | old_sign_data_json = requests.get(url=url,headers=headers) 55 | old_sign_data_credit = json.loads(old_sign_data_json.content)['data']['credit'] 56 | 57 | url1 = "https://wiki.0-sec.org/api/front/user/sign" 58 | requests.post(url=url1, headers=headers) 59 | 60 | new_sign_data_json = requests.get(url=url, headers=headers) 61 | new_sign_data_credit = json.loads(new_sign_data_json.content)['data']['credit'] 62 | 63 | if new_sign_data_credit > old_sign_data_credit: 64 | print("签到成功,您的当前积分为:",new_sign_data_credit) 65 | else: 66 | print("兄弟,你已经签到过了,你的积分为:",new_sign_data_credit) 67 | 68 | def main(): 69 | uuid = get_code_uuid() 70 | tokens = login(uuid) 71 | sign(tokens) 72 | 73 | if __name__ == '__main__': 74 | main() 75 | 76 | 77 | 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /文库签到脚本/使用说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0-Xyao/Zero-box/0fd6c62e5e2544a94c71961b03ce7e94b7d16653/文库签到脚本/使用说明.txt -------------------------------------------------------------------------------- /说明: -------------------------------------------------------------------------------- 1 | 该项目,放一些小工具 2 | -------------------------------------------------------------------------------- /锐捷_RCE/锐捷_RCE--零组专版.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0-Xyao/Zero-box/0fd6c62e5e2544a94c71961b03ce7e94b7d16653/锐捷_RCE/锐捷_RCE--零组专版.jar --------------------------------------------------------------------------------