RIZERR 1.4.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. rizerr-1.4.3/LICENSE +21 -0
  2. rizerr-1.4.3/MANIFEST.in +16 -0
  3. rizerr-1.4.3/PKG-INFO +263 -0
  4. rizerr-1.4.3/README.md +204 -0
  5. rizerr-1.4.3/RIZER/APIS/__init__.py +1 -0
  6. rizerr-1.4.3/RIZER/APIS/insta.py +140 -0
  7. rizerr-1.4.3/RIZER/Pb2/DEcwHisPErMsG_pb2.py +42 -0
  8. rizerr-1.4.3/RIZER/Pb2/Fo_pb2.py +28 -0
  9. rizerr-1.4.3/RIZER/Pb2/GenWhisperMsg_pb2.py +48 -0
  10. rizerr-1.4.3/RIZER/Pb2/MajoRLoGinrEq_pb2.py +28 -0
  11. rizerr-1.4.3/RIZER/Pb2/MajoRLoGinrEs_pb2.py +36 -0
  12. rizerr-1.4.3/RIZER/Pb2/PorTs_pb2.py +36 -0
  13. rizerr-1.4.3/RIZER/Pb2/Team_msg_pb2.py +48 -0
  14. rizerr-1.4.3/RIZER/Pb2/__init__.py +1 -0
  15. rizerr-1.4.3/RIZER/Pb2/sQ_pb2.py +38 -0
  16. rizerr-1.4.3/RIZER/accounts.json +7 -0
  17. rizerr-1.4.3/RIZER/main.py +6377 -0
  18. rizerr-1.4.3/RIZER/requirements.txt +16 -0
  19. rizerr-1.4.3/RIZER/rizer_runner.py +263 -0
  20. rizerr-1.4.3/RIZER/setup.py +93 -0
  21. rizerr-1.4.3/RIZER/tests/__init__.py +1 -0
  22. rizerr-1.4.3/RIZER/tests/test_runner.py +90 -0
  23. rizerr-1.4.3/RIZER/xC4.py +499 -0
  24. rizerr-1.4.3/RIZER/xHeaders.py +224 -0
  25. rizerr-1.4.3/RIZER/xKEys.py +31 -0
  26. rizerr-1.4.3/RIZERR.egg-info/PKG-INFO +263 -0
  27. rizerr-1.4.3/RIZERR.egg-info/SOURCES.txt +35 -0
  28. rizerr-1.4.3/RIZERR.egg-info/dependency_links.txt +1 -0
  29. rizerr-1.4.3/RIZERR.egg-info/entry_points.txt +2 -0
  30. rizerr-1.4.3/RIZERR.egg-info/not-zip-safe +1 -0
  31. rizerr-1.4.3/RIZERR.egg-info/requires.txt +4 -0
  32. rizerr-1.4.3/RIZERR.egg-info/top_level.txt +1 -0
  33. rizerr-1.4.3/pyproject.toml +67 -0
  34. rizerr-1.4.3/setup.cfg +4 -0
  35. rizerr-1.4.3/setup.py +93 -0
  36. rizerr-1.4.3/tests/test_runner.py +90 -0
