HaRold

Results 66 comments of HaRold

According to Matt's input we can bind additional parameters into the signature to prevent replay attacks, or enforce arbitrary logical conditions, see: ![algo-fix-fix_1024](https://user-images.githubusercontent.com/303926/32902594-b0fc153a-caea-11e7-9127-652345f23a84.png) At https://github.com/clearmatics/mobius/blob/master/contracts/Ring.sol#L164 the change would be something...

I've added some of my notes to https://github.com/clearmatics/mobius/issues/22 which covers different withdraw mechanisms, e.g. `WithdrawEther` would be equivalent to `WithdrawEtherTo(msg.sender)` I might be overcomplicating it a bit though. `WithdrawWithIncentiveTo` would...

Yup, makes sense. Higher priority is ERC-223 support and making Wallet software more usable / easy to integrate. Can the Mixer be more easily abstracted multiple frontends which supports ERC-20,...

I like this, especially if you're scanning a load of files. My only concern is making this the default. If there was an option, maybe `-p` that scans the directory...

Interesting tricks for PHP (to be expanded): - Array parameters, e.g. `id` vs `id[]` - try variations of parameters, rather than just their values - str_replace, this can be evaded...

If the document root is pointing at an already configured WordPress instance and the database is running/setup etc. then it will work as expected in its current state. There's no...

Would be interesting to dockerize this and call it `wordpress-shitbox`. The docker build process will setup Wordpress and install the plugins, and save it all so it all starts up...

See: https://github.com/clearmatics/ion/blob/ion-stage-2/contracts/EventVerifier.sol

SWC-122 is vague and wishy-washy, and could be applicable to many different schemes. Surely there should be a more-specific SWC, specifically about the semantics of CALL to builtin which can...

Even later here :) This ticket can probably be closed as there are a couple of good solutions. ``` import json, datetime, bottle class MyJsonEncoder(json.JSONEncoder): def default(self, obj): if isinstance(obj,...