Help
RSS
API
Feed
Maltego
Contact
Domain > vigorswap.io
×
Welcome!
Right click nodes and scroll the mouse to navigate the graph.
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2024-10-30
91.206.178.147
(
ClassC
)
2025-01-16
91.206.178.114
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyDate: Thu, 16 Jan 2025 12:16:55 GMTServer: ApacheLocation: https://vigorswap.io/Content-Length: 229Content-Type: text/html; charsetiso-8859-1 !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN>html>head>title>301 Moved Permanently/title>/head>body>h1>Moved Permanently/h1>p>The document has moved a hrefhttps://vigorswap.io/>here/a>./p>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Thu, 16 Jan 2025 12:16:56 GMTServer: ApacheOnion-Location: http://zk46f5oaqwhtomo4bqp4u64taocyihqtapodemh3cogs4m45clgl25id.onionTransfer-Encoding: chunkedContent-Type: text/html; charsetUTF-8 !DOCTYPE html>html langen> head> meta charsetUTF-8>meta nameviewport contentwidthdevice-width, initial-scale1.0>title>VigorSwap | Instant & Private Crypto Exchanges | Low Fees & No Account Needed/title>meta namedescription contentVigorSwap is an instant cryptocurrency exchange, swap Bitcoin, Monero, Ethereum and more. Fast transactions, no registration, low fees, and complete privacy. />meta namekeywords contentvigorswap,VigorSwap,vigorswap exchange, vigor swap, anonymous monero exchange, no kyc exchange, swap monero to bitcoin, non custodial exchange />meta namerobots contentindex, follow>meta propertyog:title contentInstant & Private Crypto Exchanges | VigorSwap | Low Fees & No Account Needed /> link relicon typeimage/x-icon href/favicon.ico?v2>link relapple-touch-icon sizes76x76 href/apple-touch-icon.png?v2>link relicon typeimage/png sizes32x32 href/images/favicon-32x32.png?v2>link relicon typeimage/png sizes16x16 href/images/favicon-16x16.png?v2>link relmanifest href/images/site.webmanifest>link relmask-icon href/images/safari-pinned-tab.svg color#5bbad5>meta namemsapplication-TileColor content#da532c>meta nametheme-color content#000000>meta propertyog:image contenthttps://vigorswap.io/images/main.png>meta propertyog:image:type contentimage/png>meta propertyog:image:width content1024>meta propertyog:image:height content1024>link hrefcss/slimselect.min.css relstylesheet> link relpreload hrefcss/font/font-suse.woff2 asfont typefont/woff2 crossoriginanonymous> link relpreload hrefcss/font/raleway.woff2 asfont typefont/woff2 crossoriginanonymous>link hrefcss/dark.css relstylesheet>link relstylesheet hrefcss/bootstrap.css>link relstylesheet hrefcss/cs.css>link hrefcss/font.css relstylesheet>style>.selection {margin-top:auto; padding-left:5px;}.ss-content { height:250px;}.ss-option{ color:white !important; font-family:Raleway !important; font-weight:500;}.ss-values { overflow:hidden;}.ss-single {min-width:150px;max-width:200px;overflow:hidden;text-align:left;font-family:Raleway sans-serif;font-weight:500;}.cut-long-adres { width:105px;} @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.02); } 100% { transform: scale(1); } }.slidrs { margin:auto;}#hero { }.anncm { margin-bottom:0; color:rgba(244,35,100); font-weight:700 !important;font-family: SUSE, sans-serif !important; font-size:16px;}. #to_amount.error::placeholder { color: white; opacity:1; } @keyframes blink { 0% { content: ...; } 33% { content: ..; } 66% { content: .; } 100% { content: ...; } } /* Apply animation */ #to_amount.loading::placeholder { animation: blink 1s step-start infinite; } #from_amount.loading::placeholder { animation: blink 1s step-start infinite; } /style>script> function showLoadingReverse() { const toAmountInput document.getElementById(from_amount); toAmountInput.classList.add(loading); toAmountInput.placeholder ...; } function showLoading() { const toAmountInput document.getElementById(to_amount); toAmountInput.classList.add(loading); toAmountInput.placeholder ...; } function hideLoadingRev() { const toAmountInput document.getElementById(from_amount); toAmountInput.classList.remove(loading); } function hideLoading() { const toAmountInput document.getElementById(to_amount); toAmountInput.classList.remove(loading); } let typingTimer; const doneTypingInterval 500; // Time in milliseconds function fetchRate() { const fromAmount document.getElementById(from_amount).value; const currencyFrom document.getElementById(currency_from).value; const currencyTo document.getElementById(currency_to).value; const toAmountInput document.getElementById(to_amount); if (!fromAmount || fromAmount 0 || !currencyFrom || !currencyTo) { toAmountInput.value ; toAmountInput.placeholder Amount to receive; toAmountInput.classList.remove(error); hideLoading(); return; } showLoading() if (fromAmount && currencyFrom && currencyTo) { fetch(`javascript/rates?from_amount${fromAmount}¤cy_from${currencyFrom}¤cy_to${currencyTo}`) .then(response > response.json()) .then(data >{ if (data.error) { toAmountInput.value ; toAmountInput.placeholder data.error; toAmountInput.classList.add(error); } else { toAmountInput.value data.to_amount || ; toAmountInput.placeholder Amount to receive; toAmountInput.classList.remove(error); } hideLoading() }) } } function fetchReverseRate() { const fromAmount document.getElementById(to_amount).value; const currencyFrom document.getElementById(currency_from).value; const currencyTo document.getElementById(currency_to).value; const toAmountInput document.getElementById(from_amount); if (!fromAmount || fromAmount 0 || !currencyFrom || !currencyTo) { toAmountInput.value ; toAmountInput.placeholder Amount to exchange from; toAmountInput.classList.remove(error); hideLoadingRev(); return; } showLoadingReverse() if (fromAmount && currencyFrom && currencyTo) { fetch(`javascript/rates?to_amount${fromAmount}¤cy_from${currencyFrom}¤cy_to${currencyTo}`) .then(response > response.json()) .then(data >{ if (data.error) { toAmountInput.value ; toAmountInput.placeholder data.error; toAmountInput.classList.add(error); } else { toAmountInput.value data.from_amount || ; toAmountInput.placeholder Amount to exchange from; toAmountInput.classList.remove(error); } hideLoadingRev() }) } }function setupEventListeners() { const fromAmountInput document.getElementById(from_amount); const currencyFromSelect document.getElementById(currency_from); const currencyToSelect document.getElementById(currency_to); const toAmountInput document.getElementById(to_amount); fromAmountInput.addEventListener(input, () > { clearTimeout(typingTimer); showLoading(); typingTimer setTimeout(fetchRate, doneTypingInterval); }); toAmountInput.addEventListener(input, () > { clearTimeout(typingTimer); showLoadingReverse(); typingTimer setTimeout(fetchReverseRate, doneTypingInterval); }); currencyFromSelect.addEventListener(change, () > { showLoading(); fetchRate() }); currencyToSelect.addEventListener(change, () > { showLoading(); fetchRate() fetchRate() });} document.addEventListener(DOMContentLoaded, setupEventListeners); /script>/head> body>nav classnavbar navbar-expand-lg fixed-top shadow-sm> div classcontainer-lg> a classnavbar-brand fw-bold href./>img altVigorSwap classheaderimagea src/images/logo_text_blacknew.png width180 height42>/a> button idnavbarToggle classnavbar-toggler typebutton data-bs-togglecollapse data-bs-target#navbarNav aria-controlsnavbarNav aria-expandedfalse aria-labelToggle navigation> span classnavbar-toggler-icon>/span> /button> div classcollapse navbar-collapse idnavbarNav> ul classnavbar-nav mx-auto> li classnav-item> a classnav-link aria-currentpage href./>Home/a> /li> li classnav-item> a classnav-link href/about>About/a> /li> li classnav-item> a classnav-link href/p2p>P2P/a> /li> li classnav-item> a classnav-link href/affiliate>Affiliate/a> /li> li classnav-item> a classnav-link href/api-docs>API/a> /li> li classnav-item> a classnav-link href/contact>Contact/a> /li> li classnav-item slidrs> div iddeskt-md> input typecheckbox classcheckboxdark idcheckboxdark> label forcheckboxdark classcheckboxdark-label> i classfas fa-moon>/i> i classfas fa-sun>/i> span classball>/span> /label>/div> /li> div stylemargin:auto; font-weight:600>span>Light Mode/span>/div> /ul> /div> /div> /nav>section classhero idhero> div classcontainer-lg> div classrow align-items-start> script> const toggleButton document.getElementById(navbarToggle); const navbarNav document.getElementById(navbarNav); toggleButton.addEventListener(click, () > { navbarNav.classList.toggle(collapse); }); /script> script> const checkbox document.getElementById(checkboxdark); // Function to set a cookie function setCookie(name, value, days) { const date new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); // days in milliseconds const expires expires + date.toUTCString(); document.cookie name + + value + ; + expires + ;path/; } // Function to get a cookie function getCookie(name) { const nameEQ name + ; const ca document.cookie.split(;); for (let i 0; i ca.length; i++) { let c cai; while (c.charAt(0) ) c c.substring(1, c.length); if (c.indexOf(nameEQ) 0) return c.substring(nameEQ.length, c.length); } return null; } // Function to apply the dark mode based on the cookie function applyTheme() { const theme getCookie(theme); if (theme dark) { document.body.classList.add(dark); checkbox.checked true; } else { document.body.classList.remove(dark); checkbox.checked false; } } // Event listener for the checkbox checkbox.addEventListener(change, () > { if (checkbox.checked) { document.body.classList.add(dark); setCookie(theme, dark, 1); // Set cookie for dark mode } else { document.body.classList.remove(dark); setCookie(theme, light, 1); // Set cookie for light mode } }); // Apply the theme on page load applyTheme();/script> div classcol-sm-6 left-main> img styleposition:absolute; margin-left:-150px; animation: pulse 3s infinite; srcimages/web-app-manifest-192x192.png height150 width150> h1 classdisplay-2 fw-bold suse-a iddesh1 stylefont-size:3rem;>VigorSwap Instant Crypto Exchange/h1> p> Trade a range of cryptocurrencies securely and privately, Including Monero, Tether, Bitcoin & more. No hassle of personal information or verifications. Enjoy fast and private swaps with low fees on VigorSwap. /p> p classanncm>We are back online!/p> p>We are happy to announce we are back online! These past few weeks we have been upgrading our infrastructure & servers and we are proud now to be back. Please note we have updated our a hrefhttp://zk46f5oaqwhtomo4bqp4u64taocyihqtapodemh3cogs4m45clgl25id.onion>onion address./a>/p>div classwrapper> div classplan> header stylemargin-bottom:15px; padding-bottom:0;>img classic-image srcimages/iconan.png> h4 classplan-title>Why choose VigorSwap?/h4> /header> ul classplan-features> li>Fast, Private & Anonymous swaps./li> li>a hrefhttp://zk46f5oaqwhtomo4bqp4u64taocyihqtapodemh3cogs4m45clgl25id.onion>Tor onion mirror available/a>/li> li>No 3rd party tracking or analytics./li> li>Low fees and non custodial./li> li>Fast exchange times/li> /ul> /div> /div> /div> div classright-main> form action methodGET> div classform-top> div classform> div classtitle stylefont-size:2rem;>New Swap/div> div styledisplay:flex; flex-direction:row>div classinput-container inpute drop> input namefrom_amount idfrom_amount classinput amount typetext placeholderAmount to exchange from value> div classcut stylewidth:80px>/div> label forfrom_amount classplaceholderlabel>You Send/label> /div> div classinput-container selection drop> label forcurrency_from>/label> select namecurrency_from classinput selt idcurrency_from> option valueXMR>XMR - Monero/option>option valueBTC>BTC - Bitcoin/option>option valueUSDT>USDT - Tether (Ethereum)/option>option valueETH>ETH - Ethereum/option>option valueETHOP>ETHOP - Ethereum (Optimism)/option>option valueLTC>LTC - Litecoin/option>option valueBNB>BNB - BNB BSC/option>option valueDAI>DAI - DAI Token (Ethereum)/option>option valuePEPE>PEPE - PEPE Coin (ETH)/option>option valueUSDC>USDC (Ethereum)/option>option valueSOL>SOL - Solana/option>option valueTRON>Tron/option>option valueUSDTTRC>USDT TRX - Tether(TRX TRC20)/option>option valueUSDTBSC>USDT BSC - Tether (BSC)/option>option valueETHARB>ETH ARB - Ethereum Arbitrum/option>option valueETHBASE>ETH BASE - Ethereum (Base)/option>option valueWBTC>WBTC - Wrapped Bitcoin (Ethereum)/option>option valueUSDTARB>USDT ARB - USDT on Arbitrum/option>option valueADA>ADA - Cardano/option>option valueTON>TON - Toncoin/option>option valueMATIC>MATIC - Polygon/option>option valueZCASH>ZCASH - ZEC/option>option valueBCH>BCH - Bitcoin Cash/option>option valueDASH>DASH/option>option valueDOGE>DOGE - Dogecoin/option>option valueLINK>LINK - Chainlink (ETH)/option>option valueAVAX>AVAX - Avalanche C (AVAX-C)/option>option valueARB>ARB - Arbitrum (ARB)/option>option valueUNI>UNI - Uniswap (ETH)/option>option valueCRO>CRO - Cronos (ETH)/option>option valueWETH>WETH - Wrapped Ether (ETH)/option>option valueLEO>LEO - LEO (ETH)/option>option valueBONK>BONK - BONK (ETH)/option>option valueFLOKI>FLOKI - Floki (ETH)/option>option valueUSDTSOL>USDT SOL - USDT Solana/option>option valueUSDCSOL>USDC SOL - USDT Solana/option>option valueWIF>WIF - Dogwifhat (SOL)/option>option valueUSDE>USDE - Ethena USD (ETH)/option>option valueRAY>RAY - Raydium (SOL)/option>option valueJUP>JUP - Jupiter Token (SOL)/option>option valueUSDCBSC>USDC BSC - USDC Smartchain /option>option valueUSDTPOLY>USDT POLY - USDT Polygon/option>option valueUSDCARB>USDC ARB - USDC Arbitrum/option>option valueBRETT>BRETT - Brett (BASE)/option>option valueOPT>OPT - Optimism (OPT)/option>option valuePOPCAT>POPCAT - Popcat (SOL)/option>option valueBTT>BTT - Bittorrent (BSC)/option>option valueNEIRO>NEIRO - Neiro (ETH)/option>option valueAERO>AERO - Aerodrome Finance (BASE)/option>option valueAPE>APE - Apecoin (ETH)/option>option valueNOT>NOT - Notcoin (TON)/option>option valueUSDTOPT>USDT OPT- USDT Optimism/option>option valueUSDTAVA>USDT AVAX - USDT Avalanche/option>option valueKASPA>KASPA - Kaspa/option>option valueXAUT>XAUT - Gold Tether (ETH)/option>/select> div classcut cut-short cut-short-top>/div> label forfrom classplaceholderlabel cut-short-top>From/label> /div> /div> div styledisplay:flex; flex-direction:row> div classinput-container inpute two1> input nameto_amount idto_amount classinput amount typetext placeholderAmount to receive value> div classcut stylewidth:70px>/div> label forto_amount classplaceholderlabel>You Get/label> /div> div classinput-container selection two1> select namecurrency_to classinput selt idcurrency_to>option valueBTC>BTC - Bitcoin/option>option valueXMR>XMR - Monero/option>option valueETH>ETH - Ethereum/option>option valueUSDT>USDT - Tether (Ethereum)/option>option valueLTC>LTC - Litecoin/option>option valuePEPE>PEPE - PEPE Coin (ETH)/option>option valueBNB>BNB - BNB BSC/option>option valueUSDTTRC>USDT TRX - Tether(TRX TRC20)/option>option valueUSDC>USDC (Ethereum)/option>option valueTRON>Tron/option>option valueDAI>DAI - DAI Token (Ethereum)/option>option valueSOL>SOL - Solana/option>option valueUSDTBSC>USDT BSC - Tether (BSC)/option>option valueETHARB>ETH ARB - Ethereum Arbitrum/option>option valueETHBASE>ETH BASE - Ethereum (Base)/option>option valueWBTC>WBTC - Wrapped Bitcoin (Ethereum)/option>option valueUSDTARB>USDT ARB - USDT on Arbitrum/option>option valueADA>ADA - Cardano/option>option valueTON>TON - Toncoin/option>option valueMATIC>MATIC - Polygon/option>option valueZCASH>ZCASH - ZEC/option>option valueBCH>BCH - Bitcoin Cash/option>option valueDASH>DASH/option>option valueDOGE>DOGE - Dogecoin/option>option valueLINK>LINK - Chainlink (ETH)/option>option valueAVAX>AVAX - Avalanche C (AVAX-C)/option>option valueARB>ARB - Arbitrum (ARB)/option>option valueUNI>UNI - Uniswap (ETH)/option>option valueCRO>CRO - Cronos (ETH)/option>option valueWETH>WETH - Wrapped Ether (ETH)/option>option valueLEO>LEO - LEO (ETH)/option>option valueBONK>BONK - BONK (ETH)/option>option valueFLOKI>FLOKI - Floki (ETH)/option>option valueUSDTSOL>USDT SOL - USDT Solana/option>option valueUSDCSOL>USDC SOL - USDT Solana/option>option valueWIF>WIF - Dogwifhat (SOL)/option>option valueUSDE>USDE - Ethena USD (ETH)/option>option valueRAY>RAY - Raydium (SOL)/option>option valueJUP>JUP - Jupiter Token (SOL)/option>option valueUSDCBSC>USDC BSC - USDC Smartchain /option>option valueUSDTPOLY>USDT POLY - USDT Polygon/option>option valueUSDCARB>USDC ARB - USDC Arbitrum/option>option valueBRETT>BRETT - Brett (BASE)/option>option valueOPT>OPT - Optimism (OPT)/option>option valuePOPCAT>POPCAT - Popcat (SOL)/option>option valueETHOP>ETHOP - Ethereum (Optimism)/option>option valueBTT>BTT - Bittorrent (BSC)/option>option valueNEIRO>NEIRO - Neiro (ETH)/option>option valueAERO>AERO - Aerodrome Finance (BASE)/option>option valueAPE>APE - Apecoin (ETH)/option>option valueNOT>NOT - Notcoin (TON)/option>option valueUSDTOPT>USDT OPT- USDT Optimism/option>option valueUSDTAVA>USDT AVAX - USDT Avalanche/option>option valueKASPA>KASPA - Kaspa/option>option valueXAUT>XAUT - Gold Tether (ETH)/option>script srcjavascript/slimselect.min.js>/script> script> new SlimSelect({ select: #currency_to });/script> script> new SlimSelect({ select: #currency_from });/script>/select> div classcut cut-short stylewidth:35px;>/div> label forcurrency_to classplaceholderlabel>To/label> /div> /div> input typehidden namestage valuecalc> input typehidden namereferral value> h5 iderror_s stylecolor:red;>/h5> button idsubmitbtncalc typetext classsubmit>EXCHANGE/button> /div> /div>/form> script> window.onload function() { document.getElementById(submitbtn).setAttribute(disabled, disabled); document.getElementById(submitbtn).classList.add(disabledbtn); makeApiCall();};/script> /div> p classdisplay-2 fontdes stylefont-size:1rem;>Fast, Private, Instant. No KYC Exchange./p> h1 classdisplay-2 fw-bold iddeshmo stylefont-size:1.5rem; margin-top:-3rem;>VigorSwap Instant Crypto Exchange/h1> /div> /div>/section>section classservices idservices> div classcontainer> h2 classdisplay-5 fw-bold mb-4>How to exchange coins anonymously?/h2> div classrow> div classcol-lg col-sm-6 mt-4> div classcard> i classbi bi-cup-hot-fill>1/i> div classcard-body> h5 classcard-title fw-bold>Select coins to swap/h5> p classcard-text>Select a pair to exchange, we offer Monero (XMR), Bitcoin (BTC), Ethereum (ETH), USDT, USDC, DAI, BNB & more are added weekly./p> /div> /div> /div> div classcol-lg col-sm-6 mt-4> div classcard> i classbi bi-cup-hot-fill>2/i> div classcard-body> h5 classcard-title fw-bold>Create Swap/h5> p classcard-text>Enter your address to receive the exchanged coins, and proceed to create the swap./p> /div> /div> /div> div classcol-lg col-sm-6 m-auto mt-4> div classcard> i classbi bi-cup-hot-fill>3/i> div classcard-body> h5 classcard-title fw-bold>Complete the Swap/h5> p classcard-text>Send the coins you want to swap, we automatically exchange as soon as it is received, and send it to you as soon as its confirmed, enjoy fast swaps with the average time being 5 minutes!/p> /div> /div> /div> /div> /div>/section>section classabout idabout> div classcontainer> h2 classdisplay-5 fw-bold mb-4>Services/h2> p>Our only official domain is b>vigorswap.io/b>/p> p styleword-wrap:anywhere;>Our only official onion domain is b>zk46f5oaqwhtomo4bqp4u64taocyihqtapodemh3cogs4m45clgl25id.onion/b>/p> p styleword-wrap:anywhere;>We have an affiliate program with a stylecolor:#89e5f4 hrefaffiliate>details here/a>/p> p styleword-wrap:anywhere;>For partners who would like to use our platform for exchanges, we have an API, a stylecolor:#89e5f4 hrefapi-docs>details here/a>/p> /div>/section>section classcontact idcontact> div classcontainer> h2 classdisplay-5 fw-bold mb-4 stylemargin-bottom:0 !important; margin-top:0;>Contact & Socials/h2> div classrow> div classcol-sm-4 mt-4 stylewidth:100%; margin-bottom:0; margin-top:0 !important> h5>Follow us on our social media accounts to keep updated with the latest./h5> div classsocial-media stylemargin-top:1rem;> a stylecolor:#85c6ff; hrefhttps://x.com/VigorSwap>i classbi bi-twitter>Twitter/i>/a> a stylecolor:#85c6ff hrefhttps://t.me/vigorswapexchange>i classbi bi-instagram>Telegram Channel/i>/a> a stylecolor:#85c6ff; hrefmailto:support@vigorswap.io>i classbi bi-instagram>Email/i>/a> a stylecolor:#85c6ff; hrefcontact>i classbi bi-instagram>Other Contacts/i>/a> /div> /div> /div> /div>/section>footer classtext-center p-3 bg-body-tertiary> div stylecolor:#ffffff;>© 2024. All Rights Reserved./div> div classddaeebot> div classmt-5 text-center left-tex>p stylefont-family: SUSE;font-weight: bold;font-size: 17px;>VigorSwap official URLs:/p>p>vigorswap.io/p>p>Onion/Tor: br>zk46f5oaqwhtomo4bqp4u64taocyihqtapodemh3cogs4m45clgl25id.onion/p>/div> div classmt-5 text-center styledisplay:flex; gap:1.5rem;> div> p classbottomhead>a href/contact>Contact/Help/a>/p> p classbottomhead>a href/affiliate>Affiliate Program/a>/p> p classbottomhead>a href/about>About/a>/p> /div> div> p classbottomhead>a href/api-docs>API information/a>/p> p classbottomhead>a href/terms>Terms of service/a>/p> p classbottomhead>a href/about#faq>FAQ/a>/p> /div> /div>/div>/footer> /body>/html>
Subdomains
Date
Domain
IP
www.vigorswap.io
2025-01-16
91.206.178.114
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
]