���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/rickpfrv/tie.cx/app/helpers/links.php
���ѧ٧ѧ�
<?php function url($append = '') { return SITE_URL . $append; } function redirect($append = '') { header('Location: ' . SITE_URL . $append); die(); } function get_slug($string, $delimiter = '-', $lowercase = true) { /* Replace all non words characters with the specified $delimiter */ $string = preg_replace('/[^a-zA-Z0-9._-]+/', $delimiter, $string); /* Check for double $delimiters and remove them so it only will be 1 delimiter */ $string = preg_replace('/' . $delimiter . '+/', $delimiter, $string); /* Remove the $delimiter character from the start and the end of the string */ $string = trim($string, $delimiter); /* Make sure to lowercase it */ $string = $lowercase ? mb_strtolower($string) : $string; return $string; } function phishtank_check($url, $api_key = '') { $api_url = 'https://checkurl.phishtank.com/checkurl/'; $body = [ 'format' => 'json', 'url' => urlencode($url), 'app_key' => $api_key ]; $response = Unirest\Request::post($api_url, null, $body); return isset($response->body->results->valid) && $response->body->results->valid; } function google_safe_browsing_check($url, $api_key = '') { $api_url = 'https://safebrowsing.googleapis.com/v4/threatMatches:find?key=' . $api_key; $body = Unirest\Request\Body::json([ 'client' => [ 'clientId' => '', 'clientVersion' => '1.5.2' ], 'threatInfo' => [ 'threatTypes' => ['MALWARE', 'SOCIAL_ENGINEERING','THREAT_TYPE_UNSPECIFIED'], 'platformTypes' => ['ANY_PLATFORM'], 'threatEntryTypes' => ['URL'], 'threatEntries' => [ ['url' => $url] ] ] ]); $headers = [ 'Content-Type' => 'application/json', 'Authorization' => 'Token :)' ]; $response = Unirest\Request::post($api_url, $headers, $body); if(isset($response->body->matches[0]->threatType) && $response->body->matches[0]->threatType) return true; return false; }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