Help
RSS
API
Feed
Maltego
Contact
Domain > rider.jkbx.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2024-09-01
35.82.188.176
(
ClassC
)
2025-11-03
34.209.102.43
(
ClassC
)
Port 443
HTTP/1.1 200 OKDate: Mon, 03 Nov 2025 07:25:44 GMTContent-Type: text/html; charsetutf-8Content-Length: 8201Connection: keep-alivex-amzn-RequestId: b6c2c985-a733-4e44-81ae-0209baec9b85x-amzn-Remapped-content-length: 8201x-amz-apigw-id: TdLWuGH4vHcEGJgX-Amzn-Trace-Id: Root1-690858f7-105a2115342822de6638a5ad;Parent2c66615c600d3575;Sampled0;Lineage1:0f47ebf8:0 !doctype html>html langen classh-full bg-gray-50>head> meta charsetUTF-8 /> meta nameviewport contentwidthdevice-width, user-scalableno, initial-scale1.0, maximum-scale1.0, minimum-scale1.0 /> meta http-equivX-UA-Compatible contentieedge /> title>JKBX Rider/title> script srchttps://cdn.tailwindcss.com>/script>/head>body classh-full> div classflex min-h-full flex-col justify-center py-12 px-6 lg:px-8> div classmt-10 sm:mx-auto sm:w-full sm:max-w-640px> div classbg-white px-6 py-12 shadow sm:rounded-lg sm:px-12> div idapp>/div> /div> /div> /div> script srchttps://unpkg.com/babel-standalone@6/babel.min.js>/script> script srchttps://unpkg.com/babel-polyfill@6/dist/polyfill.min.js>/script> script crossorigin srchttps://unpkg.com/react@18/umd/react.development.js>/script> script crossorigin srchttps://unpkg.com/react-dom@18/umd/react-dom.development.js>/script> script crossorigin srchttps://unpkg.com/@auth0/auth0-react@2.2.1/dist/auth0-react.js>/script> script typetext/babel data-presetses2015,es2016,es2017,stage-3,react> const { Auth0Provider, useAuth0 } reactAuth0; const { useState, useRef } React; const apiRoot window.location.href.replace(/\/$/, ); const Playground () > { const { user, isAuthenticated, isLoading, getAccessTokenSilently, loginWithPopup, logout, } useAuth0(); const fileInput useRef(null); const isUploading, setIsUploading useState(false); const response, setResponse useState(null); if (isLoading || isUploading) { return ( div classNameflex gap-2 items-center justify-center text-gray-500 text-lg font-medium> svg classNameanimate-spin -ml-1 mr-3 h-8 w-8 text-blue-500 xmlnshttp://www.w3.org/2000/svg fillnone viewBox0 0 24 24 > circle classNameopacity-25 cx12 cy12 r10 strokecurrentColor strokeWidth4 >/circle> path classNameopacity-75 fillcurrentColor dM4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z >/path> /svg> Please wait… /div> ); } const doUpload async () > { const token await getAccessTokenSilently(); const formData new FormData(); formData.append(upload, fileInput.current.files0); setIsUploading(true); const res await fetch(`${apiRoot}/artist_image`, { method: post, body: formData, headers: { Authorization: `Bearer ${token}`, }, }); setIsUploading(false); setResponse(await res.json()); }; const uploadButton ( label htmlForupload classNamerelative classNameflex w-full justify-center rounded-md bg-blue-600 px-3 py-1.5 text-sm font-semibold leading-6 text-white shadow-sm hover:bg-blue-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-blue-600 > span>{response ? Upload another image : Upload image}/span> input typefile idupload nameupload ref{fileInput} onChange{doUpload} classNamesr-only /> /label> ); const signOutbutton ( button onClick{() > logout({ returnTo: window.location.origin })} classNameblock mx-auto rounded bg-white px-2 py-1 text-xs font-semibold text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 hover:bg-gray-50 > Sign out /button> ); return isAuthenticated ? ( response ? ( div classNamespace-y-10 py-10> h1 classNametext-center text-2xl font-bold leading-9 tracking-tight text-gray-700> Your image has been uploaded! /h1> table classNamew-full divide-y divide-gray-300> thead> tr> th scopecol classNamepy-3.5 text-left text-sm font-semibold text-gray-900 > Bucket /th> /tr> /thead> tbody classNamedivide-y divide-gray-200> tr> td classNamepy-4 text-sm text-gray-500> {response.bucket} /td> /tr> /tbody> /table> table classNamew-full divide-y divide-gray-300> thead> tr> th scopecol colspan3 classNamepy-3.5 text-left text-sm font-semibold text-gray-900 > File /th> /tr> /thead> tbody classNamedivide-y divide-gray-200> {Object.entries(response.files).map((size, { name, url }) > ( tr key{size}> td classNamepy-4 text-sm text-gray-500 pr-3> {size} /td> td classNamepy-4 text-sm text-gray-500> p classfont-medium>{name}/p> a classNametext-blue-600 hover:text-blue-900 text-xs href{url} target_blank > {url} /a> /td> /tr> ))} /tbody> /table> {uploadButton} {signOutbutton} /div> ) : ( div classNamespace-y-10 py-10> h1 classNametext-center text-2xl font-bold leading-9 tracking-tight text-gray-700> Hi, {user.name}! /h1> p classNametext-center font-bold tracking-tight text-gray-700> Please make sure your image filename follows this format before uploading: artist_name_xlarge.extensionbr />br /> For example: ed_sheeran_xlarge.jpg /p> {uploadButton} {signOutbutton} /div> ) ) : ( div classNamespace-y-10> h1 classNametext-center text-2xl font-bold leading-9 tracking-tight text-gray-700> Sign in to upload an artist image /h1> button onClick{() > loginWithPopup()} classNameflex w-full justify-center rounded-md bg-blue-600 px-3 py-1.5 text-sm font-semibold leading-6 text-white shadow-sm hover:bg-blue-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-blue-600 > Sign in /button> /div> ); }; const App () > { const identityProvider { domain: jkbx.us.auth0.com, clientId: AHiNfCXgcOWnOMwVgV3URtHLLfseYYeQ, }; return ( React.StrictMode> Auth0Provider domain{identityProvider.domain} clientId{identityProvider.clientId} key{identityProvider.domain} audiencehttps://dev-zgy3j8bmkquw08od.us.auth0.com/api/v2/ authorizationParams{{ redirect_uri: apiRoot }} > Playground /> /Auth0Provider> /React.StrictMode> ); }; const root ReactDOM.createRoot(document.getElementById(app)); root.render(App />); /script>/body>/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
]