├── LICENSE ├── README.md ├── admin.py ├── binary values └── binary.txt ├── country codes └── area codes.txt └── temp.txt /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WH-ADMIN-Hack 2 | # 3 | ## a very powerfull Whatsapp Admin hijack script. This Tool For Educational purpose Only. ! 4 | 5 | 6 |

WH-ADMIN-Hack

7 |

A Powerful, Smart And Simple Script

8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | # Support 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | # Method 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | # Install for Termux 46 | 47 | Simply clone the repository and run the main file: 48 | ```sh 49 | pkg install python 50 | 51 | pkg install wget 52 | 53 | pkg install curl 54 | 55 | pkg install git 56 | 57 | # Install Git . 58 | git clone https://github.com/HackerR023/WH-ADMIN-Hack 59 | 60 | # Open Git Cloned File 61 | cd WH-ADMIN-Hack 62 | 63 | # Run 64 | python admin.py 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | ``` 73 | 74 | 75 | 76 | 77 | 78 | # Licence 79 | [![GNU GPLv3 Image](https://www.gnu.org/graphics/gplv3-127x51.png)](http://www.gnu.org/licenses/gpl-3.0.en.html) 80 | 81 | FridayUserbot is Free Software: You can use, study share and improve it at your 82 | will. Specifically you can redistribute and/or modify it under the terms of the 83 | [GNU General Public License](https://www.gnu.org/licenses/gpl.html) as 84 | published by the Free Software Foundation, either version 3 of the License, or 85 | (at your option) any later version. 86 | -------------------------------------------------------------------------------- /binary values/binary.txt: -------------------------------------------------------------------------------- 1 | # binary values for generating target mobile numbers 2 | 3 | bin ={0:0000 , 1:0001 , 2:0010 , 3:0011 , 4:0100 , 5:0101 , 6:0110 , 7:0111 , 8:1000 , 9:1001} 4 | 5 | target{} 6 | admin{} 7 | data{} 8 | values{} 9 | -------------------------------------------------------------------------------- /country codes/area codes.txt: -------------------------------------------------------------------------------- 1 | Afghanistan AF AFG 004 2 | ALA Aland Islands AX ALA 248 3 | Albania AL ALB 008 4 | Algeria DZ DZA 012 5 | American Samoa AS ASM 016 6 | Andorra AD AND 020 7 | Angola AO AGO 024 8 | Anguilla AI AIA 660 9 | Antarctica AQ ATA 010 10 | Antigua and Barbuda AG ATG 028 11 | Argentina AR ARG 032 12 | Armenia AM ARM 051 13 | Aruba AW ABW 533 14 | Australia AU AUS 036 15 | Austria AT AUT 040 16 | Azerbaijan AZ AZE 031 17 | 18 | 19 | B 20 | Bahamas BS BHS 044 21 | Bahrain BH BHR 048 22 | Bangladesh BD BGD 050 23 | Barbados BB BRB 052 24 | Belarus BY BLR 112 25 | Belgium BE BEL 056 26 | Belize BZ BLZ 084 27 | Benin BJ BEN 204 28 | Bermuda BM BMU 060 29 | Bhutan BT BTN 064 30 | Bolivia BO BOL 068 31 | Bosnia and Herzegovina BA BIH 070 32 | Botswana BW BWA 072 33 | Bouvet Island BV BVT 074 34 | Brazil BR BRA 076 35 | British Virgin Islands VG VGB 092 36 | British Indian Ocean Territory IO IOT 086 37 | Brunei Darussalam BN BRN 096 38 | Bulgaria BG BGR 100 39 | Burkina Faso BF BFA 854 40 | Burundi BI BDI 108 41 | 42 | C 43 | Cambodia KH KHM 116 44 | Cameroon CM CMR 120 45 | Canada CA CAN 124 46 | Cape Verde CV CPV 132 47 | Cayman Islands KY CYM 136 48 | Central African Republic CF CAF 140 49 | Chad TD TCD 148 50 | Chile CL CHL 152 51 | China CN CHN 156 52 | Hong Kong, SAR China HK HKG 344 53 | Macao, SAR China MO MAC 446 54 | Christmas Island CX CXR 162 55 | Cocos (Keeling) Islands CC CCK 166 56 | Colombia CO COL 170 57 | Comoros KM COM 174 58 | Congo (Brazzaville) CG COG 178 59 | Congo, (Kinshasa) CD COD 180 60 | Cook Islands CK COK 184 61 | Costa Rica CR CRI 188 62 | Côte d'Ivoire CI CIV 384 63 | Croatia HR HRV 191 64 | Cuba CU CUB 192 65 | Cyprus CY CYP 196 66 | Czech Republic CZ CZE 203 67 | 68 | 69 | D 70 | Denmark DK DNK 208 71 | Djibouti DJ DJI 262 72 | Dominica DM DMA 212 73 | Dominican Republic DO DOM 214 74 | 75 | 76 | E 77 | Ecuador EC ECU 218 78 | Egypt EG EGY 818 79 | El Salvador SV SLV 222 80 | Equatorial Guinea GQ GNQ 226 81 | Eritrea ER ERI 232 82 | Estonia EE EST 233 83 | Ethiopia ET ETH 231 84 | 85 | F 86 | Falkland Islands (Malvinas) FK FLK 238 87 | Faroe Islands FO FRO 234 88 | Fiji FJ FJI 242 89 | Finland FI FIN 246 90 | France FR FRA 250 91 | French Guiana GF GUF 254 92 | French Polynesia PF PYF 258 93 | French Southern Territories TF ATF 260 94 | 95 | 96 | G 97 | Gabon GA GAB 266 98 | Gambia GM GMB 270 99 | Georgia GE GEO 268 100 | Germany DE DEU 276 101 | Ghana GH GHA 288 102 | Gibraltar GI GIB 292 103 | Greece GR GRC 300 104 | Greenland GL GRL 304 105 | Grenada GD GRD 308 106 | Guadeloupe GP GLP 312 107 | Guam GU GUM 316 108 | Guatemala GT GTM 320 109 | Guernsey GG GGY 831 110 | Guinea GN GIN 324 111 | Guinea-Bissau GW GNB 624 112 | Guyana GY GUY 328 113 | 114 | 115 | H 116 | Haiti HT HTI 332 117 | Heard and Mcdonald Islands HM HMD 334 118 | Holy See (Vatican City State) VA VAT 336 119 | Honduras HN HND 340 120 | Hungary HU HUN 348 121 | 122 | I 123 | Iceland IS ISL 352 124 | India IN IND 356 125 | Indonesia ID IDN 360 126 | Iran, Islamic Republic of IR IRN 364 127 | Iraq IQ IRQ 368 128 | Ireland IE IRL 372 129 | Isle of Man IM IMN 833 130 | Israel IL ISR 376 131 | Italy IT ITA 380 132 | 133 | J 134 | Jamaica JM JAM 388 135 | Japan JP JPN 392 136 | Jersey JE JEY 832 137 | Jordan JO JOR 400 138 | 139 | 140 | K 141 | Kazakhstan KZ KAZ 398 142 | Kenya KE KEN 404 143 | Kiribati KI KIR 296 144 | Korea (North) KP PRK 408 145 | Korea (South) KR KOR 410 146 | Kuwait KW KWT 414 147 | Kyrgyzstan KG KGZ 417 148 | 149 | L 150 | Lao PDR LA LAO 418 151 | Latvia LV LVA 428 152 | Lebanon LB LBN 422 153 | Lesotho LS LSO 426 154 | Liberia LR LBR 430 155 | Libya LY LBY 434 156 | Liechtenstein LI LIE 438 157 | Lithuania LT LTU 440 158 | Luxembourg LU LUX 442 159 | 160 | M 161 | Macedonia, Republic of MK MKD 807 162 | Madagascar MG MDG 450 163 | Malawi MW MWI 454 164 | Malaysia MY MYS 458 165 | Maldives MV MDV 462 166 | Mali ML MLI 466 167 | Malta MT MLT 470 168 | Marshall Islands MH MHL 584 169 | Martinique MQ MTQ 474 170 | Mauritania MR MRT 478 171 | Mauritius MU MUS 480 172 | Mayotte YT MYT 175 173 | Mexico MX MEX 484 174 | Micronesia, Federated States of FM FSM 583 175 | Moldova MD MDA 498 176 | Monaco MC MCO 492 177 | Mongolia MN MNG 496 178 | Montenegro ME MNE 499 179 | Montserrat MS MSR 500 180 | Morocco MA MAR 504 181 | Mozambique MZ MOZ 508 182 | Myanmar MM MMR 104 183 | 184 | 185 | N 186 | Namibia NA NAM 516 187 | Nauru NR NRU 520 188 | Nepal NP NPL 524 189 | Netherlands NL NLD 528 190 | Netherlands Antilles AN ANT 530 191 | New Caledonia NC NCL 540 192 | New Zealand NZ NZL 554 193 | Nicaragua NI NIC 558 194 | Niger NE NER 562 195 | Nigeria NG NGA 566 196 | Niue NU NIU 570 197 | Norfolk Island NF NFK 574 198 | Northern Mariana Islands MP MNP 580 199 | Norway NO NOR 578 200 | 201 | 202 | O 203 | Oman OM OMN 512 204 | 205 | P 206 | Pakistan PK PAK 586 207 | Palau PW PLW 585 208 | Palestinian Territory PS PSE 275 209 | Panama PA PAN 591 210 | Papua New Guinea PG PNG 598 211 | Paraguay PY PRY 600 212 | Peru PE PER 604 213 | Philippines PH PHL 608 214 | Pitcairn PN PCN 612 215 | Poland PL POL 616 216 | Portugal PT PRT 620 217 | Puerto Rico PR PRI 630 218 | 219 | 220 | Q 221 | Qatar QA QAT 634 222 | 223 | R 224 | Réunion RE REU 638 225 | Romania RO ROU 642 226 | Russian Federation RU RUS 643 227 | Rwanda RW RWA 646 228 | 229 | 230 | S 231 | Saint-Barthélemy BL BLM 652 232 | Saint Helena SH SHN 654 233 | Saint Kitts and Nevis KN KNA 659 234 | Saint Lucia LC LCA 662 235 | Saint-Martin (French part) MF MAF 663 236 | Saint Pierre and Miquelon PM SPM 666 237 | Saint Vincent and Grenadines VC VCT 670 238 | Samoa WS WSM 882 239 | San Marino SM SMR 674 240 | Sao Tome and Principe ST STP 678 241 | Saudi Arabia SA SAU 682 242 | Senegal SN SEN 686 243 | Serbia RS SRB 688 244 | Seychelles SC SYC 690 245 | Sierra Leone SL SLE 694 246 | Singapore SG SGP 702 247 | Slovakia SK SVK 703 248 | Slovenia SI SVN 705 249 | Solomon Islands SB SLB 090 250 | Somalia SO SOM 706 251 | South Africa ZA ZAF 710 252 | South Georgia and the South Sandwich Islands GS SGS 239 253 | South Sudan SS SSD 728 254 | Spain ES ESP 724 255 | Sri Lanka LK LKA 144 256 | Sudan SD SDN 736 257 | Suriname SR SUR 740 258 | Svalbard and Jan Mayen Islands SJ SJM 744 259 | Swaziland SZ SWZ 748 260 | Sweden SE SWE 752 261 | Switzerland CH CHE 756 262 | Syrian Arab Republic (Syria) SY SYR 760 263 | 264 | 265 | T 266 | Taiwan, Republic of China TW TWN 158 267 | Tajikistan TJ TJK 762 268 | Tanzania, United Republic of TZ TZA 834 269 | Thailand TH THA 764 270 | Timor-Leste TL TLS 626 271 | Togo TG TGO 768 272 | Tokelau TK TKL 772 273 | Tonga TO TON 776 274 | Trinidad and Tobago TT TTO 780 275 | Tunisia TN TUN 788 276 | Turkey TR TUR 792 277 | Turkmenistan TM TKM 795 278 | Turks and Caicos Islands TC TCA 796 279 | Tuvalu TV TUV 798 280 | 281 | 282 | U 283 | Uganda UG UGA 800 284 | Ukraine UA UKR 804 285 | United Arab Emirates AE ARE 784 286 | United Kingdom GB GBR 826 287 | United States of America US USA 840 288 | US Minor Outlying Islands UM UMI 581 289 | Uruguay UY URY 858 290 | Uzbekistan UZ UZB 860 291 | 292 | 293 | V 294 | Vanuatu VU VUT 548 295 | Venezuela (Bolivarian Republic) VE VEN 862 296 | Viet Nam VN VNM 704 297 | Virgin Islands, US VI VIR 850 298 | 299 | 300 | W 301 | Wallis and Futuna Islands WF WLF 876 302 | Western Sahara EH ESH 732 303 | 304 | 305 | Y-Z 306 | Yemen YE YEM 887 307 | Zambia ZM ZMB 894 308 | Zimbabwe ZW ZWE 716 -------------------------------------------------------------------------------- /temp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerR023/WH-ADMIN-Hack/c4eafba96a08320bf1c78fd84d3d3a7aa8e13c9a/temp.txt --------------------------------------------------------------------------------