Bitcoin Forum
May 13, 2024, 04:55:37 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Anyone tell me how to " ScriptSig malleability"?  (Read 556 times)
lollolloll (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
December 09, 2016, 05:48:43 AM
 #1

Title
It is a common myth that Bitcoin is ruled by a majority of miners. This is not true. Bitcoin miners "vote" on the ordering of transactions, but that's all they do. They can't vote to change the network rules.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715619337
Hero Member
*
Offline Offline

Posts: 1715619337

View Profile Personal Message (Offline)

Ignore
1715619337
Reply with quote  #2

1715619337
Report to moderator
1715619337
Hero Member
*
Offline Offline

Posts: 1715619337

View Profile Personal Message (Offline)

Ignore
1715619337
Reply with quote  #2

1715619337
Report to moderator
1715619337
Hero Member
*
Offline Offline

Posts: 1715619337

View Profile Personal Message (Offline)

Ignore
1715619337
Reply with quote  #2

1715619337
Report to moderator
Manfred Macx
Full Member
***
Offline Offline

Activity: 205
Merit: 105


View Profile WWW
December 12, 2016, 09:17:27 AM
Merited by ABCbits (1)
 #2

Not a very precise question, but I'll try. The abandoned BIP62 lists ways in which a Bitcoin transaction is malleable:

  • Non-DER encoded ECDSA signatures: I don't think this is an issue since all signatures are DER encoded (BIP66)
  • Non-push operations in scriptSig Any sequence of script operations in scriptSig that results in the intended data pushes, but is not just a push of that data, results in an alternative transaction with the same validity.
  • Push operations in scriptSig of non-standard size type The Bitcoin scripting language has several push operators (OP_0, single-byte pushes, data pushes of up to 75 bytes, OP_PUSHDATA1, OP_PUSHDATA2, OP_PUSHDATA4). As the later ones have the same result as the former ones, they result in additional possibilities.
  • Zero-padded number pushes In cases where scriptPubKey opcodes use inputs that are interpreted as numbers, they can be zero padded.
  • Inherent ECDSA signature malleability ECDSA signatures themselves are already malleable: taking the negative of the number S inside (modulo the curve order) does not invalidate it.
  • Superfluous scriptSig operations Adding extra data pushes at the start of scripts, which are not consumed by the corresponding scriptPubKey, is also a source of malleability.
  • Inputs ignored by scripts If a scriptPubKey starts with an OP_DROP, for example, the last data push of the corresponding scriptSig will always be ignored.
  • Sighash flags based masking Sighash flags can be used to ignore certain parts of a script when signing.

The point of all these is that when a node creates a transaction, hashes it locally and sends it into the network, another node can receive the transaction, change it in some of the ways listed above and send it along. The change will not affect the result of the transaction but it will change it's hash. That is why you can't trust a transation hash until it is included in a block. SegWit fixes all this.

I hope this answers your question.

Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!