Pages:
Author

Topic: Ethereum Mining NoDevFee 0% v15.0 🔥 - page 19. (Read 164844 times)

newbie
Activity: 43
Merit: 0
With a worker name of "default" ?
Is claymore also using the same ??

To be pricese.. did Falcon get the same from claymore for obvious reasons... ?


If you do not set a worker name, it shows up as default in ethermine. Claymore does that, and even if someone is running miner with no worker name, it will show up as default.
member
Activity: 434
Merit: 10
so it appears to be working but in my pool it is not showing a second worker? should I add the address.workername or something?
newbie
Activity: 6
Merit: 0
With a worker name of "default" ?
Is claymore also using the same ??

To be pricese.. did Falcon get the same from claymore for obvious reasons... ?
newbie
Activity: 43
Merit: 0
Hi,

I already found out, that this program is a scam by disassembling and debugging. Plus I proposed a method to patch it, so that it will behave like we would have expected. With this modification, all Claymore's DevFeeMining will go to your own ethereum-address and the NoDevFee71-program evolves into a very nice and smooth running tool.


Hi,

I have found no evidence of virus activity in the code and no evidence for the strange redirection to the private stratum-server IP I reported. It could be a result of using the nicehash-software for some time, in between (I use it as auto-fallback, if the main poolmining has a problem).
BUT it has a random redirection to the authors mining-address 0x78.. build in. After I patched the software, all DevFee arrives at my own account, without exception.
The following submitted-shares numbers are broken down for a 100MHs mining rig for easy comparision.

Unpatched NoDevFee (24h run): mean value 176 shares per hour
Patched NoDevFee (24h run): mean value 182 shares per hour

That makes an average of 6 shares per hour mined to the authors purse.

So, dear @Millenium Falcon, thank your for programming this software, but could you please remove the undocumented mining-redirection to your purse? Or, at least, add a note to your posting regarding this topic?


How do you patching the .exe? with x64dbg? Could you add a little guide for do it please?

For the easy-goin you can open the exe with some hex-editor, then either search ASCII for 0x78 or you direct jump to address 00008EE0 (hex). There you find the authors 0x78.. address. Change it to yours and you will be fine Smiley Take care not to change any other byte but the ether-address.


Patch-Tutorial:
  • Download & Install HxD Editor from here: https://mh-nexus.de/
  • Download NoDevFee71 and unpack into a folder
  • Start HxD & use "File->Open" (Ctrl-O), browse to the NoDevFee71-Folder
  • Open the File "NoDevFee.exe"
  • Now press "Search->Replace" (Ctrl-R)
  • enter 0x783231dEBa1FaFd90b4F146fDB21a374C29737fF into the field "Search for:" and your own Ethereum-Address into field "Replace with:"
  • make sure, the selection "Datatype:" is set to "Text-string" and "Search direction"->"All" is checked
  • now press "Replace all" (Alt-A)
  • HxD should now say "Replaced 2 occurences of 0x783231dEBa1FaFd90b4F146fDB21a374C29737fF"
  • Press "Ok" and then "File->Save" (Ctrl-S)
  • Done Smiley Now all detected DevFeeMining will go to your ethereum-address.

what to do, if an error pops up, after pressing "Replace all":
  • Error "This replace operation changes file size. Do you want to proceed?" - 1st deny by pressing "No"
      .. simply check exactly, if you entered the ethereum-addresses correctly. Check, if you copied in blanks in front, or after the address and remove them
  • Error "Can't find 0x783231dEBa1FaFd90b4F146fDB21a374C29737fF"
      .. repeat the search-and-replace with address 0x69b612b2088a75054de71d7ec10dc50d3be94f55 in field "Search for:"

Regards,

borox

Code:
Donations welcome :) 
BTC 18AT1kRgSoGrw1TCPpduPnWnX7t1TK23Xo
ETH 0x3084a8657ccf9d21575e5dd8357a2deaf1904ef6


The addresses you refer are in version 7.1 (the first one) and in 5.5 (the second) .. as i'm still using v5.5 and already patched it..
What i noticed as i was surfing around.. take a look at these addresses on ethermine :

1) 0x3509f7bd9557f8a9b793759b3e3bfa2cd505ae31
2) 0x7fb21ac4cd75d9de3e1c5d11d87bb904c01880fc
3) 0xb9cf2da90bdff1bc014720cc84f5ab99d7974eba
4) 0x558d2e1a5786848dfc24080aff7928da1c7d5c3a

They all have just the classic "default" worker with that huge hashrate !! I looked for them via the hex-editor in both 7.1 and 5.5 binaries but my search didn't return anything..
Any ideas anyone ?? :/

Thank you guys !


Those could be Claymore's devfee?
hero member
Activity: 835
Merit: 1000
There is NO Freedom without Privacy
rather just see it open sourced than another closed binary. Open source is secure, fees aren't my worry.
newbie
Activity: 6
Merit: 0
Hi,

