thinkphp micro disk, time disk, micro trading platform API file, virtual currency K-line normal ********************************************************** ?php namespace app\index\controller; use think\Controller; use think\Db; class Api extends Controller { public function __construct() { parent::__construct(); $this->nowtime = time(); $minute = date(‘Y-m-d H:i’, $this->nowtime) . ‘:00’; $this->minute = strtotime($minute); // Specify customer profit or loss: // Write customer ID in array(), e.g., if customer ID is 1027, write array(1027) // For multiple customers, separate with English commas, e.g., array(1027,2018,3765) // Note: must be English comma, Chinese comma will cause error $this->user_win = array(); // Specify customer profit $this->user_loss = array(); // Specify customer loss // K-line database $this->klinedata = db(‘klinedata’); } public function getdate() { // Product list $pro = db(‘productinfo’)->where(‘isdelete’, 0)->select(); if (!isset($pro)) return false; $nowtime = time(); $_rand = rand(1, 900) / 100000; $thisdatas = array(); foreach ($pro as $k => $v) { // Verify market closed // $isopen = ChickIsOpen($v[‘pid’]); // if ($isopen) { // continue; // } // Tencent Securities if ($v[‘procode’] == ‘btc’ || $v[‘procode’] == ‘ltc’ || $v[‘procode’] == ‘trx’ || $v[‘procode’] == ‘eth’ || $v[‘procode’] == ‘eos’) { $minute = date(‘i’, $nowtime); if ($minute >= 0 && $minute < 15) { $minute = 0; } elseif ($minute......
thinkphp micro disk error Call to undefined function app index controller curlGet() Error reported during jump verification Error Fatal error Call to undefined function appindexcontrollercurlGet() in wwwwwwrootdajian168.comapplicationindexcontrollerLogin.php on line 681 [1] ErrorException in Login.php line 681 Call to undefined function appindexcontrollercurlGet() Solution: In the common file, add: “`php /* GET request to retrieve data */ function curlGet($url){ $ch = curl_init(); // Set options, including URL curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); if (strpos($url, ‘https’) !== false) { curl_setopt($ch, CURLOPT_SSLVERSION, 3); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); } // Execute and get HTML document content $output = curl_exec($ch); // Close curl handle curl_close($ch); return $output; } “`...
Micro disk thinkphp registration has no response, showing error SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column ‘domain’ at row 1. Error reason: The domain field length set in the database is too small to store the current field. Solution: userinfo table, domain original type: VARCHAR(18), change to: current type VARCHAR(610)....
20230317 HSBC multilingual micro-disk micro-trading (supports multiple languages: Traditional Chinese, English, Simplified Chinese, etc. – can be customized and added) Includes mainstream forex, virtual currency, oil, new energy, and securities. Volatility K-line is normal. Backend full kill and half kill both available. Solves Chrome virus warning, Google browser virus warning. Test site demo. Test server is a bit laggy. If can’t open, refresh. Copy and open in browser....
Chrome reports virus, Google Chrome reports virus, Google Chrome virus warning resolution Chrome dangerous warning prompt Recently the Weipan program is being instantly flagged as a virus by Google Chrome, prompting danger. Prompt: Some pages on this site are not secure. Prompt: The site you’re trying to access is a phishing site. Attackers on this site may trick you into doing dangerous things, such as installing software or leaking your personal information (such as passwords, phone numbers, or credit card information). Tried changing the domain name, modifying homepage fields, encrypting the homepage code – none of it worked. Instantly flagged as virus. Solution: Do verification redirect...
2023.3.22 1. Micro Disk Vulnerability Micro Trading Platform Vulnerability Forex Vulnerability HSBC Attack Vulnerability Exploit Published Hackers used features to batch scan for micro disk vulnerabilities. They exploited a cache upload vulnerability to upload a one-line PHP shell, then uploaded a larger shell to the root directory. Next, they uploaded database management tools, modified the database and index.php files, etc. They left contact information and threatened and extorted website administrators. Recommendations and Fixes: – Patch the upload vulnerability – Block hacker IP ranges – Lock down website file permissions – disable upload and creation Specific Vulnerability Locations: Search Hacker Attack Handling Maintenance Log: 1. Patch vulnerabilities 2. Block hacker IPs 3. Restore website files 4. Restore website data 5. Purchase new domain and configure frontend domain 6. Create jump verification to effectively solve Google browser warning issues and network blocking domain issues....
This Android remote control tool craxrats was written by a foreigner, and it’s much stronger than the cracked version of CypherRat. It can control remote devices like a computer: 1. Real-time viewing of the controlled person’s phone screen, controlling their phone screen just like operating your own phone, without them noticing. 2. Opening the camera to take photos and videos, controlling the victim’s phone without their knowledge, making phone calls and sending SMS, obtaining contact lists, getting SMS content, accessing photos in their gallery, uploading files to the victim’s phone, downloading files from the victim’s phone to your computer. 3. Silently uploading and installing Android apps on the victim’s phone without them knowing, can control the victim’s phone. 4. Making the victim’s phone screen go black and disabling their touch control, while you can normally view their phone screen. 5. Can operate the keylogger online or offline, recording all of the victim’s operations and entered passwords, 24/7 continuously. 6. Can listen to the victim’s microphone without their knowledge. 7. Can record in real-time and monitor what the victim is saying. 8. Can open the front camera to see the victim’s face, while also opening their microphone to hear them speak,......
2023 ThinkPHP Micro Trading Platform Setup Tutorial – Environment Recommendation: Linux, Nginx 1.21.0, PHP 5.6, MySQL 5.6, SSL...
October 2022 latest program case studies – Click the link below to enter: https://xz.dajian168.net/10yueanli...
H5 Online IM Chat Instant Messaging Setup Tutorial Description Server Operating System: Linux CentOS 7 Install BaoTa (Bt Panel) BaoTa Environment: Nginx 1.18 + PHP 7.3 + MySQL 5.6 + MongoDB 4.0 Install PHP extensions: fileinfo, Swoole4, mongodb (three extensions) Remove all disabled functions in PHP BaoTa firewall: Open ports 1-65535 Add a website, upload files from the IM folder to the website root directory, set permissions to 777 Modify the website, set URL rewrite to thinkphp, website directory select /web/public Move index.html to the top of default documents Add a database and import data 3eym.com.sql.gz The MongoDB database needs to be uploaded via SSH commands First upload mongod.zip to a folder on the server, after uploading, extract the file, delete the zip file, then execute the following command via SSH: mongorestore -d im path (this path is the folder you extracted) Modify the database configuration information in webconfigdatabase.php Modify the database configuration information in socketappimcommoncontrollerMain.php Modify the IP on line 48 in webappimcommoncontrollerActionBegin1.php Next is compiling the frontend files, the frontend files are in view-h5 First download HBuilderX tool, search and download via Baidu, for how to use it, check the tool’s instructions. If it prompts you to install......