Ts San mo nakuha cfg?sir kailangan ba nakaopen data magdamag? salamattt
Paano po set up? pa screen shot naman poOkay naba to
Hahaha tyaga tyaga lang sana makahanap ako ng stable na script para hindi na kailangan si termux![]()
:method: POST
:path: /member/collect_coins_to_wallet
:authority: m.digimining.tech
:scheme: https
user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:75.0) Gecko/20100101 Firefox/75.0
accept: application/json, text/javascript, */*; q=0.01
accept-language: en-US,en;q=0.5
accept-encoding: gzip, deflate, br
x-requested-with: XMLHttpRequest
origin: https://m.digimining.tech
dnt: 1
referer: https://m.digimining.tech/member/dashboard1
cookie: __cfduid=daa45bff52c4fc1a4ac0512ce17248a1b1587809025
cookie: ci_session=925plvm197c2a8omginjthq0ml3tomcv
cookie: userid=a4b1c2699981c94b2a156a765aed6c1ed75a9e9953a657729bd48763447a9d51547ab75285fa698c085dad150e92655efd52568a177e2aa628a202576f849619Akg6SV6XlKo5pOmcm4wrwIpwSVYJAo6a9eH1goniq5A%3D
cookie: bonus=0
pragma: no-cache
cache-control: no-cache
te: trailers
Content-Length: 43
Content-Type: application/x-www-form-urlencoded
reqamount=0.000000240&minamount=0.000000240
await fetch("https://m.digimining.tech/member/collect_coins_to_wallet", {
"credentials": "include",
"headers": {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:75.0) Gecko/20100101 Firefox/75.0",
"Accept": "application/json, text/javascript, */*; q=0.01",
"Accept-Language": "en-US,en;q=0.5",
"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
"X-Requested-With": "XMLHttpRequest",
"Pragma": "no-cache",
"Cache-Control": "no-cache"
},
"referrer": "https://m.digimining.tech/member/dashboard1",
"body": "reqamount=0.000000240&minamount=0.000000024",
"method": "POST",
"mode": "cors"
});
<?php
ini_set('max_execution_time', '0');
$user_id = "dito mo ilaguy yung cookie mo";
$URLm = "https://m.digimining.tech/member/collect_coins_to_wallet";
startLoop();
function startLoop(){
global $URLm;
while(true){
$options = array(
'http' => array('method' => 'GET')
);
$context = stream_context_create($options);
$result = fopen($URLm, 'r', false, $context);
fpassthru($result);
fclose($result);
}
}
?>