I already found out, that this program is a scam by disassembling and debugging. Plus I proposed a method to patch it, so that it will behave like we would have expected. With this modification, all Claymore's DevFeeMining will go to your own ethereum-address and the NoDevFee71-program evolves into a very nice and smooth running tool.


Hi,

I have found no evidence of virus activity in the code and no evidence for the strange redirection to the private stratum-server IP I reported. It could be a result of using the nicehash-software for some time, in between (I use it as auto-fallback, if the main poolmining has a problem).
BUT it has a random redirection to the authors mining-address 0x78.. build in. After I patched the software, all DevFee arrives at my own account, without exception.
The following submitted-shares numbers are broken down for a 100MHs mining rig for easy comparision.

Unpatched NoDevFee (24h run): mean value 176 shares per hour
Patched NoDevFee (24h run): mean value 182 shares per hour

That makes an average of 6 shares per hour mined to the authors purse.

So, dear @Millenium Falcon, thank your for programming this software, but could you please remove the undocumented mining-redirection to your purse? Or, at least, add a note to your posting regarding this topic?


How do you patching the .exe? with x64dbg? Could you add a little guide for do it please?

For the easy-goin you can open the exe with some hex-editor, then either search ASCII for 0x78 or you direct jump to address 00008EE0 (hex). There you find the authors 0x78.. address. Change it to yours and you will be fine Smiley Take care not to change any other byte but the ether-address.


Patch-Tutorial:
  • Download & Install HxD Editor from here: https://mh-nexus.de/
  • Download NoDevFee71 and unpack into a folder
  • Start HxD & use "File->Open" (Ctrl-O), browse to the NoDevFee71-Folder
  • Open the File "NoDevFee.exe"
  • Now press "Search->Replace" (Ctrl-R)
  • enter 0x783231dEBa1FaFd90b4F146fDB21a374C29737fF into the field "Search for:" and your own Ethereum-Address into field "Replace with:"
  • make sure, the selection "Datatype:" is set to "Text-string" and "Search direction"->"All" is checked
  • now press "Replace all" (Alt-A)
  • HxD should now say "Replaced 2 occurences of 0x783231dEBa1FaFd90b4F146fDB21a374C29737fF"
  • Press "Ok" and then "File->Save" (Ctrl-S)
  • Done Smiley Now all detected DevFeeMining will go to your ethereum-address.

what to do, if an error pops up, after pressing "Replace all":
  • Error "This replace operation changes file size. Do you want to proceed?" - 1st deny by pressing "No"
      .. simply check exactly, if you entered the ethereum-addresses correctly. Check, if you copied in blanks in front, or after the address and remove them
  • Error "Can't find 0x783231dEBa1FaFd90b4F146fDB21a374C29737fF"
      .. repeat the search-and-replace with address 0x69b612b2088a75054de71d7ec10dc50d3be94f55 in field "Search for:"

Regards,

borox

Code:
Donations welcome :) 
BTC 18AT1kRgSoGrw1TCPpduPnWnX7t1TK23Xo
ETH 0x3084a8657ccf9d21575e5dd8357a2deaf1904ef6


The addresses you refer are in version 7.1 (the first one) and in 5.5 (the second) .. as i'm still using v5.5 and already patched it..
What i noticed as i was surfing around.. take a look at these addresses on ethermine :

1) 0x3509f7bd9557f8a9b793759b3e3bfa2cd505ae31
2) 0x7fb21ac4cd75d9de3e1c5d11d87bb904c01880fc
3) 0xb9cf2da90bdff1bc014720cc84f5ab99d7974eba
4) 0x558d2e1a5786848dfc24080aff7928da1c7d5c3a

They all have just the classic "default" worker with that huge hashrate !! I looked for them via the hex-editor in both 7.1 and 5.5 binaries but my search didn't return anything..
Any ideas anyone ?? :/

Thank you guys !
newbie
Activity: 18
Merit: 0
mmh, I wanted to try sgminer-gm 5.5.5 to see how it compares
but it won't even start working ...

[19:29:08] Initialising kernel ethash.cl with nfactor 10, n 1024
[19:29:15] Error -4: Setting args for the DAG kernel and/or executing it.
[19:29:15] Error: clSetKernelArg of all params failed.
[19:29:15] GPU 0 failure, disabling!

(R9 Nano / Fiji)
full member
Activity: 420
Merit: 106
https://steemit.com/@bibi187
If you want no fee, why don't use sgminer-gm?

I actually do - with a kernel I wrote myself in GCN assembly. Faster and more stable than Claymore's. So why did I patch the *nix version of his miner, I hear you thinking... Simply because he attempted to stop folks from doing it, and it was a fun challenge. I'd lose hashrate going to Claymore's... and that's before accounting for fee.

