/home/techb158/on-time-movers.com/wp-content/plugins/updraftplus/includes
NameSizeModeActions
blockui/-0755rm
checkout-embed/-0755rm
cloudfiles/-0755rm
Dropbox2/-0755rm
Google/-0755rm
handlebars/-0755rm
images/-0755rm
jquery-ui.dialog.extended/-0755rm
jquery.serializeJSON/-0755rm
jstree/-0755rm
labelauty/-0755rm
pcloud/-0755rm
select2/-0755rm
tether/-0755rm
tether-shepherd/-0755rm
updraftclone/-0755rm
cacert.pem2214700644editdlrm
class-backup-history.php412990644editdlrm
class-commands.php589150644editdlrm
class-database-utility.php412470644editdlrm
class-filesystem-functions.php539610644editdlrm
class-http-error-descriptions.php116690644editdlrm
class-job-scheduler.php105520644editdlrm
class-manipulation-functions.php218250644editdlrm
class-partialfileservlet.php86260644editdlrm
class-remote-send.php347890644editdlrm
class-search-replace.php215740644editdlrm
class-semaphore.php85440644editdlrm
class-storage-methods-interface.php194130644editdlrm
class-updraft-dashboard-news.php83670644editdlrm
class-updraft-semaphore.php87170644editdlrm
class-updraftcentral-updraftplus-commands.php18570644editdlrm
class-updraftplus-deactivation.php44900644editdlrm
class-updraftplus-encryption.php152270644editdlrm
class-wpadmin-commands.php432860644editdlrm
class-zip.php195200644editdlrm
ftp.class.php70820644editdlrm
get-cpanel-quota-usage.pl4080644editdlrm
google-extensions.php94970644editdlrm
jquery-ui.custom-v1.11.4-1-26-5.min.css387510644editdlrm
jquery-ui.custom-v1.11.4-1-26-5.min.css.map583740644editdlrm
jquery-ui.custom-v1.11.4.css431930644editdlrm
jquery-ui.custom-v1.12.1-1-26-5.min.css404970644editdlrm
jquery-ui.custom-v1.12.1-1-26-5.min.css.map608390644editdlrm
jquery-ui.custom-v1.12.1.css450900644editdlrm
migrator-lite.php592220644editdlrm
S3.php813240644editdlrm
S3compat.php328180644editdlrm
updraft-admin-common-1-26-5.min.js1706990644editdlrm
updraft-admin-common.js2861960644editdlrm
updraft-onboarding-1-26-5.min.js93690644editdlrm
updraft-onboarding.js249220644editdlrm
updraft-restorer-skin-compatibility.php4520644editdlrm
updraft-restorer-skin.php17230644editdlrm
updraftcentral.php34640644editdlrm
updraftplus-clone.php72370644editdlrm
updraftplus-login.php45090644editdlrm
updraftplus-notices.php189240644editdlrm
updraftplus-tour.php141370644editdlrm
updraftvault.php20400644editdlrm
Edit: /home/techb158/on-time-movers.com/wp-content/plugins/updraftplus/includes/updraftplus-login.php (4509B)
get_url('mothership').'/?udm_action='.$action, array( 'timeout' => 20, 'headers' => apply_filters('updraftplus_auth_headers', ''), 'body' => $data ) ); // If we got an error then we return the WP_Error object itself // and let the caller handle it. if (is_wp_error($result)) return $result; $response = json_decode(wp_remote_retrieve_body($result), true); if (!is_array($response) || !isset($response['mothership']) || !isset($response['status'])) { if (preg_match('/has banned your IP address \(([\.:0-9a-f]+)\)/', $result['body'], $matches)) { return new WP_Error('banned_ip', sprintf(__("UpdraftPlus.com has responded with 'Access Denied'.", 'updraftplus').'
'. /* translators: %s: Server IP address */ __("It appears that your web server's IP Address (%s) is blocked.", 'updraftplus').' '. __('This most likely means that you share a webserver with a hacked website that has been used in previous attacks.', 'updraftplus'). '
'. __('To remove the block, please go here.', 'updraftplus').' ', $matches[1])); } else { /* translators: %s: Response data from UpdraftPlus.com */ return new WP_Error('unknown_response', sprintf(__('UpdraftPlus.Com returned a response which we could not understand (data: %s)', 'updraftplus'), wp_remote_retrieve_body($result))); } } return $response; } /** * The ajax based request point of entry for the login process * * @param array $data - The submitted form data * @param boolean $echo_results - Whether to echo/display the results directly to the user or assign it to a variable * @return array - Response of the process */ public function ajax_process_login($data = array(), $echo_results = true) { try { if (isset($data['form_data'])) { if (is_string($data['form_data'])) { parse_str($data['form_data'], $form_data); } elseif (is_array($data['form_data'])) { $form_data = $data['form_data']; } } $response = $this->login_or_register($form_data); } catch (Exception $e) { $response = array('error' => true, 'message' => $e->getMessage()); } if ($echo_results) { echo json_encode($response); } else { return $response; } } /** * The ajax based request point of entry for the registration process * * @param array $data - The submitted form data * @param boolean $echo_results - Whether to echo/display the results directly to the user or assign it to a variable * @return array - Response of the process */ public function ajax_process_registration($data = array(), $echo_results = true) { try { if (isset($data['form_data'])) parse_str($data['form_data'], $form_data); $response = $this->login_or_register($form_data, true); } catch (Exception $e) { $response = array('error' => true, 'message' => $e->getMessage()); } if ($echo_results) { echo json_encode($response); } else { return $response; } } }