rizerr-1.4.3/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 RIZER Team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,16 @@
1
+ # Include all necessary files
2
+ include RIZER/main.py
3
+ include RIZER/xC4.py
4
+ include RIZER/xHeaders.py
5
+ include RIZER/xKEYs.py
6
+ include RIZER/accounts.json
7
+ include RIZER/requirements.txt
8
+
9
+ # Include all files in APIS and Pb2 directories
10
+ recursive-include RIZER/APIS *
11
+ recursive-include RIZER/Pb2 *
12
+
13
+ # Exclude unnecessary files
14
+ global-exclude *.pyc
15
+ global-exclude __pycache__
16
+ global-exclude .DS_Store
rizerr-1.4.3/PKG-INFO ADDED
@@ -0,0 +1,263 @@
1
+ Metadata-Version: 2.4
2
+ Name: RIZERR
3
+ Version: 1.4.3
4
+ Summary: POWERD BY RIZER
5
+ Home-page: https://github.com/rizer/tool
6
+ Author: RIZER Team
7
+ Author-email: RIZER Team <support@rizer.tool>
8
+ License: MIT License
9
+
10
+ Copyright (c) 2024 RIZER Team
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in all
20
+ copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ SOFTWARE.
29
+
30
+ Project-URL: Homepage, https://github.com/rizer/tool
31
+ Project-URL: Repository, https://github.com/rizer/tool
32
+ Project-URL: Issues, https://github.com/rizer/tool/issues
33
+ Project-URL: Documentation, https://github.com/rizer/tool/wiki
34
+ Keywords: free fire,automation,gaming,tool,cli
35
+ Classifier: Development Status :: 4 - Beta
36
+ Classifier: Intended Audience :: End Users/Desktop
37
+ Classifier: License :: OSI Approved :: MIT License
38
+ Classifier: Programming Language :: Python :: 3
39
+ Classifier: Programming Language :: Python :: 3.7
40
+ Classifier: Programming Language :: Python :: 3.8
41
+ Classifier: Programming Language :: Python :: 3.9
42
+ Classifier: Programming Language :: Python :: 3.10
43
+ Classifier: Programming Language :: Python :: 3.11
44
+ Classifier: Programming Language :: Python :: 3.12
45
+ Classifier: Operating System :: OS Independent
46
+ Classifier: Environment :: Console
47
+ Classifier: Topic :: Utilities
48
+ Requires-Python: >=3.7
49
+ Description-Content-Type: text/markdown
50
+ License-File: LICENSE
51
+ Requires-Dist: requests
52
+ Requires-Dist: protobuf
53
+ Requires-Dist: colorama
54
+ Requires-Dist: pycryptodome
55
+ Dynamic: author
56
+ Dynamic: home-page
57
+ Dynamic: license-file
58
+ Dynamic: requires-python
59
+
60
+ # RIZER
61
+ RIZER TCP
62
+
63
+ ## 📁 Package Structure
64
+
65
+ ```
66
+ RIZER/
67
+ ├── RIZER/
68
+ │ ├── __init__.py
69
+ │ ├── rizer_runner.py # Main launcher
70
+ │ ├── main.py # Your main.py (untouched except UID/PW line)
71
+ │ ├── xC4.py
72
+ │ ├── xHeaders.py
73
+ │ ├── xKEYs.py
74
+ │ ├── accounts.json
75
+ │ ├── APIS/ # API modules
76
+ │ └── Pb2/ # Protobuf modules
77
+ ├── setup.py # PyPI build config
78
+ ├── MANIFEST.in # Package manifest
79
+ ├── requirements.txt # Dependencies
80
+ └── README.md # This file
81
+ ```
82
+
83
+ ## 🚀 Features
84
+
85
+ - ✅ **main.py untouched** - Only UID/Password line modified (~line 6272)
86
+ - ✅ **Password visible** during input (no masking)
87
+ - ✅ **ASCII + Color** logo at startup
88
+ - ✅ **Clean terminal** - Old text cleared, only logo + prompts visible
89
+ - ✅ **Logs preserved** - main.py logs unchanged
90
+ - ✅ **Ctrl+C safe exit** - Clean shutdown message
91
+ - ✅ **Relative imports fixed** - APIS/ and Pb2/ auto-load
92
+ - ✅ **Multi-user support** - Each input isolated
93
+ - ✅ **PyPI ready** - Easy install and upgrade
94
+
95
+ ## 📦 Build & Install
96
+
97
+ ### 1. Prepare Your Files
98
+
99
+ Replace the placeholder files with your actual files:
100
+
101
+ ```bash
102
+ # Copy your actual main.py (must contain: Uid , Pw = 'uiddd','passwordd')
103
+ cp /path/to/your/main.py RIZER/RIZER/main.py
104
+
105
+ # Copy other required files
106
+ cp /path/to/your/xC4.py RIZER/RIZER/
107
+ cp /path/to/your/xHeaders.py RIZER/RIZER/
108
+ cp /path/to/your/xKEYs.py RIZER/RIZER/
109
+ cp /path/to/your/accounts.json RIZER/RIZER/
110
+
111
+ # Copy directories
112
+ cp -r /path/to/your/APIS/* RIZER/RIZER/APIS/
113
+ cp -r /path/to/your/Pb2/* RIZER/RIZER/Pb2/
114
+ ```
115
+
116
+ ### 2. Build Package
117
+
118
+ ```bash
119
+ cd RIZER
120
+
121
+ # Install build tools
122
+ pip install setuptools wheel twine
123
+
124
+ # Build package
125
+ python setup.py sdist bdist_wheel
126
+ ```
127
+
128
+ ### 3. Upload to PyPI
129
+
130
+ ```bash
131
+ # Upload to PyPI (requires account)
132
+ twine upload dist/*
133
+
134
+ # Or upload to Test PyPI first
135
+ twine upload --repository testpypi dist/*
136
+ ```
137
+
138
+ ### 4. Install & Use
139
+
140
+ ```bash
141
+ # Install from PyPI
142
+ pip install RIZER
143
+
144
+ # Or upgrade
145
+ pip install --upgrade RIZER
146
+
147
+ # Run
148
+ RIZER
149
+ ```
150
+
151
+ ## 🖥️ Usage
152
+
153
+ After installation, simply type in terminal:
154
+
155
+ ```bash
156
+ RIZER
157
+ ```
158
+
159
+ You will see:
160
+
161
+ ```
162
+ ██████╗░██╗███████╗███████╗██████╗░
163
+ ██╔══██╗██║╚════██║██╔════╝██╔══██╗
164
+ ██████╔╝██║░░███╔═╝█████╗░░██████╔╝
165
+ ██╔══██╗██║██╔══╝░░██╔══╝░░██╔══██╗
166
+ ██║░░██║██║███████╗███████╗██║░░██║
167
+ ╚═╝░░╚═╝╚═╝╚══════╝╚══════╝╚═╝░░╚═╝
168
+ RIZER v1.4.3
169
+ RIZER TCP
170
+
171
+ ╔════════════════════════════════════╗
172
+ ║ Account Configuration ║
173
+ ╚════════════════════════════════════╝
174
+
175
+ Enter UID: 12345678
176
+ Enter PASS: yourpassword
177
+
178
+ ⚙️ Updating credentials...
179
+ ✅ Credentials updated successfully!
180
+
181
+ 🚀 Launching main.py...
182
+
183
+ [main.py output appears here...]
184
+ ```
185
+
186
+ ## ⚙️ How It Works
187
+
188
+ 1. **Clear Screen** - Terminal cleared for clean look
189
+ 2. **ASCII Logo** - Colorful RIZER logo displayed
190
+ 3. **Input Prompts** - UID and Password entered (visible)
191
+ 4. **Pattern Match** - Finds line: `Uid , Pw = 'uiddd','passwordd'`
192
+ 5. **Replace** - Updates with user input, preserves formatting
193
+ 6. **Execute** - Runs main.py with new credentials
194
+ 7. **Reset** - Restores default values after execution
195
+
196
+ ## 🔐 SAFETY & DISCLAIMER NOTICE
197
+
198
+ NOTE:
199
+ ✅ THIS TOOL DOES NOT COLLECT, STORE, LOG, OR TRANSMIT ANY USER UID OR PASSWORD.
200
+ ✅ RIZERx CONNECTS ONLY TO A BOT USING GUEST UID AND TEMPORARY PASSWORD INPUT FOR SESSION PURPOSES ONLY.
201
+ ✅ NO USER DATA IS SAVED, SHARED, OR MISUSED IN ANY FORM.
202
+ ✅ THIS TOOL DOES NOT HARM ANY USER, DEVICE, ACCOUNT, OR GAME DATA.
203
+ ✅ THIS IS A SAFE, CLEAN, AND WORKING TOOL.
204
+
205
+ ⚠️ IMPORTANT:
206
+ ❌ THE DEVELOPER OF THIS TOOL DOES NOT SUPPORT, PROMOTE, OR ENCOURAGE ANY TYPE OF HACKING, SPAMMING, EXPLOITING, OR ILLEGAL ACTIVITY.
207
+ 📚 THIS PROJECT IS DEVELOPED STRICTLY FOR **EDUCATIONAL AND LEARNING PURPOSES ONLY**.
208
+
209
+ 📜 COMPLIANCE:
210
+ ✔️ THIS PROJECT STRICTLY RESPECTS AND FOLLOWS
211
+ - PyPI RULES
212
+ - Termux POLICIES
213
+ - OPEN-SOURCE ETHICS
214
+
215
+ 🚫 ANY MISUSE OF THIS TOOL AND THIS TOOL ALSO DOSENT COMMIT ANY MISUSE IS NOT THE RESPONSIBILITY OF THE DEVELOPER.
216
+ ## 📝 Notes
217
+
218
+ - main.py must contain the exact pattern: `Uid , Pw = 'uiddd','passwordd'`
219
+ - Single quotes preferred but double quotes also supported
220
+ - All other lines in main.py remain untouched
221
+ - Each user runs with their own credentials
222
+ - Logs from main.py displayed in real-time
223
+ NOTE:
224
+ ✅ THIS TOOL DOES NOT COLLECT, STORE, LOG, OR TRANSMIT ANY USER UID OR PASSWORD.
225
+ ✅ RIZERx CONNECTS ONLY TO A BOT USING GUEST UID AND TEMPORARY PASSWORD INPUT FOR SESSION PURPOSES ONLY.
226
+ ✅ NO USER DATA IS SAVED, SHARED, OR MISUSED IN ANY FORM.
227
+ ✅ THIS TOOL DOES NOT HARM ANY USER, DEVICE, ACCOUNT, OR GAME DATA.
228
+ ✅ THIS IS A SAFE, CLEAN, AND WORKING TOOL.
229
+
230
+ ⚠️ IMPORTANT:
231
+ ❌ THE DEVELOPER OF THIS TOOL DOES NOT SUPPORT, PROMOTE, OR ENCOURAGE ANY TYPE OF HACKING, SPAMMING, EXPLOITING, OR ILLEGAL ACTIVITY.
232
+ 📚 THIS PROJECT IS DEVELOPED STRICTLY FOR **EDUCATIONAL AND LEARNING PURPOSES ONLY**.
233
+
234
+ 📜 COMPLIANCE:
235
+ ✔️ THIS PROJECT STRICTLY RESPECTS AND FOLLOWS
236
+ - PyPI RULES
237
+ - Termux POLICIES
238
+ - OPEN-SOURCE ETHICS
239
+
240
+ 🚫 ANY MISUSE OF THIS TOOL IS NOT THE RESPONSIBILITY OF THE DEVELOPER.
241
+
242
+ ## 🔧 Troubleshooting
243
+
244
+ **Import errors?**
245
+ - rizer_runner.py automatically fixes Python path
246
+ - APIS/ and Pb2/ added to sys.path
247
+
248
+ **main.py not found?**
249
+ - Ensure main.py is in the same directory as rizer_runner.py
250
+ - Check file permissions
251
+
252
+ **Pattern not found?**
253
+ - Verify main.py contains: `Uid , Pw = 'uiddd','passwordd'`
254
+ - Check for extra spaces or different quote types
255
+
256
+ ## 📄 License
257
+
258
+ MIT License - See LICENSE file
259
+
260
+ ## 🤝 Support
261
+
262
+ For support, contact: support@rizer.tool
263
+ NOTE: IT DOSENT COLLECT OR HARM YOUR UID AND PASSWORD...✅ IT IS A SAFE TOOL THAT CONNECTS TO A BOT WITH GUEST PASSWORD AND UID.. ALSO IT DOSENT HARMS ANY USERS INFO OR STORE ANY DATA.. IT IS FULLY SAFE TO USE AND FULLY WORKING. THE DEVLOPER OF THIS TOOL DOSENT SUPPORT ANY TYPE OF HACKING OR SPAMMING TOOLS IN THIS FILE ✅ ALSO IT WAS MADE FULLY FOR AN EDUCATIONAL PURPOSES AND NOT FOR ANY HACKING OR HARMING✅ I RESPECT AND FOLLOW THE pypi,termux rules STRICTLY...
rizerr-1.4.3/README.md ADDED
@@ -0,0 +1,204 @@
1
+ # RIZER
2
+ RIZER TCP
3
+
4
+ ## 📁 Package Structure
5
+
6
+ ```
7
+ RIZER/
8
+ ├── RIZER/
9
+ │ ├── __init__.py
10
+ │ ├── rizer_runner.py # Main launcher
11
+ │ ├── main.py # Your main.py (untouched except UID/PW line)
12
+ │ ├── xC4.py
13
+ │ ├── xHeaders.py
14
+ │ ├── xKEYs.py
15
+ │ ├── accounts.json
16
+ │ ├── APIS/ # API modules
17
+ │ └── Pb2/ # Protobuf modules
18
+ ├── setup.py # PyPI build config
19
+ ├── MANIFEST.in # Package manifest
20
+ ├── requirements.txt # Dependencies
21
+ └── README.md # This file
22
+ ```
23
+
24
+ ## 🚀 Features
25
+
26
+ - ✅ **main.py untouched** - Only UID/Password line modified (~line 6272)
27
+ - ✅ **Password visible** during input (no masking)
28
+ - ✅ **ASCII + Color** logo at startup
29
+ - ✅ **Clean terminal** - Old text cleared, only logo + prompts visible
30
+ - ✅ **Logs preserved** - main.py logs unchanged
31
+ - ✅ **Ctrl+C safe exit** - Clean shutdown message
32
+ - ✅ **Relative imports fixed** - APIS/ and Pb2/ auto-load
33
+ - ✅ **Multi-user support** - Each input isolated
34
+ - ✅ **PyPI ready** - Easy install and upgrade
35
+
36
+ ## 📦 Build & Install
37
+
38
+ ### 1. Prepare Your Files
39
+
40
+ Replace the placeholder files with your actual files:
41
+
42
+ ```bash
43
+ # Copy your actual main.py (must contain: Uid , Pw = 'uiddd','passwordd')
44
+ cp /path/to/your/main.py RIZER/RIZER/main.py
45
+
46
+ # Copy other required files
47
+ cp /path/to/your/xC4.py RIZER/RIZER/
48
+ cp /path/to/your/xHeaders.py RIZER/RIZER/
49
+ cp /path/to/your/xKEYs.py RIZER/RIZER/
50
+ cp /path/to/your/accounts.json RIZER/RIZER/
51
+
52
+ # Copy directories
53
+ cp -r /path/to/your/APIS/* RIZER/RIZER/APIS/
54
+ cp -r /path/to/your/Pb2/* RIZER/RIZER/Pb2/
55
+ ```
56
+
57
+ ### 2. Build Package
58
+
59
+ ```bash
60
+ cd RIZER
61
+
62
+ # Install build tools
63
+ pip install setuptools wheel twine
64
+
65
+ # Build package
66
+ python setup.py sdist bdist_wheel
67
+ ```
68
+
69
+ ### 3. Upload to PyPI
70
+
71
+ ```bash
72
+ # Upload to PyPI (requires account)
73
+ twine upload dist/*
74
+
75
+ # Or upload to Test PyPI first
76
+ twine upload --repository testpypi dist/*
77
+ ```
78
+
79
+ ### 4. Install & Use
80
+
81
+ ```bash
82
+ # Install from PyPI
83
+ pip install RIZER
84
+
85
+ # Or upgrade
86
+ pip install --upgrade RIZER
87
+
88
+ # Run
89
+ RIZER
90
+ ```
91
+
92
+ ## 🖥️ Usage
93
+
94
+ After installation, simply type in terminal:
95
+
96
+ ```bash
97
+ RIZER
98
+ ```
99
+
100
+ You will see:
101
+
102
+ ```
103
+ ██████╗░██╗███████╗███████╗██████╗░
104
+ ██╔══██╗██║╚════██║██╔════╝██╔══██╗
105
+ ██████╔╝██║░░███╔═╝█████╗░░██████╔╝
106
+ ██╔══██╗██║██╔══╝░░██╔══╝░░██╔══██╗
107
+ ██║░░██║██║███████╗███████╗██║░░██║
108
+ ╚═╝░░╚═╝╚═╝╚══════╝╚══════╝╚═╝░░╚═╝
109
+ RIZER v1.4.3
110
+ RIZER TCP
111
+
112
+ ╔════════════════════════════════════╗
113
+ ║ Account Configuration ║
114
+ ╚════════════════════════════════════╝
115
+
116
+ Enter UID: 12345678
117
+ Enter PASS: yourpassword
118
+
119
+ ⚙️ Updating credentials...
120
+ ✅ Credentials updated successfully!
121
+
122
+ 🚀 Launching main.py...
123
+
124
+ [main.py output appears here...]
125
+ ```
126
+
127
+ ## ⚙️ How It Works
128
+
129
+ 1. **Clear Screen** - Terminal cleared for clean look
130
+ 2. **ASCII Logo** - Colorful RIZER logo displayed
131
+ 3. **Input Prompts** - UID and Password entered (visible)
132
+ 4. **Pattern Match** - Finds line: `Uid , Pw = 'uiddd','passwordd'`
133
+ 5. **Replace** - Updates with user input, preserves formatting
134
+ 6. **Execute** - Runs main.py with new credentials
135
+ 7. **Reset** - Restores default values after execution
136
+
137
+ ## 🔐 SAFETY & DISCLAIMER NOTICE
138
+
139
+ NOTE:
140
+ ✅ THIS TOOL DOES NOT COLLECT, STORE, LOG, OR TRANSMIT ANY USER UID OR PASSWORD.
141
+ ✅ RIZERx CONNECTS ONLY TO A BOT USING GUEST UID AND TEMPORARY PASSWORD INPUT FOR SESSION PURPOSES ONLY.
142
+ ✅ NO USER DATA IS SAVED, SHARED, OR MISUSED IN ANY FORM.
143
+ ✅ THIS TOOL DOES NOT HARM ANY USER, DEVICE, ACCOUNT, OR GAME DATA.
144
+ ✅ THIS IS A SAFE, CLEAN, AND WORKING TOOL.
145
+
146
+ ⚠️ IMPORTANT:
147
+ ❌ THE DEVELOPER OF THIS TOOL DOES NOT SUPPORT, PROMOTE, OR ENCOURAGE ANY TYPE OF HACKING, SPAMMING, EXPLOITING, OR ILLEGAL ACTIVITY.
148
+ 📚 THIS PROJECT IS DEVELOPED STRICTLY FOR **EDUCATIONAL AND LEARNING PURPOSES ONLY**.
149
+
150
+ 📜 COMPLIANCE:
151
+ ✔️ THIS PROJECT STRICTLY RESPECTS AND FOLLOWS
152
+ - PyPI RULES
153
+ - Termux POLICIES
154
+ - OPEN-SOURCE ETHICS
155
+
156
+ 🚫 ANY MISUSE OF THIS TOOL AND THIS TOOL ALSO DOSENT COMMIT ANY MISUSE IS NOT THE RESPONSIBILITY OF THE DEVELOPER.
157
+ ## 📝 Notes
158
+
159
+ - main.py must contain the exact pattern: `Uid , Pw = 'uiddd','passwordd'`
160
+ - Single quotes preferred but double quotes also supported
161
+ - All other lines in main.py remain untouched
162
+ - Each user runs with their own credentials
163
+ - Logs from main.py displayed in real-time
164
+ NOTE:
165
+ ✅ THIS TOOL DOES NOT COLLECT, STORE, LOG, OR TRANSMIT ANY USER UID OR PASSWORD.
166
+ ✅ RIZERx CONNECTS ONLY TO A BOT USING GUEST UID AND TEMPORARY PASSWORD INPUT FOR SESSION PURPOSES ONLY.
167
+ ✅ NO USER DATA IS SAVED, SHARED, OR MISUSED IN ANY FORM.
168
+ ✅ THIS TOOL DOES NOT HARM ANY USER, DEVICE, ACCOUNT, OR GAME DATA.
169
+ ✅ THIS IS A SAFE, CLEAN, AND WORKING TOOL.
170
+
171
+ ⚠️ IMPORTANT:
172
+ ❌ THE DEVELOPER OF THIS TOOL DOES NOT SUPPORT, PROMOTE, OR ENCOURAGE ANY TYPE OF HACKING, SPAMMING, EXPLOITING, OR ILLEGAL ACTIVITY.
173
+ 📚 THIS PROJECT IS DEVELOPED STRICTLY FOR **EDUCATIONAL AND LEARNING PURPOSES ONLY**.
174
+
175
+ 📜 COMPLIANCE:
176
+ ✔️ THIS PROJECT STRICTLY RESPECTS AND FOLLOWS
177
+ - PyPI RULES
178
+ - Termux POLICIES
179
+ - OPEN-SOURCE ETHICS
180
+
181
+ 🚫 ANY MISUSE OF THIS TOOL IS NOT THE RESPONSIBILITY OF THE DEVELOPER.
182
+
183
+ ## 🔧 Troubleshooting
184
+
185
+ **Import errors?**
186
+ - rizer_runner.py automatically fixes Python path
187
+ - APIS/ and Pb2/ added to sys.path
188
+
189
+ **main.py not found?**
190
+ - Ensure main.py is in the same directory as rizer_runner.py
191
+ - Check file permissions
192
+
193
+ **Pattern not found?**
194
+ - Verify main.py contains: `Uid , Pw = 'uiddd','passwordd'`
195
+ - Check for extra spaces or different quote types
196
+
197
+ ## 📄 License
198
+
199
+ MIT License - See LICENSE file
200
+
201
+ ## 🤝 Support
202
+
203
+ For support, contact: support@rizer.tool
204
+ NOTE: IT DOSENT COLLECT OR HARM YOUR UID AND PASSWORD...✅ IT IS A SAFE TOOL THAT CONNECTS TO A BOT WITH GUEST PASSWORD AND UID.. ALSO IT DOSENT HARMS ANY USERS INFO OR STORE ANY DATA.. IT IS FULLY SAFE TO USE AND FULLY WORKING. THE DEVLOPER OF THIS TOOL DOSENT SUPPORT ANY TYPE OF HACKING OR SPAMMING TOOLS IN THIS FILE ✅ ALSO IT WAS MADE FULLY FOR AN EDUCATIONAL PURPOSES AND NOT FOR ANY HACKING OR HARMING✅ I RESPECT AND FOLLOW THE pypi,termux rules STRICTLY...
@@ -0,0 +1 @@
1
+ # Auto __init__.py created
@@ -0,0 +1,140 @@
1
+ # ------------------------------------------------------------
2
+ # Instagram Info API — Credit: Anmol (@FOREVER_HIDDEN)
3
+ # JOIN : @SOURCE_SUTRA FOR MORE SRC | API | BOT CODE | METHOD | 🛐
4
+ # Purpose : Fetch profile & recent media (public + optional session-based)
5
+ # Note : THIS CODE MADE BY ANMOL @FOREVER_HIDDEN (GIVE CREDIT OTHERWISE EVERYONE FUCK YOU AT 300 KM SPEED)
6
+ # Usage : /api/insta/<username>?
7
+ # License : Personal / internal use only — retain credit when sharing
8
+ # ------------------------------------------------------------
9
+
10
+ from flask import Flask, jsonify, request
11
+ import requests
12
+ import time
13
+ import socket
14
+ from functools import lru_cache
15
+
16
+ app = Flask(__name__)
17
+
18
+ # DONT REMOVE THIS BRUH
19
+ @lru_cache(maxsize=1024)
20
+ def fetch_instagram_profile(username, proxy=None):
21
+ url = f"https://i.instagram.com/api/v1/users/web_profile_info/?username={username}"
22
+ headers = {
23
+ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) "
24
+ "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36",
25
+ "Accept": "application/json, text/plain, */*",
26
+ "x-ig-app-id": "936619743392459",
27
+ "Referer": f"https://www.instagram.com/{username}/",
28
+ }
29
+ session = requests.Session()
30
+ proxies = {"http": proxy, "https": proxy} if proxy else None
31
+
32
+ backoff = 1
33
+ for attempt in range(4):
34
+ try:
35
+ resp = session.get(url, headers=headers, timeout=10, proxies=proxies)
36
+ if resp.status_code == 200:
37
+ return resp.json()
38
+ elif resp.status_code in (429, 403):
39
+ # rate limited or blocked
40
+ time.sleep(backoff)
41
+ backoff *= 2
42
+ elif resp.status_code == 404:
43
+ return {"error": "not_found", "status_code": 404}
44
+ else:
45
+ return {
46
+ "error": "http_error",
47
+ "status_code": resp.status_code,
48
+ "body": resp.text[:500],
49
+ }
50
+ except requests.RequestException:
51
+ time.sleep(backoff)
52
+ backoff *= 2
53
+ return {"error": "request_failed"}
54
+
55
+
56
+ @app.route("/api/insta/<username>", methods=["GET"])
57
+ def insta_info(username):
58
+ proxy = request.args.get("proxy") # optional proxy
59
+ data = fetch_instagram_profile(username, proxy=proxy)
60
+ if data is None:
61
+ return jsonify({"error": "no_response"}), 502
62
+
63
+ if "error" in data:
64
+ return jsonify(data), (data.get("status_code") or 400)
65
+
66
+ try:
67
+ user = data.get("data", {}).get("user") or data.get("user") or data.get("data")
68
+ if not user:
69
+ return jsonify({"raw": data})
70
+
71
+ out = {
72
+ "id": user.get("id"),
73
+ "username": user.get("username"),
74
+ "full_name": user.get("full_name"),
75
+ "biography": user.get("biography"),
76
+ "is_private": user.get("is_private"),
77
+ "is_verified": user.get("is_verified"),
78
+ "profile_pic_url": user.get("profile_pic_url_hd")
79
+ or user.get("profile_pic_url"),
80
+ "followers_count": (
81
+ user.get("edge_followed_by", {}).get("count")
82
+ or user.get("followers_count")
83
+ ),
84
+ "following_count": (
85
+ user.get("edge_follow", {}).get("count")
86
+ or user.get("following_count")
87
+ ),
88
+ "media_count": (
89
+ user.get("media_count")
90
+ or user.get("edge_owner_to_timeline_media", {}).get("count")
91
+ ),
92
+ "recent_media": [],
93
+ }
94
+
95
+ media = (
96
+ user.get("edge_owner_to_timeline_media")
97
+ or user.get("media")
98
+ or {}
99
+ )
100
+ edges = media.get("edges") or media.get("items") or []
101
+ for e in edges[:8]:
102
+ node = e.get("node") if isinstance(e, dict) and e.get("node") else e
103
+ if not node:
104
+ continue
105
+ caption = None
106
+ if node.get("edge_media_to_caption"):
107
+ edges_caption = node["edge_media_to_caption"].get("edges") or []
108
+ if edges_caption and "node" in edges_caption[0]:
109
+ caption = edges_caption[0]["node"].get("text")
110
+ else:
111
+ caption = node.get("caption")
112
+
113
+ out["recent_media"].append({
114
+ "id": node.get("id"),
115
+ "shortcode": node.get("shortcode"),
116
+ "display_url": node.get("display_url")
117
+ or node.get("display_src"),
118
+ "taken_at": node.get("taken_at_timestamp")
119
+ or node.get("taken_at"),
120
+ "caption": caption,
121
+ })
122
+ return jsonify(out)
123
+ except Exception as exc:
124
+ return jsonify({
125
+ "error": "parse_error",
126
+ "details": str(exc),
127
+ "raw": data
128
+ }), 500
129
+
130
+ def find_free_port(start=8080, end=65535):
131
+ for port in range(start, end):
132
+ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
133
+ if s.connect_ex(('0.0.0.0', port)) != 0:
134
+ return port
135
+ raise RuntimeError("No free port available")
136
+
137
+ if __name__ == "__main__":
138
+ port = find_free_port()
139
+ print(f"Starting server on port {port}")
140
+ app.run(host="0.0.0.0", port=port, debug=False)
@@ -0,0 +1,42 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: DecodeWhisperMsg.proto
5
+ # Protobuf Python Version: 6.30.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 30,
16
+ 0,
17
+ '',
18
+ 'DecodeWhisperMsg.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16\x44\x65\x63odeWhisperMsg.proto\"\xa8\x02\n\rDecodeWhisper\x12$\n\x04\x44\x61ta\x18\x05 \x01(\x0b\x32\x16.DecodeWhisper.Nested1\x1a\xf0\x01\n\x07Nested1\x12\x0b\n\x03uid\x18\x01 \x01(\x04\x12\x0f\n\x07\x43hat_ID\x18\x02 \x01(\x04\x12\x11\n\tchat_type\x18\x03 \x01(\x05\x12\x0b\n\x03msg\x18\x04 \x01(\t\x12/\n\x07\x44\x65tails\x18\t \x01(\x0b\x32\x1e.DecodeWhisper.Nested1.Nested2\x12\x35\n\rPlatform_Info\x18\r \x01(\x0b\x32\x1e.DecodeWhisper.Nested1.Nested3\x1a\x1b\n\x07Nested2\x12\x10\n\x08Nickname\x18\x01 \x01(\t\x1a\"\n\x07Nested3\x12\x17\n\x0fprofile_pic_url\x18\x01 \x01(\tb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'DecodeWhisperMsg_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_DECODEWHISPER']._serialized_start=27
35
+ _globals['_DECODEWHISPER']._serialized_end=323
36
+ _globals['_DECODEWHISPER_NESTED1']._serialized_start=83
37
+ _globals['_DECODEWHISPER_NESTED1']._serialized_end=323
38
+ _globals['_DECODEWHISPER_NESTED1_NESTED2']._serialized_start=260
39
+ _globals['_DECODEWHISPER_NESTED1_NESTED2']._serialized_end=287
40
+ _globals['_DECODEWHISPER_NESTED1_NESTED3']._serialized_start=289
41
+ _globals['_DECODEWHISPER_NESTED1_NESTED3']._serialized_end=323
42
+ # @@protoc_insertion_point(module_scope)