Pages:
Author

Topic: 2023 List Bitcoin Mixers Bitcoin Tumblers Websites - page 3. (Read 39256 times)

copper member
Activity: 2828
Merit: 4065
Top Crypto Casino
⭐Name: Mixer1.money
🔹Clearnet link: https://mixer1.money

Humm...

The website is now redirecting to https://[banned mixer]/

And [banned mixer] was an old mixer (a topic can be found at https://bitcointalksearch.org/topic/banned-mixer-bitcoin-mixer-bitcoin-1725308)
The whois hasn't changed since
Registered On2021-12-20
Updated On2023-02-03

Mixer1.money=[banned mixer].
I see no problem with it since "I trust" who asked me to list mixer1.money, but I wonder what's the idea behind

@FatFork
I removed blindmixer.com
TYVM
legendary
Activity: 1568
Merit: 2581
Top Crypto Casino
LeGaulois, it appears Blindmixer bit the dust! Their domain seems to have expired, so you should remove it from the list, at least for the time being.

Quote from: blindmixer.com
This domain has expired. Is this your domain?
Renew Now!
archived
legendary
Activity: 1344
Merit: 6415
Farewell, Leo
Can you tell the exact link where we can do this atomic swap with XMR ?
I was having the impression it was possible to do it, beyond with bitcoin. But as far as my search engine goes, it isn't. You'll have to find an intermediary to do the ALT <-> XMR swap, such as FixedFloat. There may be decentralized exchanges, but I doubt it'll be cheaper, as there's very little volume for altcoins.

By default, it would be coinjoin
That's actually smart, because the bitcoin outputs signal it is a mixer, and that's good because anyone tracing your coins can be certain that they've changed hands. The smart part is that not even the mixer knows where they are.

Alternatively, you can use a decentralized exchange like Bisq. On Bisq, there is ETH/BTC pair as well.
Yes, but ETH has very little volume, let alone other altcoins.
legendary
Activity: 1512
Merit: 4795
Can you tell the exact link where we can do this atomic swap with XMR ?
If it is bitcoin that want want to mix with monero, according to the thread that you created about it, I will still advice you to use Mixero if you can pay the fee of 1.9%.




By default, it would be coinjoin, you will have to click on advanced, to change it to advanced mixing which makes use of converting your bitcoin to monero and back to bitcoin.

Quote from: https://[banned mixer
/faqs]Our advanced mode uses a rare method of mixing in the world of cryptocurrencies, called swapping which involves exchanging funds from BTC to XMR and back to BTC. The process uses automatically generated wallets that are not linked to any exchange, making it extremely difficult to trace the transactions.


Alternatively, you can use a decentralized exchange like Bisq. On Bisq, there is ETH/BTC pair as well.
member
Activity: 65
Merit: 10
I think that the best way to mix an altcoin is to do atomic swap with XMR.

Can you tell the exact link where we can do this atomic swap with XMR ?
legendary
Activity: 1568
Merit: 2581
Top Crypto Casino
I found a similar thing at chrome-extension://cjpalhdlnbpafiamejdnhcphjbkeiagm/asset-viewer.html?url=ublock-badware

If it's from a browser extension, then the code is in JavaScript. When I see '$doc' or '$document', my mind goes to variables or objects since I'm more of a PHP guy.  Wink

In JavaScript, when you see something like $doc or $document, it usually refers to an object that represents the web page's document. It's a common convention to use a dollar sign to indicate that it's related to the DOM (Document Object Model) in the context of browser scripting. But I'm not too familiar with JavaScript syntax myself, so maybe someone else can explain better.

pinging @TryNinja



PS: Take a look at this. [banned mixer] seems to have changed their onion address a few months ago, so it would be a good idea to update the url in the first post. The new Tor url is: http://[banned mixer]/
copper member
Activity: 2828
Merit: 4065
Top Crypto Casino
Thanks both

I could post a few links but your security could be at risk.

But let's use another way.
I found a similar thing at chrome-extension://cjpalhdlnbpafiamejdnhcphjbkeiagm/asset-viewer.html?url=ublock-badware

what about for example

$doc
$doc,match-case,domain=
$doc,domain=biz

$doc and $document could be the same thing?
legendary
Activity: 1568
Merit: 2581
Top Crypto Casino
but I'm confused with <$document,match-case>, especially at the end of a string.
That's something related to Python, but I don't get what's it's supposed to match. I mean obviously a document, but how you can "match case" a document in a url opened in a browser (or a list)?

Not even sure if I'm clear

The <$document,match-case> part at the end is not standard syntax for regular expressions in Python. It could be specific to a certain scripting context or library that the script is using. The "match-case" might indicate that the match should be case-sensitive. Do you have the complete source script from which that line was extracted?
legendary
Activity: 3346
Merit: 4911
https://merel.mobi => buy facemasks with BTC/LTC
Looking to track a new way scammers are exploring

Does anyone know what the following syntax means exactly

Code:
/^https?:\/\/[0-9a-z]*\.?[-0-9a-z]{4,}\.[a-z]{2,11}\/(?:[0-9a-z]{6,8}\/)?\/?\?u=[0-9a-z]{7}&o=[0-9a-z]{7}/$document,match-case

