fix login on firmware 050124.02.00.009
[GitHub/Stricted/speedport-hybrid-php-api.git] / speedport.class.php
index 1650c5b98427967b5e31eb7d112706cb06cad025..4aa517d0d500bc55e985ec3509f0bc1dc441486a 100644 (file)
@@ -11,6 +11,12 @@ class speedport {
         */
        private $challenge = '';
        
+       /**
+        * csrf_token
+        * @var string
+        */
+       private $token = '';
+       
        /**
         * hashed password
         * @var string
@@ -29,6 +35,12 @@ class speedport {
         */
        private $url = '';
        
+       /**
+        * derivedk cookie
+        * @var string
+        */
+       private $derivedk = '';
+       
        public function __construct ($password, $url = 'http://speedport.ip/') {
                $this->url = $url;
                $this->getChallenge();
@@ -52,7 +64,9 @@ class speedport {
                $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'challengev' => 'null');
                $data = $this->sentRequest($path, $fields);
                $data = json_decode($data['body'], true);
-               if ($data[1]['varid'] == 'challengev') {
+               $data = $this->getValues($data);
+               
+               if (isset($data['challengev']) && !empty($data['challengev'])) {
                        $this->challenge = $data[1]['varvalue'];
                }
        }
@@ -69,7 +83,8 @@ class speedport {
                $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'password' => $this->hash);
                $data = $this->sentRequest($path, $fields);
                $json = json_decode($data['body'], true);
-               if ($json[15]['varid'] == 'login' && $json[15]['varvalue'] == 'success') {
+               $json = $this->getValues($json);
+               if (isset($json['login']) && $json['login'] == 'success') {
                        if (isset($data['header']['Set-Cookie']) && !empty($data['header']['Set-Cookie'])) {
                                preg_match('/^.*(SessionID_R3=[a-z0-9]*).*/i', $data['header']['Set-Cookie'], $match);
                                if (isset($match[1]) && !empty($match[1])) {
@@ -79,6 +94,12 @@ class speedport {
                                        throw new Exception('unable to get the session cookie from the router');
                                }
                                
+                               // calculate derivedk
+                               $this->derivedk = hash_pbkdf2('sha1', hash('sha256', $password), substr($this->challenge, 0, 16), 1000, 32);
+                               
+                               // get the csrf_token
+                               $this->token = $this->getToken();
+                               
                                return true;
                        }
                }
@@ -98,6 +119,7 @@ class speedport {
                // reset challenge and session
                $this->challenge = '';
                $this->session = '';
+               $this->token = "";
                
                $json = json_decode($data['body'], true);
                
@@ -114,6 +136,7 @@ class speedport {
                $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'password' => $this->hash, 'reboot_device' => 'true');
                $cookie = 'challengev='.$this->challenge.'; '.$this->session;
                $data = $this->sentRequest($path, $fields, $cookie);
+               
                $json = json_decode($data['body'], true);
                
                return $json;
@@ -130,7 +153,11 @@ class speedport {
                if ($status == 'online' || $status == 'offline') {
                        $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'password' => $this->hash, 'req_connect' => $status);
                        $cookie = 'challengev='.$this->challenge.'; '.$this->session;
-                       $this->sentRequest($path, $fields, $cookie);
+                       $data = $this->sentRequest($path, $fields, $cookie);
+                       
+                       $json = json_decode($this->decrypt($data['body']), true);
+                       
+                       return $json;
                }
                else {
                        throw new Exception();
@@ -255,7 +282,24 @@ class speedport {
                return explode("\n", $data['body']);
        }
        
+       /**
+        * reconnect LTE
+        *
+        * @return      array
+        */
+       public function reconnectLte () {
+               $path = 'data/modules.json';
+               $fields = array('csrf_token' => $this->token, 'lte_reconn' => '1');
+               $fields = $this->encrypt($fields);
+               $cookie = 'challengev='.$this->challenge.'; '.$this->session;
+               $data = $this->sentRequest($path, $fields, $cookie, 2);
+               $json = json_decode($data['body'], true);
+               
+               return $json;
+       }
+       
        /*
+       // i dont want test this :D, feel free to test it and report if it works or not
        public function resetToFactoryDefault () {
                $path = 'data/resetAllSetting.json';
                $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'password' => $this->hash, 'reset_all' => 'true');
@@ -287,22 +331,90 @@ class speedport {
                return $json;
        }
        
+       /**
+        * decrypt data from router
+        * 
+        * @param       string  $data
+        * @return      array
+        */
+       private function decrypt ($data) {
+               require_once 'CryptLib/CryptLib.php';
+               $factory = new CryptLib\Cipher\Factory();
+               $aes = $factory->getBlockCipher('rijndael-128');
+               
+               $iv = hex2bin(substr($this->challenge, 16, 16));
+               $adata = hex2bin(substr($this->challenge, 32, 16));
+               $dkey = hex2bin($this->derivedk);
+               $enc = hex2bin($data);
+               
+               $aes->setKey($dkey);
+               $mode = $factory->getMode('ccm', $aes, $iv, [ 'adata' => $adata, 'lSize' => 7]);
+               
+               $mode->decrypt($enc);
+               
+               return $mode->finish();
+       }
+
+       /**
+        * decrypt data for the router
+        * 
+        * @param       array   $data
+        * @return      string
+        */
+       private function encrypt ($data) {
+               require_once 'CryptLib/CryptLib.php';
+               $factory = new CryptLib\Cipher\Factory();
+               $aes = $factory->getBlockCipher('rijndael-128');
+               
+               $iv = hex2bin(substr($this->challenge, 16, 16));
+               $adata = hex2bin(substr($this->challenge, 32, 16));
+               $dkey = hex2bin($this->derivedk);
+               
+               $aes->setKey($dkey);
+               $mode = $factory->getMode('ccm', $aes, $iv, [ 'adata' => $adata, 'lSize' => 7]);
+               $mode->encrypt(http_build_query($data));
+               
+               return bin2hex($mode->finish());
+       }
+       
+       /**
+        * get the values from array
+        * 
+        * @param       array   $array
+        * @return      array
+        */
+       private function getValues($array) {
+               $data = array();
+               foreach ($array as $item) {
+                       $data[$item['varid']] = $item['varvalue'];
+               }
+               
+               return $data;
+       }
+       
        /**
         * sends the request to router
         * 
         * @param       string  $path
-        * @param       array   $fields
+        * @param       mixed   $fields
         * @param       string  $cookie
+        * @param       integer $count
         * @return      array
         */
-       private function sentRequest ($path, $fields = array(), $cookie = '') {
+       private function sentRequest ($path, $fields, $cookie = '', $count = 0) {
                $url = $this->url.$path;
                $ch = curl_init();
                curl_setopt($ch, CURLOPT_URL, $url);
                
                if (!empty($fields)) {
-                       curl_setopt($ch, CURLOPT_POST, count($fields));
-                       curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($fields));
+                       if (is_array($fields)) {
+                               curl_setopt($ch, CURLOPT_POST, count($fields));
+                               curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($fields));
+                       }
+                       else {
+                               curl_setopt($ch, CURLOPT_POST, $count);
+                               curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
+                       }
                }
                
                if (!empty($cookie)) {
@@ -325,6 +437,7 @@ class speedport {
                curl_close($ch);
                
                // fix invalid json
+               
                $body = preg_replace("/(\r\n)|(\r)/", "\n", $body);
                $body = preg_replace('/\'/i', '"', $body);
                $body = preg_replace("/\[\s+\]/i", '[ {} ]', $body);
@@ -333,6 +446,32 @@ class speedport {
                return array('header' => $this->parse_headers($header), 'body' => $body);
        }
        
+       /**
+        * get the csrf_token
+        * 
+        * @return      string
+        */
+       private function getToken () {
+               $path = 'html/content/overview/index.html?lang=de';
+               $fields = array();
+               $cookie = 'challengev='.$this->challenge.'; '.$this->session;
+               $data = $this->sentRequest($path, $fields, $cookie);
+               
+               if (empty($data['body'])) {
+                       throw new Exception('unable to get csrf_token');
+               }
+               
+               $a = explode('csrf_token = "', $data['body']);
+               $a = explode('";', $a[1]);
+               
+               if (isset($a[0]) && !empty($a[0])) {
+                       return $a[0];
+               }
+               else {
+                       throw new Exception('unable to get csrf_token');
+               }
+       }
+       
        /**
         * parse the curl return header into an array
         *