Search content
Sort by

Showing 5 of 5 results by HazakiYoshimi
Post
Topic
Board Mining (Altcoins)
Re: RavenCoin (RVN), x16r NVidia miner. UPD! Windows version
by
HazakiYoshimi
on 05/04/2018, 17:53:26 UTC
Seems modified from CCMiner, but no source code.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][BTCN] *BitcoiNote* - Promissory note for Bitcoin deals
by
HazakiYoshimi
on 05/04/2018, 17:45:53 UTC
any body try this?
Post
Topic
Board Mining (Altcoins)
Re: [DSTM] fee remover for dstm windows & HOW to make your own
by
HazakiYoshimi
on 14/03/2018, 13:57:16 UTC
The amount of time it would take to remove it and sort it all, it would be more financially beneficial to be doing other work instead of this. In my opinion.

Unless you're already have some power like @ap0stol.

 :-)
Post
Topic
Board Mining (Altcoins)
Re: [DSTM] fee remover for dstm windows & HOW to make your own
by
HazakiYoshimi
on 14/03/2018, 13:50:26 UTC
1. Remove some exe flag and unpack dstm with x64dbg+scylla. And you get working unpacked binary. Upx -d have a bug with exe with dynamic base.
2. After that you can rewrite some code to use wallet from —user switch for devfee wallet.

P.s.  it is real to patch binary for fully disable devfee mining, but I don’t find asm place to change...

brilliant, you're the great one.

and how about bminer? upx -d didn't work.
Post
Topic
Board Mining (Altcoins)
[DSTM] fee remover for dstm windows & HOW to make your own
by
HazakiYoshimi
on 14/03/2018, 02:39:03 UTC
Hey guys,

I don't want to talk about Morality, just tech.

Sorry for delay. According to this thread https://bitcointalk.org/index.php?topic=2800586.0 and this paper https://arxiv.org/pdf/1703.06545.pdf, we known that Stratum protocol is really unsafe.

If we can performance MITM attack, hijacking and tampering Stratum protocol, It makes something happen. Replacing worker from **mining.authorize** and **mining.submit**, all mining result is yours. Also you can attack mining farm by compromising DNS server or the farm's router. And so on.

In this case(https://bitcointalk.org/index.php?topic=2800586.0), The guy redirect dstm connections by iptable, bypassing SSLCert verification, and performing MITM to dstm, redirect the dev fee to his own. It's brilliant.

Miner's author should pay more attention about their miner's security. And we should use SSL to connect to the mining pool.

OK, finally, here's a tutorial for make dstm fee to yours. Cause I dont know how to performance MITM in Windows, I use api hook.

1. Unpacked dstm, by upx -d, notice the unpacked file is corrupted,
2. Open it with ida pro
3. search string **mining.authorize** and **mining.submit**, the functions contains this strings is the key to do redirection.
4. search string *sslw: connection closed*, the functions contains this strings is the function to connect pool.
5. Writing a dll file with detours, hook the functions you found, replace wallet to yours, replace pool address and port to your choise if you dont mine in flypool.
6. done.

That's how this repo do https://github.com/HazakiYoshimi/DSTM-equihash-miner-NO-DEV-FEE. There's no source code because i known somebody modify wallet to their own and release.

discussion is welcome.

and my repo contains xmr miner no dev fee project, it's simple to do that with source code.