^ is the start of a string
[0-9a-z] to match any character from a-z or 0-9
[a-z]{2,11} to match any character from a-z  but the length range must between 2 to 11
$ is the end of the string

but I'm confused with <$document,match-case>, especially at the end of a string.
That's something related to Python, but I don't get what's it's supposed to match. I mean obviously a document, but how you can "match case" a document in a url opened in a browser (or a list)?

Not even sure if I'm clear

I've worked with regex'es quite often, but i've never seen document,match-case at the end of a regex tbh... I'm wondering if `$document,match-case` is something that has been copied from somewhere else???

How i would read this regex:
/ => delimiter
^ => starts with
http => the literal string `http`
s? => zero or one `s` (so the regex will work for http:// and https://
:\/\/ => the literal string `://`
[0-9a-z]* => 0 to unlimited lowercase alphanumeric characters
\.? => zero or one dot
[-0-9a-z]{4,} => at least 4 alphanumeric lowercase characters OR dashes
\. => the literal string `.`
[a-z]{2,11} => between 2 and 11 lowercase letters
\/ => the literal string `/`
(?: => optional non capturing matchgroup start
[0-9a-z]{6,8} => between 6 and 8 lowercase alphanumeric characters
\/ => the literal string `/`
)? => optional match group end
\/? => the literal string `/` or nothing (``)
\?u= => the literal string `?u=`
[0-9a-z]{7} => exactly 7 lowercase alphanumeric characters
&o= => the literal string `&o=`
[0-9a-z]{7} => exactly 7 lowercase alphanumeric characters
/ => delimiter


$document,match-case => a piece of code, text,... that was accidentally pasted after the regex... Sure, $ demarks the end of the string, but it belongs inside the delimiter not outside

An interesting online free no-signup tool i use quite often when decypering (or creating) complex regexes is https://regex101.com/...

So, if you leave out $document,match-case, the regex would match things like
Code:
http://soijsdf545.0sjkhlzef5.sfze/slidsjz/?u=1234567&o=1234567
https://lsiflz-sltlxis.cn/?u=1234567&o=1234567
copper member
Activity: 2828
Merit: 4065
Top Crypto Casino
Looking to track a new way scammers are exploring

Does anyone know what the following syntax means exactly

Code:
/^https?:\/\/[0-9a-z]*\.?[-0-9a-z]{4,}\.[a-z]{2,11}\/(?:[0-9a-z]{6,8}\/)?\/?\?u=[0-9a-z]{7}&o=[0-9a-z]{7}/$document,match-case

^ is the start of a string
[0-9a-z] to match any character from a-z or 0-9
[a-z]{2,11} to match any character from a-z  but the length range must between 2 to 11
$ is the end of the string

but I'm confused with <$document,match-case>, especially at the end of a string.
That's something related to Python, but I don't get what's it's supposed to match. I mean obviously a document, but how you can "match case" a document in a url opened in a browser (or a list)?

Not even sure if I'm clear
hero member
Activity: 840
Merit: 756
Watch Bitcoin Documentary - https://t.ly/v0Nim
I've seen mixers for altcoins in the past, but can't tell you if they're reliable.

There are plenty!!! ... but all of them are scams.

Interesting. I wonder what is ROI, daily/weekly volume etc in case of BTC mixers and how it is related to the market cap. Entry threshold? Do these numbers make altcoins mixers unprofitable or there is just no need for them? BCH has around only 0.5% of BTC market capitalization, but is it the answer?
If we keep in mind that chipmixer was able to pay thousands of dollars per week for promoting their business on this forum, then we should assume that their volume and income is very high. According to news websites, it's believed that more than 150,000 bitcoins have been laundered on chipmixer. They weren't chargin regular fees, like 0.5%, 1% or something like that, they were absolutely free to use but instead they had fixed chip size, for example - 0.001 BTC chip, 0.002, 0.005, 0.01BTC, something like this. So, if you were to deposit 0.0012 bitcoins, you would get 0.001BTC and 0.0002BTC would be a donation from your side. Also, in order to increase your anonimity, you could lessen your bitcoins by donating some of them, probably a lot of people were doing that. They were also offering provably fair betting with chips. So, yeah, they had a great business model and were making tons of money.
Majority of exchanges charge fixed fee and also let you to choose certain range of fee in order to increase your anonimity. I bet exchanges should be earning between 1-3% from each deposit. It's a pretty good business even with a weekly volume of 10 BTC.
copper member
Activity: 2828
Merit: 4065
Top Crypto Casino



IPs keep changing
There are so many IPs to compromise and so many IPs rotating during a DDOS. Look at web hosting companies advertising their DDOS protection in their web hosting package. If you're under attack too seriously they will kick you out without asking your opinion. There is always a limit to not cross

Cloudflare itself buy IP lists from companies to complete their own
legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
The Anonymixer clearnet website was fine yesterday, but today is under another 100,000+ unique IP DDoS attack again, apologies for the inconvenience.

I am not a network engineer but isn't it possible using an industrial router to collect all of those IPs from web server logs, and add all 100k IPs to its firewall at once without significant performance penalties?

Maybe if there are hardware load balancers, they can be used so that the routers are not overwhelmed.
copper member
Activity: 2828
Merit: 4065
Top Crypto Casino
Updated with

- @mocacinno's topic link on Mixers using cloudflare's SSL certificate added
- Cloudflare/Ddos-guard.net: Yes or No added. (Ddos-guard.net goes in the same bag as Cloudflare to me. They're both potential MITM attack vectors)
- Whirlwind.money removed

to summarize what happened with Whirlwind (if someone isn't aware)


So, to summarize(and correct me if I got anything wrong):
  • The website isn't profitable (yet)
  • Deposits are working
  • The website claims to pay a very high 12% APR on deposits
  • The daily awards aren't always being added
  • Withdrawals stopped working 5 days ago
  • The signature campaign payments happen off-chain and thus can't be withdrawn now
  • User whirlwindmoney hasn't been here for more than a month
  • Support doesn't respond to inquiries
No matter what the reason is, this looks bad.
copper member
Activity: 50
Merit: 61
But now the question is: is it possible to run a BTC mixer without using third-party companies?

The Anonymixer clearnet website was fine yesterday, but today is under another 100,000+ unique IP DDoS attack again, apologies for the inconvenience.

The clearnet site should be back up by the end of today is up, without help from Cloudflare, DDOS-Guard or any other third party service.

It would take just one secretive subpoena from US Government to force Cloudflare to silently collect all traffic for 12 out of 17 mixers on this list, eavesdropping and destroying privacy for their users and similarly little pressure from "International Partners" to force DDOS-Guard to do the same for the remaining 4.

UPDATE: Clearnet site is back up - hope the 100k+ strong botnet enjoys it
copper member
Activity: 2828
Merit: 4065
Top Crypto Casino


True for CM
And who was alive during these periods, and who is still alive nowadays

But now the question is: is it possible to run a BTC mixer without using third-party companies?

The attacks are pretty severe and despite spending hours trying to fight them off on their own, they are not able.
So much so that they've given up and turned to cloudflare/ddos-guard.

DDos a site doesn't cost that much. It was a bit expensive 15-20 years ago, but nowadays for ~1500 euros, I can take your site down for a whole month. You can imagine the damages if I ruin your business for 1 month.

Quote
Even loyce.club had a DDOS last month.

Interesting...
(Are you aware if @Tryninja and others dudes have been hit too?)
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
- The tendancy to DDOS mixers started a few days after Chipmixer was shut down (confirmed by more than 1 guy)
Don't forget that CM was often plagued by DDOS too. It was the reason they gave up on the clearnet version entirely.

There is definitely a tendancy recently to attack the bitcoin mixers, and more than usual
Even loyce.club had a DDOS last month. For all I know it's the DDOS protection companies doing it Tongue Mob style, offering "protection" Tongue
copper member
Activity: 2828
Merit: 4065
Top Crypto Casino


An additional detail will be added to each site to find out who is using clouflare & co.
Not a bad idea, isn't?. It's a point that may be important for some people, so why not, eh

Reminder:
So far, Anonymixer.com is the only one which has always refused to embrace a solution, with all the risks that this may represent for some people.

Me, years ago:

Between blackmail extorsions, I even suspect that some Mixers attack other Mixers, among other methods they use

Me, a few days ago:

There is definitely a tendancy recently to attack the bitcoin mixers, and more than usual

Still avalaible nowadays, no matter if the service is new or old. If you follow the niche, you know who has been hit. (Sinbad, Whirlwind, ...)
I bring some facts I collected here and there the last few days

- "There are about 4 or 5 services facing a ddos attack the last few days. It means ~30% of the market. "
- It doesn't matter if the site is old (a contender) or a newcomer (not a serious contender yet). Thormixer is the perfect example. As soon as it appeared on the scene, it was attacked.
- The tendancy to DDOS mixers started a few days after Chipmixer was shut down (confirmed by more than 1 guy)


Make your own opinion but I have an adage: follow the money
copper member
Activity: 12
Merit: 10
A new mixer in the town, Thormixer
This is just an alert
I discovered that the site is offline today (both the clearnet and Tor mirror, which somehow rules out the possibility of a DDoS attack). I am not sure how long it has been off but let's give it some days or weeks and see if it will be back up.

The site is online. Clearnet and onion.  But im working on the web to improve the service and some parts will be unstable throughout some days. Don't worry, it will be completely online again soon. Be patient please. Thanks.

not using our dear friend Cloudflare.
We activated Cloudflare after a rude DDoS attack that we could only endure for a few days. It is temporary while I look for another solution, but I wanted to inform you here.
copper member
Activity: 2016
Merit: 1783
฿itcoin for all, All for ฿itcoin.
A new mixer in the town, Thormixer
This is just an alert
I discovered that the site is offline today (both the clearnet and Tor mirror, which somehow rules out the possibility of a DDoS attack). I am not sure how long it has been off but let's give it some days or weeks and see if it will be back up.
Pages:
Jump to: