Plugin Directory

Changeset 2304973


Ignore:
Timestamp:
05/14/2020 03:29:26 PM (6 years ago)
Author:
marcofrl1
Message:

Path update

Location:
jwt-ssolo
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • jwt-ssolo/trunk/Readme.txt

    r2278353 r2304973  
    22Contributors: @marcofrl1
    33Donate link:
    4 Tags: login, gdpr, authentication, secure login, jwt, token, remote login, OAuth2, KYC, bank security, security
     4Tags: login, dgpr, authentication, secure login, jwt, token
    55Requires at least: 4.6
    66Tested up to: 5.4
  • jwt-ssolo/trunk/config.php

    r2268942 r2304973  
    11<?php
    2 $servercode="201912261826353982";
    3 $token="Wm15SzcvVkxPQmV5bkI2VXExcUpIU292YUVTZlFnTzhVekdsaVMwU2pGOGJob3pmcjJKVDhVMkVOQUVIYnVpdlpUbzNyR3Z1MjFPYm9BcXkzNjhpRWFwbHFIVzB1MWdvaVFkS3p6NHptRlhmb2UzU2l1eEFuU2wyY0NtUlg1T2k6Ouw9w4OocKoBmkw7FkRtFSc=";
    4 $user_id="227";
    52?>
  • jwt-ssolo/trunk/jwtlogin.php

    r2276253 r2304973  
    109109function jwtl_passurl_wpse_208054($lostpassword_url, $redirect ) {
    110110    include "config.php";
    111     return 'https://auth.ssolo.co.uk/auth/forgotpwd.php?servercode='.$servercode;
     111    return 'https://auth.ssolo.co.uk/forgotpwd.php?servercode='.$servercode;
    112112}
    113113add_filter('lostpassword_url', 'jwtl_passurl_wpse_208054', 10, 2);
     
    125125    <th><label for="getuserinfo"><?php _e("Modify user"); ?></label></th>
    126126    <td>
    127     <button type="button"  class="button wp-generate-pw hide-if-no-js" onclick="location.href = 'https://auth.ssolo.co.uk/auth/moduser.php?servercode=<?php echo $servercode ?>'">Modify User data</button>
     127    <button type="button"  class="button wp-generate-pw hide-if-no-js" onclick="location.href = 'https://auth.ssolo.co.uk/moduser.php?servercode=<?php echo $servercode ?>'">Modify User data</button>
    128128    </td>
    129129    </tr>
     
    131131    <th><label for="delaccount"><?php _e("Delete Account"); ?></label></th>
    132132    <td>
    133     <button type="button" class="button wp-generate-pw hide-if-no-js" onclick="location.href = 'https://auth.ssolo.co.uk/auth/deleteaccount.php?servercode=<?php echo $servercode ?>'">Delete User account</button>
     133    <button type="button" class="button wp-generate-pw hide-if-no-js" onclick="location.href = 'https://auth.ssolo.co.uk/deleteaccount.php?servercode=<?php echo $servercode ?>'">Delete User account</button>
    134134    </td>
    135135    </tr>
     
    339339   
    340340    $args = array( 'headers' => array( 'Content-Type' => 'application/json' ), 'body' => $pars );
    341     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/login.php',$args);
     341    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/login.php',$args);
    342342    $response_code = wp_remote_retrieve_response_code( $datat );
    343343    $response_body = wp_remote_retrieve_body( $datat );
     
    398398   
    399399    $args = array( 'headers' => array( $header ), 'body' => $pars );
    400     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/login.php',$args);
     400    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/login.php',$args);
    401401    $response_code = wp_remote_retrieve_response_code( $datat );
    402402    $response_body = wp_remote_retrieve_body( $datat );
     
    494494    curl_close($curlSES);
    495495    $args = array( 'headers' => array( $header ), 'body' => $pars );
    496     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/moduser.php',$args);
     496    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/moduser.php',$args);
    497497    $response_code = wp_remote_retrieve_response_code( $datat );
    498498    $response_body = wp_remote_retrieve_body( $datat );
     
    523523   
    524524    $args = array( 'headers' => array( $header ), 'body' => $pars );
    525     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/deluser.php',$args);
     525    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/deluser.php',$args);
    526526    $response_code = wp_remote_retrieve_response_code( $datat );
    527527    $response_body = wp_remote_retrieve_body( $datat );
     
    553553   
    554554    $args = array( 'headers' => array( $header ), 'body' => $pars );
    555     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/blockuser.php',$args);
     555    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/blockuser.php',$args);
    556556    $response_code = wp_remote_retrieve_response_code( $datat );
    557557    $response_body = wp_remote_retrieve_body( $datat );
     
    584584   
    585585    $args = array( 'headers' => array( $header ), 'body' => $pars );
    586     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/unblockuser.php',$args);
     586    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/unblockuser.php',$args);
    587587    $response_code = wp_remote_retrieve_response_code( $datat );
    588588    $response_body = wp_remote_retrieve_body( $datat );
     
    607607   
    608608    $args = array( 'headers' => array( $header ), 'body' => $pars );
    609     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/checktoken.php',$args);
     609    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/checktoken.php',$args);
    610610    $response_code = wp_remote_retrieve_response_code( $datat );
    611611    $response_body = wp_remote_retrieve_body( $datat );
  • jwt-ssolo/trunk/wpssoloauth-lib.php

    r2268942 r2304973  
    3333   
    3434    $args = array( 'headers' => array( 'Content-Type' => 'application/json' ), 'body' => $pars );
    35     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/login.php',$args);
     35    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/login.php',$args);
    3636    $response_code = wp_remote_retrieve_response_code( $datat );
    3737    $response_body = wp_remote_retrieve_body( $datat );
     
    9292   
    9393    $args = array( 'headers' => array( $header ), 'body' => $pars );
    94     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/login.php',$args);
     94    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/login.php',$args);
    9595    $response_code = wp_remote_retrieve_response_code( $datat );
    9696    $response_body = wp_remote_retrieve_body( $datat );
     
    188188    curl_close($curlSES);
    189189    $args = array( 'headers' => array( $header ), 'body' => $pars );
    190     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/moduser.php',$args);
     190    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/moduser.php',$args);
    191191    $response_code = wp_remote_retrieve_response_code( $datat );
    192192    $response_body = wp_remote_retrieve_body( $datat );
     
    217217   
    218218    $args = array( 'headers' => array( $header ), 'body' => $pars );
    219     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/deluser.php',$args);
     219    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/deluser.php',$args);
    220220    $response_code = wp_remote_retrieve_response_code( $datat );
    221221    $response_body = wp_remote_retrieve_body( $datat );
     
    247247   
    248248    $args = array( 'headers' => array( $header ), 'body' => $pars );
    249     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/blockuser.php',$args);
     249    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/blockuser.php',$args);
    250250    $response_code = wp_remote_retrieve_response_code( $datat );
    251251    $response_body = wp_remote_retrieve_body( $datat );
     
    278278   
    279279    $args = array( 'headers' => array( $header ), 'body' => $pars );
    280     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/unblockuser.php',$args);
     280    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/unblockuser.php',$args);
    281281    $response_code = wp_remote_retrieve_response_code( $datat );
    282282    $response_body = wp_remote_retrieve_body( $datat );
     
    301301   
    302302    $args = array( 'headers' => array( $header ), 'body' => $pars );
    303     $datat = wp_remote_post('https://auth.ssolo.co.uk/auth/api/v1/checktoken.php',$args);
     303    $datat = wp_remote_post('https://auth.ssolo.co.uk/api/v1/checktoken.php',$args);
    304304    $response_code = wp_remote_retrieve_response_code( $datat );
    305305    $response_body = wp_remote_retrieve_body( $datat );
Note: See TracChangeset for help on using the changeset viewer.