Uname:
Linux yisu-647059427c03a 3.10.0-862.14.4.el7.x86_64 #1 SMP Wed Sep 26 15:12:11 UTC 2018 x86_64
Software:
nginx/1.22.1
PHP version:
7.3.31 [ PHP INFO ] PHP os:
Linux
Server Ip:
103.146.158.90
Your Ip:
216.73.216.141
User:
www (1000) | Group:
www (1000)
Safe Mode:
OFF
Disable Function:
passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
<html>
<head>
<meta name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<meta charset="UTF-8">
<title>接码产品</title>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link rel="shortcut icon" href="https://chat.xingtupai.com/uploads/images/chatgpt.jpg">
</head>
<body>
<h1>接码平台</h1>
<p>第一次点击发送获取手机号 第二次点击查看验证码 若没有获取到验证码请5秒内再次点击发送</p>
接收短信时请你遵守如下建议:</br></br>
1. 在选定的服务上重复请求短信。</br>
2. 使用VPN或代理。你的IP地址必须要是美国。</br>
3. 在浏览器插件中变换你的用户代理或用无痕浏览器式。许多网页会跟踪特定的用户信息。</br>
4. 兑换码获取手机号后, 只有20分钟有效时间 </br></br>
<input id="myText" type="text" placeholder="输入兑换码">
<button onclick="sendText()">获取手机号</button>
<button onclick="sendText()" id="verificationButton" style="display: none;">查看验证码</button>
<p>你的验证码或手机号为: <span id="response"></span></p>
<button id="copyButton" onclick="copyText()" style="display: none;">复制</button>
<script>
var code = 0;
function sendText() {
var text = document.getElementById('myText').value;
axios.post('http://103.144.3.45:5000/mask/test', {
prove: text
})
.then(function (response) {
if (response.data.code == 200) {
code = response.data.code;
document.getElementById('response').textContent = response.data.data;
document.getElementById('copyButton').style.display = 'inline';
document.getElementById('verificationButton').style.display = 'inline';
alert(response.data.msg);
} else {
alert(response.data.msg);
}
})
.catch(function (error) {
console.log('>>>>>>>>>>>>>>>', error);
});
}
function copyText() {
var text = document.getElementById('response');
var range = document.createRange();
range.selectNode(text);
window.getSelection().removeAllRanges();
window.getSelection().addRange(range);
document.execCommand("copy");
alert('复制成功');
}
</script>
</body>
</html>