├── rxsuasimple.so ├── random-ua.py ├── .gitignore ├── LICENSE └── README.md /rxsuasimple.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINOD-XD/Random-UserAgent/HEAD/rxsuasimple.so -------------------------------------------------------------------------------- /random-ua.py: -------------------------------------------------------------------------------- 1 | import os 2 | print(" Update Checking") 3 | os.system("git pull") 4 | 5 | 6 | import rxsuasimple 7 | rxsuasimple.server().main() 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Gradle files 2 | .gradle/ 3 | build/ 4 | 5 | # Local configuration file (sdk path, etc) 6 | local.properties 7 | 8 | # Log/OS Files 9 | *.log 10 | 11 | # Android Studio generated files and folders 12 | captures/ 13 | .externalNativeBuild/ 14 | .cxx/ 15 | *.apk 16 | output.json 17 | 18 | # IntelliJ 19 | *.iml 20 | .idea/ 21 | misc.xml 22 | deploymentTargetDropDown.xml 23 | render.experimental.xml 24 | 25 | # Keystore files 26 | *.jks 27 | *.keystore 28 | 29 | # Google Services (e.g. APIs or Firebase) 30 | google-services.json 31 | 32 | # Android Profiling 33 | *.hprof 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 REYAD X SHIPU 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. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### What is User-Agent ? 2 | 3 | A user agent is a relatively short bit of text that (attempts to) describe the Software/Browser (the "Agent") that is making the request to a website. Web browsers include the user agent string in the requests they make to websites. The User Agent often includes descriptions of the Operating System and Device Type that the Browser/Agent is running on. 4 | 5 | ### This Random-UserAgent Tool Is For Facebook Clonning Update. 6 | 7 | ### How to install ? 8 | 9 | ``` 10 | 11 | pkg update 12 | 13 | ``` 14 | 15 | ``` 16 | 17 | pkg upgrade 18 | 19 | ``` 20 | 21 | ``` 22 | 23 | pkg install git -y 24 | 25 | ``` 26 | 27 | ``` 28 | 29 | git clone --depth 1 https://github.com/BINOD-XD/Random-UserAgent 30 | 31 | ``` 32 | 33 | ### How to use User-Agent 34 | 35 | ``` 36 | 37 | cd Random-UserAgent 38 | 39 | ``` 40 | 41 | ``` 42 | 43 | ls 44 | 45 | ``` 46 | 47 | ``` 48 | 49 | python random-ua.py 50 | 51 | ``` 52 | 53 | # Acknowledgements 54 | 55 | ## Special Thanks 👇 56 | 57 | * Reyad X Shipu 58 | 59 | ## Reyad--[](https://www.facebook.com/reyadbross?mibextid=ZbWKwL) 60 | 61 | ## Shipu--[](https://wa.me/+8801989861704) 62 | 63 | ## Thanks For Using This Tool 😘 😍 64 | --------------------------------------------------------------------------------