Help
RSS
API
Feed
Maltego
Contact
Domain > 58ws.xyz
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2024-03-16
108.139.15.4
(
ClassC
)
2025-08-03
3.163.24.119
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyServer: CloudFrontDate: Sun, 03 Aug 2025 16:13:40 GMTContent-Type: text/htmlContent-Length: 167Connection: keep-aliveLocation: https://58ws.xyz/X-Cache: Redirect from cloudfrontVia: 1.1 a235f5b7b15b9c8025af96fb0081dd58.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P2X-Amz-Cf-Id: XoqqT4C0DaApQJ4qDpJBxIofG71mppaGopOIwj_-aRQywJ_Lh7bnKA html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>hr>center>CloudFront/center>/body>/html>
Port 443
HTTP/1.1 200 OKContent-Type: text/htmlContent-Length: 8904Connection: keep-aliveDate: Sun, 03 Aug 2025 16:13:41 GMTLast-Modified: Wed, 04 Sep 2024 04:54:16 GMTETag: 37efe72aef8d55b55c00384ea6f28411x-amz-server-side-encryption: AES256Accept-Ranges: bytesServer: AmazonS3X-Cache: Miss from cloudfrontVia: 1.1 049ca50de603d43d8c9d0f7716efb414.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P2X-Amz-Cf-Id: YMO3EHiPgc7V5hlw66KYS5UNsk2kn4_-Jq_KKC0xQsm3HLg5JHiXWw !DOCTYPE html>html langja> head> meta charsetUTF-8> title>fx_game/title> link relstylesheet hrefstyle.css /> link hrefhttps://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css relstylesheet integritysha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM crossoriginanonymous> /head> body> h1>FX_GAME/h1> section> h4>Auth/h4> div> button typebutton idbutton_01 classbtn btn-primary>ログイン/button> /div> div> button typebutton idbutton_02 classbtn btn-primary>ログイン確認/button> /div> /section> section> h4>Trade/h4> div> form> label> input typeradio nametrade value0 checked> 買い /label> label> input typeradio nametrade value1> 売り /label> label> input typeradio nametrade value2> 全決済 - 買い /label> label> input typeradio nametrade value3> 全決済 - 売り /label> label> input typeradio nametrade value4> 単決済 - 買い /label> label> input typeradio nametrade value5> 単決済 - 売り /label> label> input typeradio nametrade value6> リセット /label> /form> /div> div> button typebutton idbutton_03 classbtn btn-primary disabled>取引開始/button> /div> /section> section> h4>Draw/h4> div> button typebutton idbutton_04 classbtn btn-primary disabled>くじびき判定/button> /div> div> button typebutton idbutton_05 classbtn btn-primary disabled>くじびき開始/button> /div> /section> section> h4>ゲームデータ連携/h4> div> buutton typebutton idbutton_06 classbtn btn-primary>ゲームデータ連携/buutton> /div> /section> /body> script srchttps://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js integritysha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz crossoriginanonymous>/script> script> // ログイン let button_01 document.getElementById(button_01); button_01.addEventListener(click, function() { location.href https://test-fxgame-backend.finance.ponta.jp/auth; }); // 認証チェック let is_login false; let button_02 document.getElementById(button_02); button_02.addEventListener(click, function() { fetch(https://test-fxgame-backend.finance.ponta.jp/api/v1/auth, { method: GET, credentials: include, headers: { Content-Type: application/json, }, }) .then(response > { if (!response.ok) { throw new Error(Network response was not ok); } return response.json(); }) .then(data > { console.log(data); let button_03 document.getElementById(button_03).disabled !data.isLoggedIn; let button_04 document.getElementById(button_04).disabled !data.isLoggedIn; }) .catch(error > { console.error(Error:, error); }); }); // 取引開始 let button_03 document.getElementById(button_03); button_03.addEventListener(click, function() { let trade document.querySelector(inputnametrade:checked).value; trade parseInt(trade); let tradeType ; let tradeCount 0; switch (trade) { case 0: tradeType buying; tradeCount 0; break; case 1: tradeType selling; tradeCount 0; break; case 2: tradeType buying; tradeCount 3; break; case 3: tradeType selling; tradeCount 3; break; case 4: tradeType buying; tradeCount 1; break; case 5: tradeType selling; tradeCount 1; break; default: tradeType reset; tradeCount 0; break; } fetch(https://test-fxgame-backend.finance.ponta.jp/api/v1/transactions, { method: POST, credentials: include, headers: { Content-Type: application/json, }, body: JSON.stringify({ transactionType: tradeType, tradeCount: tradeCount, data: eyJtZWRhbHMiOjE5ODAsInBvc2l0aW9ucyI6W3siZGF0ZXRpbWUiOjE3MjQ2NTgyMTY0MjgsInBhaXIiOiJ1c2RqcHkiLCJidXlzZWxsIjoiYnV5IiwibG90IjoxLCJwcmljZSI6MTQ1LjQ3OX0seyJkYXRldGltZSI6MTcyNDY1ODI2OTEzMSwicGFpciI6InVzZGpweSIsImJ1eXNlbGwiOiJidXkiLCJsb3QiOjEsInByaWNlIjoxNDUuNDc5fV19, }), }) .then(response > { if (!response.ok) { throw new Error(Network response was not ok); } return response.json(); }) .then(data > { console.log(data); }) .catch(error > { console.error(Error:, error); }); }); // くじびき判定 let button_04 document.getElementById(button_04); button_04.addEventListener(click, function() { fetch(https://test-fxgame-backend.finance.ponta.jp/api/v1/lot/can-draw, { method: GET, credentials: include, headers: { Content-Type: application/json, }, }) .then(response > { if (!response.ok) { throw new Error(Network response was not ok); } return response.json(); }) .then(data > { console.log(data); let button_05 document.getElementById(button_05).disabled !data.canDraw; }) .catch(error > { console.error(Error:, error); }); }); // くじびき開始 let button_05 document.getElementById(button_05); button_05.addEventListener(click, function() { fetch(https://test-fxgame-backend.finance.ponta.jp/api/v1/lot/draw, { method: POST, credentials: include, headers: { Content-Type: application/json, }, body: JSON.stringify({ executionDate: 2024-08-01, }), }) .then(response > { if (!response.ok) { throw new Error(Network response was not ok); } return response.json(); }) .then(data > { console.log(data); // 大当たり・当たり・ハズレのモーダル表示 let result data.result; let point data.point; confirm(result + で + point + ポイント獲得しました。); }) .catch(error > { console.error(Error:, error); }); }); // 引き継ぎ let button_06 document.getElementById(button_06); button_06.addEventListener(click, function() { location.href https://test-fxgame-backend.finance.ponta.jp/relation; }); /script>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]