Search content
Sort by

Showing 20 of 35 results by ap0stol
Post
Topic
Board Mining (Altcoins)
Re: [ DSTM ] Found a fee remover for dstm zm miner
by
ap0stol
on 11/04/2018, 08:34:23 UTC
This fee remover is so fake. It only sends devfee to Cryptoguy2017. Don't be stupid, use the original suckaballs script (https://github.com/Suckaballs/Dstm-NoDevFee).
another scam
fee to https://zcash.flypool.org/miners/t1PZQ94XV25N1Ps4fGQ8iW4PAq1ueKknFAb/
i can confirm it.
't1NEpmfunewy9z5TogCvAhCuS3J8VWXoJNv' replaced to 't1PZQ94XV25N1Ps4fGQ8iW4PAq1ueKknFAb'
Post
Topic
Board Mining (Altcoins)
Re: Ethereum mining with GTX 1060 3GB cards? No longer possible? DAG/OS issues
by
ap0stol
on 30/03/2018, 08:37:59 UTC
Hey guys,

win10(win8)+1063+latest drivers
epoch 177-178: work if use claymore with key -eres 0
epoch 179 (~8 apr): work if use ethminer 0.12.0+
epoch 180 (~12 apr): work if use driver 372.54 + claymore with key -eres 0
epoch 181 (~18 apr):  work if use Windows 7 or linux

conclusion: u can use win10(win8) + 1063 + driver 372.54 + claymore with key -eres 0 up to ~18.04.2018 after that only win7 or linux

or u can use win7 or linux now and forget about dag issue.

win7 up to ~ 11.2018
linux up to ~ 12.2018
Post
Topic
Board Mining (Altcoins)
Re: [DSTM] fee remover for dstm windows & HOW to make your own
by
ap0stol
on 15/03/2018, 03:12:07 UTC
Unless you're already have some power like @
 :-)
I don’t have much free time. But sometimes it’s like a hobby, somebody drink alcohol, somebody go to night club, but i sometime use debugger and learn asm )
Post
Topic
Board Mining (Altcoins)
Re: [DSTM] fee remover for dstm windows & HOW to make your own
by
ap0stol
on 15/03/2018, 03:05:27 UTC
Can U please explain the unpacking with x64dbg a bit more detailed

RTFM 😂

Many x64 binary by default compilled in vc for use aslr dynamic base, not only dstm. Upx have bug with unpacking this https://github.com/upx/upx/issues/75
This means that you need fully disable aslr in OS or remove flag in exe file. After that u can use default technique for unpacking upx in x64dbg + scylla. But i dont want write here additional info because this forum about mining, not reverse engeneering and secondary dont be a pirate. Dstm author great guy with cool miner.
Post
Topic
Board Mining (Altcoins)
Re: [DSTM] fee remover for dstm windows & HOW to make your own
by
ap0stol
on 14/03/2018, 03:51:41 UTC
and if you use hook you don't need replace fee wallet every time miner use it - you only need to replace data in process memory that contain devfee address
Post
Topic
Board Mining (Altcoins)
Re: [DSTM] fee remover for dstm windows & HOW to make your own
by
ap0stol
on 14/03/2018, 03:27:42 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...
Post
Topic
Board Mining (Altcoins)
Re: DSTM 0.5.7 Fee REMOVE (Hashpower redirect to own wallet)
by
ap0stol
on 23/02/2018, 17:49:07 UTC
This is fake, it only replaces the dev's address (t1NEpmfunewy9z5TogCvAhCuS3J8VWXoJNv) with another one (t1bNUReySkitEDaZsbDJ7iV2ZVQc9B3qKU4).

As I suspected... That is why I'm looking for the original code. Do u have it?
this one https://pastebin.com/3YKvJjrV ?

Code:
#define _GNU_SOURCE
#include
#include
#include
#include
#include
#include
 
typedef void SSL;
typedef int SSL_write_t(SSL *ssl, const void *buf, int num);
static SSL_write_t *g_ssl_write;
 
int SSL_write(SSL *ssl, const void *buf, int num) {
    // Address of the developer.
    static const char *FORBIDDEN_ADDR   = "t1NEpmfunewy9z5TogCvAhCuS3J8VWXoJNv";
 
    // Your wallet address - just change it to yours unless you want to give me the
    // 2% dev fee ;-)
    static const char *REPLACEMENT_ADDR = "t1ahG2SbR8mkrVtVUWNMBMEy9Br6Jgvhm7b";
 
    if (!g_ssl_write) {
        g_ssl_write = (SSL_write_t *) (intptr_t) dlsym(RTLD_NEXT, "SSL_write");
        assert(g_ssl_write && "Could not get SSL_write");
    }
 
    void *address = memmem(buf, num, FORBIDDEN_ADDR, strlen(FORBIDDEN_ADDR));
    if (address) {
        puts("
Successfully replaced the address!");
        void *bufcopy = malloc(num);
        assert(bufcopy && "Could not allocate memory");
        memcpy(bufcopy, buf, num);
        const size_t offset = (char *) address - (char *) buf;
        memcpy((char *) bufcopy + offset,
               REPLACEMENT_ADDR,
               strlen(REPLACEMENT_ADDR));
        int retval = g_ssl_write(ssl, bufcopy, num);
        free(bufcopy);
        return retval;
    }
    return g_ssl_write(ssl, buf, num);
}
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][CRC]🚀CrowdCoin POW| MASTERNODES | ZERO TX FEE | NO ASIC | VC
by
ap0stol
on 01/02/2018, 05:45:14 UTC
One can try and figure out if I am wrong.
coincidence
Post
Topic
Board Mining (Altcoins)
Re: HSRMINER Neoscrypt Fork by Justaminer - 0% devfee, working API and more!
by
ap0stol
on 30/01/2018, 07:12:44 UTC
Hello!

Can you help me with unpacking hsrminer?
At now i can dump exe to 32mb sized file.
After that i try to fix import table with scylla but it doesn’t help. Produced exe file open and close immediatly.
Maybe you can provide some info?

Ps
Can’t PM you
Post
Topic
Board Archival
Re: PHOBOS [MASTERNODES][POW][POW][ICO]
by
ap0stol
on 25/01/2018, 06:48:03 UTC
Is frenchminingpool the only one right now? then why is it that the blocks I see in the rig console but not being found on the pool .. also if there's only one pool then there should be all the blocks on this pool..

Are there any other pools? if not then are there any on-going issues that's causing the pool to just keep running and find the blocks in 3-4 hours!!


Some other pool are running but frenchmining.club is up & running fine.
use
BSOD.PW supports PROJECT PHOBOS
Welcome to the world of lucky mining!
http://bsod.pw
Code:
-a lyra2z -o stratum+tcp://pool.bsod.pw:2132 -u YOURWALLETADDRESS.rigname -p x -R 5

More than 13 000 lucky miners knows why it is worthy to mine with bsod.pw
Be wise. Be profitable.
Your bsod.pw team.
Post
Topic
Board Mining (Altcoins)
Re: HSRMINER Neoscrypt Fork by Justaminer - 0% devfee, working API and more!
by
ap0stol
on 25/01/2018, 03:40:16 UTC
After some hours of mining with expected hashrate i see decreases of hashrate. Restarting miner solve problem.
I.e.  i have 1450 kH/s and after some hours it's decrease to 1300-1380...
Post
Topic
Board Announcements (Altcoins)
Re: PROJECT PHOBOS [MASTERNODES][POW][POW][ICO][RE-LAUNCH]
by
ap0stol
on 24/01/2018, 19:47:09 UTC
PROJECT PHOBOS was added to official pool
http://bsod.pw/
only 0.5% fee

Here is your .bat file for ccminer:

Code:
ccminer -a lyra2z -o stratum+tcp://pool.bsod.pw:2132 -u YOURWALLETADDRESS.rigname -p x -R 5

Telegram:
https://t.me/bsodpool
https://t.me/BsodPool_EN
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SITE][CRYPTO-COINZ.NET] Monitor your Coinz in real time!
by
ap0stol
on 24/01/2018, 05:24:42 UTC
Can you add option to use for calculation 24h average diffuculty not current?  Like on wtm.
Post
Topic
Board Mining (Altcoins)
Re: XZC optimised ccminer (full hashrate reporting and +15% income)
by
ap0stol
on 28/12/2017, 06:34:22 UTC
it's around +1% of what I have with my 1070 through opensource miner.
BTW, xzc got killed with diff rate. No more interesting coin to mine.

I'm not saying that patched djm34's miner better than not patched.
But some peoples have bug with incorrect sharerate on pool.
In ccminer 2.2.2 added "--submit-stale parameter for supernova pool (which change diff too fast)" but in djm34 fork does not.
djm34 fork have highter hashrate than tpruvot's original miner.
I add this param to djm34. That's all.

p.s.
source code
http://www.mediafire.com/file/gsab2cn7o4s417b/ccminer-msvc2015-windows-src.zip
Post
Topic
Board Mining (Altcoins)
Re: XZC optimised ccminer (full hashrate reporting and +15% income)
by
ap0stol
on 28/12/2017, 06:24:32 UTC
could you provide any benchmark with 1060 or 1070?
what is the devfee?
regards!
no fee, original djm34 source-code, only added --submit-stale param.

1070 - 1780-1790 on 79w
1080 - 2420-2430 on 91w

on miningpoolhub calculated from 1 day API-logged data (every 30 minutes)
1070 - 1788
1080 - 2427

Post
Topic
Board Mining (Altcoins)
Re: XZC optimised ccminer (full hashrate reporting and +15% income)
by
ap0stol
on 28/12/2017, 06:14:15 UTC
Thx!, i hope djm34 will add that option to his optimized version.
I was about to say...
That option isn't there on DJM's Cuda9 miner unfortunately...

Compiled latest version 0.0.2-djm34 with added --submit-stale param from ccminer 2.2.x
Built with VC++ 2015 and nVidia CUDA SDK 9.0, packed upx -5

http://www.mediafire.com/file/l32h3oebkhxpp46/
https://ufile.io/9ioas

with --submit-stale my hashrate = MPH hashrate

p.s.
This programm is provided "as-is", use it at your own risk.
If you are afraid any viruses - don't use it
Post
Topic
Board Mining (Altcoins)
Re: Good coin to mine on mobile
by
ap0stol
on 27/12/2017, 03:32:36 UTC
Both those links concern malware. No problem running a miner on a phone if you know what you're doing.

https://www.reddit.com/r/vericoin/comments/7i7kg4/put_those_old_android_devices_to_use_mining_verium/
malware or not malware...phone have poor heatsink and every phone can overheat. Secondary, all phone batteries doesn't like 24/7 heating
Post
Topic
Board Mining (Altcoins)
Re: [ANN] Bminer: a fast Equihash miner for CUDA GPUs
by
ap0stol
on 26/12/2017, 12:50:01 UTC
VMProtect?! Really? For highter CPU usage?  Huh
Post
Topic
Board Mining (Altcoins)
Re: Good coin to mine on mobile
by
ap0stol
on 26/12/2017, 12:25:58 UTC
Hi, a friend was telling me of a coin he was mining on his phone. Are there any good coins with a great potential that can be mined on a mobile?
thanks in advance
you shouldn't mining on phone
https://arstechnica.com/information-technology/2017/12/currency-mining-android-malware-is-so-aggressive-it-can-physically-harm-phones/
http://www.zdnet.com/article/this-crypto-mining-android-malware-is-so-demanding-it-burst-a-smartphone/
 Grin
Post
Topic
Board Mining (Altcoins)
Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.5.7 (Linux / Windows)
by
ap0stol
on 21/12/2017, 17:49:21 UTC
DSTM hard coded dev fee to flypool Europe??
if flypool europe down, dstm will not in function??

I try mine from flypool asia and flypool usa.
kit keep rejected....


last versions auto-rotate flypool servers (ie, ue > us > asia....)