How much u get on a single 1070 OC ETH+LBC ?
And i agree mh/s rate is not so stable on claymore, sgminer do the dual mining option mb i gona try this one ?
Ur self GCN assembly do dual ?

Uh... my kernel is AMD GCN ASM... a 1070 is an Nvidia GPU xD

I dont do my homework before speak Smiley
I just do this right now, thanks to take time to answer about my stupid question Wink
U are like a GPU master, never try to invest you skill on some Maya dev tools or 3D software ( render / animation / etc ).
I bet u can grab a lot of money with your competence ^^ ( autodesk is the big player )
full member
Activity: 420
Merit: 106
https://steemit.com/@bibi187
If you want no fee, why don't use sgminer-gm?

I actually do - with a kernel I wrote myself in GCN assembly. Faster and more stable than Claymore's. So why did I patch the *nix version of his miner, I hear you thinking... Simply because he attempted to stop folks from doing it, and it was a fun challenge. I'd lose hashrate going to Claymore's... and that's before accounting for fee.

How much u get on a single 1070 OC ETH+LBC ?
And i agree mh/s rate is not so stable on claymore, sgminer do the dual mining option mb i gona try this one ?
Ur self GCN assembly do dual ?
hero member
Activity: 952
Merit: 542
Freedom dies from suicide
If you want no fee, why don't use sgminer-gm?
full member
Activity: 420
Merit: 106
https://steemit.com/@bibi187
I think programs like this is unnecessary. It is pretty easy to patch claymore binary to push it to use your wallet instead of devfee ones...
I've done that and I dont need such a software at all...

It is on *nix - Win is a little bit more of a game.

Where is the *nix fix?

I disassembled his shit, found the -nofee code path, and then patched the branch where he slows down hashrate if -nofee 1 is used. Then just add the option, and voila... magic :3

Linux windows... i see no difference.
Patch exists. But i dont want to publish it due to claymore can analizy it and make his software more secure...
My rigs are working now on v9.4. Almost 2 days. Everything is fine. Now working on 9.7...

This is not a "patch" - it's being cute with network traffic.

A lot better reliable approch Smiley
Dont try to get the fee, just disable as normal, and remove the slow down hashrate code Wink

Anyway dont bypass fee, this miner is awesome. Pay the fee enjoy the coin ...
newbie
Activity: 4
Merit: 0
No, there ist any modified network packet. Just some bytes in asm code modified...
newbie
Activity: 4
Merit: 0
Linux windows... i see no difference.
Patch exists. But i dont want to publish it due to claymore can analizy it and make his software more secure...
My rigs are working now on v9.4. Almost 2 days. Everything is fine. Now working on 9.7...
full member
Activity: 490
Merit: 105
Why should we not support people who support us ( by writing miners ) ?

Sorry but I don't understand that.

==> Don't shit where you eat....
member
Activity: 85
Merit: 10
I think programs like this is unnecessary. It is pretty easy to patch claymore binary to push it to use your wallet instead of devfee ones...
I've done that and I dont need such a software at all...

It is on *nix - Win is a little bit more of a game.

Where is the *nix fix?
newbie
Activity: 4
Merit: 0
I think programs like this is unnecessary. It is pretty easy to patch claymore binary to push it to use your wallet instead of devfee ones...
I've done that and I dont need such a software at all...
full member
Activity: 158
Merit: 100
profittrailer.cn
Am I missing the source code here somewhere cuz it looks like all you have are downloads for the actual software itself? In order for anyone to put this on their computer and trust you with their income or with their mining income then you're going to have to release some open source code.



MilleniumFalcon, the person who wrote the software is stealing shares with this software. This is why it's not open source. They claim it's because they don't want Claymore to know how they are redirecting DevFee shares, but in fact it's so they can steal the shares instead.

He is a scammer
member
Activity: 85
Merit: 10
Am I missing the source code here somewhere cuz it looks like all you have are downloads for the actual software itself? In order for anyone to put this on their computer and trust you with their income or with their mining income then you're going to have to release some open source code.



MilleniumFalcon, the person who wrote the software is stealing shares with this software. This is why it's not open source. They claim it's because they don't want Claymore to know how they are redirecting DevFee shares, but in fact it's so they can steal the shares instead.
legendary
Activity: 1190
Merit: 1024
Am I missing the source code here somewhere cuz it looks like all you have are downloads for the actual software itself? In order for anyone to put this on their computer and trust you with their income or with their mining income then you're going to have to release some open source code.

newbie
Activity: 2
Merit: 0
Guys.

I presume that some loose still exist. That's why I asked some one to additionally test = take wireshark couple of days capture and carefully check traffic for packets to ports related to ETH Pools all of them

Mining SW make work NOT only to your current pool. You will be surprized then check all traffic.

Next intresting part - is IF in this traffic presented some SSL not expected traffic - here some M-i-t-M transparent proxy could help here.
Pages:
Jump to: