Search content
Sort by

Showing 20 of 61 results by cross1943
Post
Topic
Board Bitcoin Discussion
Re: Wallet Password Finder/Crack Tool [14-01-03] – [free test]
by
cross1943
on 24/10/2014, 16:52:02 UTC
I downloaded the zip file, but it will not extract. I am sorry to be digging up such an old topic, but it is the only relevant one I have found.

It is possible that the Multibit Wallet I have installed is corrupted or something. Here is what happened:

I was going to send a small amount of bitcoin to a friend. Multibit prompted me for my multibit wallet password. I use one of three passwords for all nonessential accounts. I entered the passwords, and multibit said they were incorrect. I started trying different\ combinations of wrong keys, like one key over or reversed caps/lowercase to no avail. I then made another wallet in multibit, and entered the password I mostly use for these things. I then went back to trying to unlock the other wallet. a few minutes later I went back to the newly created wallet and tried to remove the password I had just entered and written down exactly. Multibit gave me a warning of "can not decrypt bytes". I looked up this error message and the software creators say this means you entered the wrong password. I kept trying, again to no avail. So I closed/shut down the multibit software and restarted. I tried again to remove the password on the new wallet, this time it accepted.

I am running version 0.5.13 of multibit wallet. It is my thought that for some reason it is corrupt, maybe just the installation on my pc, but somehow it has not stored my password correctly. Of course it is also very possible that I just fat fingered or mistyped one letter or number twice in a row while creating the original wallet. Anyway, I would really like to unlock this wallet and get the bitcoin out of it. I have not problem paying the OP a fee of 5%, because if I can not unlock this thing, then I lose 100%.

Does anyone know of a brute force program that will work with Multibit? Has anyone tried one in the past and have experience with it? Any help would be greatly appreciated. 

Download again...it's my website problem, Im solved.
Post
Topic
Board Bitcoin Discussion
Topic OP
Suggest all pool support accpeted transaction query
by
cross1943
on 07/02/2014, 07:51:29 UTC
In the Satoshi Nakamoto's white paper, The partial payment verification:
When the network nodes accepted the transaction, the transaction was confirm in this node.
When the miner pool accepted, the 0 confirm transaction alredy verification in pool.
So, when the 51% total speed pools accepted, the 0 confirm transaction security equivalent to the 1 confirm.
It is can acceleration the transaction confirm in our real life.
It's can 10 sec confirm transaction.
So, i wish all pool open the accepted transaction query API.
It's can 10 sec confirm transaction in the bitcoin.
====

Other, In 0.9.0 seems will to support tx status query when send("inv".MSG_TX or "tx")??
Post
Topic
Board Pools
Topic OP
Suggest all pool support accpeted transaction query
by
cross1943
on 07/02/2014, 07:41:24 UTC
In the Satoshi Nakamoto's white paper, The partial payment verification:
When the network nodes accepted the transaction, the transaction was confirm in this node.
When the miner pool accepted, the 0 confirm transaction alredy verification in pool.
So, when the 51% total speed pools accepted, the 0 confirm transaction security equivalent to the 1 confirm.
It is can acceleration the transaction confirm in our real life.
It's can 10 sec confirm transaction.
So, i wish all pool open the accepted transaction query API.
It's can 10 sec confirm it with bitcoin transaction!!!
====

Other, In 0.9.0 seems will to support tx status query when send("inv".MSG_TX or "tx")??
Post
Topic
Board 中文 (Chinese)
Re: 0.001BTC无交易费交易终于确认
by
cross1943
on 23/01/2014, 16:36:31 UTC
全网确认的关键在于是否是强力的挖矿节点接受你的交易,而不是网页节点。后者可以看成是非永久性的1确认,丢失可能是网站所用的私人版本的客户端重启了,其客户端可能没带临时交易保存到硬盘的功能。而后交易又被其他节点传输给你所查看的网页所在节点,所以又出现了。
Post
Topic
Board 中文 (Chinese)
Re: 肖磊看市:比特币圈子有人匿名向我爆料,我仅当传言分享.如有巧合,纯属瞎
by
cross1943
on 22/01/2014, 08:35:46 UTC
我只能说,呵呵。
Post
Topic
Board 中文 (Chinese)
Re: 谈谈比特币钱包、交易账户的密码设置问题
by
cross1943
on 20/01/2014, 14:59:59 UTC
盗币者几乎都是点4
Post
Topic
Board 中文 (Chinese)
Re: [IPO] [Coinfinder] 去中心化的BTC-法币交易系统
by
cross1943
on 20/01/2014, 13:36:47 UTC
我只想说一句,楼主你怎么解决国际汇款、国际仲裁的问题。
Post
Topic
Board Development & Technical Discussion
Re: Merkle Tree Bits bug??
by
cross1943
on 20/01/2014, 10:03:42 UTC
oh...it's my problem....when calculation the bottom node, it's must make height + 1 tree
Post
Topic
Board Development & Technical Discussion
Topic OP
Merkle Tree Bits bug??
by
cross1943
on 20/01/2014, 07:55:28 UTC
a. send net message:

    1. filterload( BloomFilter( 100, 0.000001, BLOOM_UPDATE_NONE ) );

    2. filteradd( fromhex("27a1f12771de5cc3b73941664b2537c15316be43") );

    3. getdata( fromhex("0000000000000001cfee50480e82a9fd91bbee46b8ef2c8cbb0dcdfd658eac68"), MSG_FILTERED_BLOCK );

b. wait net message with merkle block data.
    merkleblock:
        CBlockHeader
              .....
        CPartialMerkleTree
              nTransactions
              vHash
              vBits

nTransactions = 640;
Code:
size_t get_tree_height( size_t nTransactions )
{
    double v = log( double( nTransactions ) ) / log( 2.0f ); // log2(nTransactions)
    if( fmod( v, 1 ) > 0 )
    {
        return size_t( v ) + 1;
    }
    return size_t( v );
}
so, i'm calculation the merkle tree height = 10;
and check it, because  2^9=512, and  2^10=1024.
so i think it's right height with the transaction count.

and
count(vHash)=11;
tohex(vBits) = "ff0700";

expand the vBits to :
  (true,true,true,true,true,true,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false)

at prefix, has 11's true.
and, this tree branch count equal 1.
so, in the branch tree bottom, has 2 true node, (and the 2 tx-hash).
your can draw a tree bitmap to check it.
i think, i can get 2 tx?
( but...Im only put a filter key...maby it's bloom filter to two record. )

c. wait net message with "tx".
    im only revice 1 tx.. not 2 tx??

so, im think it's the vBits BUG?? it is not the filter problem.

and,  when im add other filter key, when the branch count greater 2, the bottom tx count is right. not this problem.
example:

block: 0000000000000000e0adedd30a9cdce5638bf507c769956dd8563ecfd2ff2a82
key:
    27a1f12771de5cc3b73941664b2537c15316be43
    8485f40e69b1bd95660a0b866ac250532d52c085
    cf14cc39c079f294049e94e11543f342277fc863

Im test the branch bottom's true node count was equal 3 from my calc_bottom_function.
it's right tx count with it.


The problem only be in branch count equal 1 ??
Post
Topic
Board 中文 (Chinese)
Re: 比特币官方qt客户端更新版本v0.8.7
by
cross1943
on 17/01/2014, 15:04:26 UTC
这个傻逼,做假做得太2了吧,org和talk上都还没是0.8.6呢,你就跑出个0.8.7了。
Post
Topic
Board Bitcoin Discussion
Re: Google Bitcoin
by
cross1943
on 15/01/2014, 06:37:20 UTC
tragedy's guy..
Post
Topic
Board Scam Accusations
Re: [SCAM] Google Services & Blockchain Info Wallet Checker
by
cross1943
on 15/01/2014, 06:22:18 UTC
wow....cool scam..But...it's use mail scam...囧
Post
Topic
Board 中文 (Chinese)
Re: 比特币的手机钱包该以什么形式出现
by
cross1943
on 13/01/2014, 16:00:27 UTC
都上talk了,怎么还不上bitcoin.org官网呢。。
官网推荐的android钱包:https://play.google.com/store/apps/details?id=de.schildbach.wallet

android出钱包没意思,这种钱包能出现在其他平台吗

之前貌似是有的,只不过appstore下架了所有比特币之类的app了。蛋疼的苹果公司。
Post
Topic
Board 中文 (Chinese)
Re: 比特币的手机钱包该以什么形式出现
by
cross1943
on 11/01/2014, 14:43:20 UTC
都上talk了,怎么还不上bitcoin.org官网呢。。
官网推荐的android钱包:https://play.google.com/store/apps/details?id=de.schildbach.wallet
Post
Topic
Board 中文 (Chinese)
Re: 关于比特币多重签名交易的致命漏洞
by
cross1943
on 10/01/2014, 11:50:50 UTC
不同的最低要求签名人数,会导致生成不同的收款地址。
如果你不知道一个多重签名是如何生成的,那就千万不要给这个地址汇款。
正确的方法是,本地和对方都生成多重签名地址,这样就可以知道这个地址是怎么生成了。
http://bbs.btcman.com/thread-11619-1-1.html  像本工具,在使用过程中,就需要双方都手工生成多重签名地址,所以生成流程是透明的。
Post
Topic
Board Beginners & Help
Re: In response to the "Encrypted wallet.dat, lost password, any solutions?" thread
by
cross1943
on 10/01/2014, 11:46:18 UTC
http://xingfeng.org/?p=229
this tools fee 5% of the total loss of money
Post
Topic
Board MultiBit
Re: recover my wallet password
by
cross1943
on 10/01/2014, 11:36:13 UTC
I contacted Dave hope he can help with my problem!
Dave has helped you solve? If not, you can try https://bitcointalk.org/index.php?topic=396895.msg4359684
Post
Topic
Board Altcoin Discussion
Re: Help! I can't remember my Devcoin wallet password!!!!
by
cross1943
on 10/01/2014, 11:28:41 UTC
Post
Topic
Board Beginners & Help
Re: Lost my multibit.wallet password !! [HELP] need a solution
by
cross1943
on 10/01/2014, 11:23:03 UTC
Post
Topic
Board MultiBit
Re: How to connect locally to Multibit with script to crack password
by
cross1943
on 10/01/2014, 11:01:56 UTC