Bitcoin Forum
May 25, 2024, 08:17:51 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 16 17 18 19 20 21 22 »
201  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]: crowdfunding global band through a crypto. We were on TV! on: April 15, 2014, 12:20:38 PM

Thanks Groggin!
202  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]: crowdfunding global band through a crypto. We were on TV! on: April 15, 2014, 07:31:58 AM
Nice write-up of us! Thanks Tristan.

http://bitscan.com/articles/the-cypherfunks-disrupting-the-music-industry
203  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]: crowdfunding global band through a crypto. We were on TV! on: April 14, 2014, 07:19:23 PM
We are second on the list. Now we just need to sustain the voting:

https://www.swisscex.com/voting

Band high five!
204  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]: crowdfunding global band through a crypto. We were on TV! on: April 14, 2014, 03:55:30 PM
The Cypherfunks FUNK added for official voting at swisscex!   https://www.swisscex.com/voting

Awesome! Thanks for notifying us Jommy!

vote, vote, vote!

While you are at it:
https://www.mintpal.com/voting
http://comkort.com/vote/#FUNK

205  Alternate cryptocurrencies / Altcoin Discussion / Re: Regarding Auroracoin TW exploit (Fix included) on: April 14, 2014, 02:45:14 PM

1 second isn't much better than 0. There should be either a higher value as a fraction of block target or these blocks may be skipped from difficulty calculation or their time stamps recalculated as average of neighborous blocks. Another way is to limit every difficulty adjustment like many non-KGW algorithms do.


Right. Agree on both counts. I was specifically referring to the fix. The fix treats blocks from that past as very, very fast blocks which shoots up the diff [which is not what you want].

Quote

Not every. Those operating with large traditional averaging windows are fine, though their time warp vulnerability level is higher than usual. PPC even allows negative actual time span, so many faster forks got burned by this "feature". It samples only 2 time stamps per retarget (the last block and the previous one), applies extreme damping and gets the job done. Very slow as the damping suggests, though very easy to allow difficulty manipulations through time warps. Those PPC forks brave enough to run without the ACP enabled can be torn apart by 51% attacks quite easily.


Didn't know about that. Interesting!

So what do you suggest? Other retargeting algos that seem promising, but haven't taken a look at is digishield and dark gravity wave2. How do they perform?

And do you agree with the trade-off? Implementing the fix pushes in erroneous diff adjustments that could be detrimental to the coin. Or make it so that a 51%-er can mint more blocks with the same work? Currently, I think it's not ideal to implement the current tw fix that everyone is implementing, since if someone is maliciously doing a 51% attack, you are screwed anyway...

Thoughts?
206  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]: crowdfunding global band through a crypto. We were on TV! on: April 13, 2014, 03:09:08 PM
So. I took time to fully understand the TW exploit & the fix. By the looks of it, the fix actually introduces new problems [that have affect coins such as Aiden & Coin-o].

I might be wrong. But if you have thoughts, please add them to this thread. I posted about the whole thing there:

https://bitcointalk.org/index.php?topic=552895.msg6199218#msg6199218
207  Alternate cryptocurrencies / Altcoin Discussion / Re: Regarding Auroracoin TW exploit (Fix included) on: April 13, 2014, 03:05:08 PM
So here's my understanding of the TW exploit & the fix.

The problem with the well is that any blocks in the past (or blocks with the same timestamp), get regarded as "PastRateActualSeconds = 0"

      if (PastRateActualSeconds < 0) { PastRateActualSeconds = 0; }

What happens now, is that IF PastRateActualSeconds are 0, it does not adjust the diff.

     if (PastRateActualSeconds != 0 && PastRateTargetSeconds != 0)

So, the attacker does the following: they work on their own chain. They put the timestamp as far as possible into the future to get max downward adjustment, and continues until the diff is lowest possible diff for the chain. At that point, the attacker generates blocks with the same timestamp, until it hits the "block-time too early" (getmedianpast) check in AcceptBlock. Basically, the attacker is pumping loads of low-diff blocks "at the same time" until they can't anymore. Putting blocks in the past don't help as they get regarded as "0" anyway in terms of diff adjustment. But putting blocks in the past, allows the attacker to get back in line with the main chain.

So, now they do it again. Until getmedianpast check doesn't fail, and do it again. It's a trade-off between being too far ahead and having enough work. But if the chains match based on the time, it's entirely possible that the attacker has the same work, with more blocks and the chains re-organise.

So if I understand it correctly (correct me if I'm wrong), the attacker still needs 51%. But now that they HAVE that 51% they can do the same amount of work, but generate more blocks.

While the fix protects against this attack, by making it unfeasible, it actually causes other problems [sky high diff adjustments as was seen with Aiden & Coin-o].

What's SUPPOSED to happen is that the attacker is not supposed to generate blocks with the same timestamp & keep the same diff. In most scenarios, this would mean there is A LOT of hashing power and the diff should adjust accordingly.

That's what this fix does here:

if (PastRateActualSeconds < 1) { PastRateActualSeconds = 1; }

If it's a block in the past, or the same timestamp, it's regarded as having taken 1 second. The problem with this is, is that if there are legitimate blocks in the past [due to network lag, or other reasons] it is regarded as an extremely fast block, rather than a legitimate block [within range]. This shoots up the difficulty (as we've seen with some coins). This happens more easily with coins with low block-times.

These diff adjustments didn't happen with the original KGW because they weren't taken into account for the diff adjustment.

With diff adjustments happening per block, it's a difficult problem to solve. Any 1-block algo is vulnerable, as blocks in the past [which is a legitimate anomaly] is an "odd" happenstance in 1-block diff algos.

So the trade-off is:

1) When an attacker gains 51%, they have the capability to generate more blocks with the same work. While this is not ideal, the reason why this is bad, is that incentives 51% attacks (as it is more monetary profitable).
2) Remove the incentives with this fix, but screw up legitimate blocks from the past [which causes absurd diff adjustments].

Personally, I think there needs to be a small "free" period where blocks from the past is okay, which of course makes the KGW not a 1 block algo...

This is of course, all assuming I'm correct... BCX? Nite69? Others? Care to comment?

Thoughts?
208  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]! Internet band & coin. Android coming! (We were on TV!) on: April 13, 2014, 10:38:24 AM
how can we interest services like spotify, pandora, itunes, ringtone sellers, etc., to accept FUNK?

In due time. If we become big, we'll have more clout. As a start, I think it would be cool to sell iTunes gift-cards for FUNK (it shouldn't be too difficult to do).

Also, if enough songs are made with the band, we can just start our own streaming service of JUST Cypherfunks music. Wink
209  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]! Internet band & coin. Android coming! (We were on TV!) on: April 12, 2014, 08:53:33 AM

It seems CryptoRush markets are down again [for no apparent reason]. They really are not doing a decent job of staying in contact with coin devs. I'll contact them again.

Cryptorush is insolvent and trying any way they can to recover.  Right now even if you could sell Funk on there, there is no way to get your funds back out unless you trade for another altcoin.  Next time Funk does come back up, I'd withdraw everything if you could and wait to see if the become solvent again. Right now there is no way to get BTC, LTC or others out of the exchange.

yep. not ideal.
210  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]! Internet band & coin. Android coming! (We were on TV!) on: April 11, 2014, 08:23:56 PM

  i just visited soundcloud and gathered some fluff for the next torrent, but there were two i missed - those on top from Gevelot, no dL button! instead, a [Buy] button! OK says i, i have plenty FUNK, i'll buy some ... sorry to say the buy button wants FRNs, not FUNKs   Huh

     so, hmm, if they are posting as cypherfunks, isn't that an implied opensource release and shouldn't there be a dL button?
    would have gladly paid in FUNK anyway   Roll Eyes

Uhm, I'll pass your message, I know them.


Edit: Done. They just forgot to activate it. Tongue
I should specify they contributed with 2 tracks to cypherfunks project (and they are labeled), not the whole album.

Yeah. That's how I gathered it as well. Thanks guys.

EDIT: btw. Check this. http://www.philharmonia.co.uk/explore/make_music <- thousands of free samples. How epic?!

OKay, that was the good news, and thank you Fabrizio89, your help appreciated  Smiley
 bad news is both the tracks (and floianuhelemann's BeatWeaver) are rendered in mp3@VBR, so i can't upload them to my prime site. darn shame, that's some good stuf, and i'm sad to miss a chance to pimp their album, (per Fabrizio89's sig) as always, lossless would be great, and if anyone is selling (for crypto) i'd buy-to-share to help get the show (literally) on the high road.
 Soundposition's stuf is perfect, either wav/lossless or mp3@320, i'll prolly downgrade it all to mp3 for the torrent now, and add another torrent later that's all lossless, when i have enough material. thanks!

Thanks for you effort Groggin! It's a appreciated.

It seems CryptoRush markets are down again [for no apparent reason]. They really are not doing a decent job of staying in contact with coin devs. I'll contact them again.
211  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]! Internet band & coin. Android coming! (We were on TV!) on: April 11, 2014, 04:49:30 PM

  i just visited soundcloud and gathered some fluff for the next torrent, but there were two i missed - those on top from Gevelot, no dL button! instead, a [Buy] button! OK says i, i have plenty FUNK, i'll buy some ... sorry to say the buy button wants FRNs, not FUNKs   Huh

     so, hmm, if they are posting as cypherfunks, isn't that an implied opensource release and shouldn't there be a dL button?
    would have gladly paid in FUNK anyway   Roll Eyes

Uhm, I'll pass your message, I know them.


Edit: Done. They just forgot to activate it. Tongue
I should specify they contributed with 2 tracks to cypherfunks project (and they are labeled), not the whole album.

Yeah. That's how I gathered it as well. Thanks guys.

EDIT: btw. Check this. http://www.philharmonia.co.uk/explore/make_music <- thousands of free samples. How epic?!
212  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]! Internet band & coin. Android coming! (We were on TV!) on: April 10, 2014, 07:52:53 PM
New feature allows Tipping with all 50+ http://www.cryptokk.com/ supported coins.

Another Cypherfunks FUNK tip here  -->  http://www.cryptokk.com/?tip=YxxynPNnxbxeAC

Actually, a rather clever feature! Easily claimable tips.

I've been a bit sick, so couldn't do any dev work. Will try to get back onto this asap. So my plan is to implement the TW fix. Then also in that update add in the alert system (properly). I don't think has been using the TestNet, so I'll probably be creating a new one to test that TW fix goes through smoothly. It doesn't seem too complicated, and it's actually not a hard-fork, so it should be okay. In other words, even if less than 51% of the network has old clients, it will still run fine. It could only fork if a TW exploit is targeted to the old clients (IF they have more than 51%). So, for all intents and purposes. Should be fine.

btw: appreciate whomever been's also voting on mintpal & comkort.

https://www.mintpal.com/voting
https://comkort.com/vote/#FUNK

On the music front. Should have a remix out soon. Also have a friend, Marc, who is fully trained musician that's going to be contributing some beats/riffs to the project.

Cheers!

Bang high-five!
213  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]! Internet band & coin. Android coming! (We were on TV!) on: April 10, 2014, 10:20:45 AM
Some free FUNK for whoever claims this tip first http://www.cryptokk.com/?tip=eERKBPzYTdlZT6F

oh nice. Didn't know you could do tips on cryptokk.
214  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]! Internet band & coin. Android coming! (We were on TV!) on: April 09, 2014, 12:29:10 PM
fwiw.

The heartbleed bug DOES affect all Litecoin-based coins: http://heartbleed.com/. But it is only vulnerable if you ever used rpcssl. This is not on by default, and is rarely used. If you just downloaded a wallet, you should be fine. If you built from source, it will use your system's openssl library (which is what exchanges will most likely do, and they should patch and recompile it accordingly).

This isn't critical and will be included in the next update.

EDIT: It has been patched and will come with the next update.
215  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]! Internet band & coin. Android coming! (We were on TV!) on: April 09, 2014, 11:07:06 AM
Cryptorush has been working fine all week for me.  I just can't withdraw btc, so I trade for something else I can withdraw.  They might pull through this.

In addition to the KGW problem, Coin2 (C2) had a 51% attack yesterday with double spending amounting to 25BTC.  Apparently it was fairly easy since their net hashrate was so low.  Apparently they were slacking on security as well.  I'm not sure how bullet-proof one can make a high value, low hashrate coin.  The hacker explains how he did it in the C2 forum.

neuromode - are you working on the flyer, or were you looking for someone to put one together?

Yeah. Low hashrates will always be vulnerable unfortunately, doesn't matter what you employ.

I know jwinterm has been playing with Blender (not sure if he wants to contribute to a flyer design).
216  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]! Internet band & coin. Android coming! (We were on TV!) on: April 07, 2014, 07:05:12 PM
Cryptorush reactivated the daemon.

https://cryptorush.in/index.php?p=trading&m=FUNK&b=LTC

Time to throw up some buy support again.

Meanwhile. Remember to vote:

https://www.mintpal.com/voting
https://comkort.com/vote/#FUNK

I've been receiving conflicting reports on the KGW TW exploit. Potcoin devs are going to remove as it the fix toys with block timing. I'm going away for a week and thus had a lot of admin to do today. But I'm going to a farm with pretty much of nothing on it, so going to have some time to look at the fix again (and it is needed).
217  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]! Internet band & coin. Android coming! (We were on TV!) on: April 07, 2014, 12:09:08 PM
We have a beta IRC tipbot up and running. Come hang out with us: https://webchat.freenode.net/?channels=cypherfunks
218  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]! Internet band & coin. Android coming! (We were on TV!) on: April 06, 2014, 08:04:04 PM
Band meeting! Here's an update of all that's happened in this week:

http://blog.thecypherfunks.com/post/81913737963/band-update-week-ending-2014-04-06

219  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]! Internet band & coin. Android coming! (We were on TV!) on: April 05, 2014, 09:20:46 PM
Cool coin and real good vibes behind it!


I've got some FUNK now and i'll be sending some music to Soundclound soon -  Wink


Keep up the good work!

btw the block explorer is offline for some reason.

Yeah. I pm'ed him. We are getting a new one up too.

Welcome Wizmaster!

I'm just trying to get it to CGI proxy through Apache at the moment, and then it'll be live on a subdomain of my site for testing purposes. If anybody has any experience with Apache CGI I'd appreciate any advice. The error I'm getting on the server (Debian Stable/Apache 2.2) is:
configuration error:  couldn't perform authentication. AuthType not set!: /
This appears to be trying to access / and getting kicked off (as expected), so I'm thinking my Apache config is screwy. I've only set this up on Apache 2.4 before, and the way it uses the <Directory> directive is quite a lot different, and a lot simpler.


Fixed it. Was missing mod-fcgid and had missed a folder location for the user that www-data emulates... Find it here: http://funkexplorer.n00bsys0p.co.uk/

I'll make the code available on Github when I've proven it's working from a clean install. There's a weird issue I'm having, possibly due to me not understanding something, possibly due to ABE being in a bit of a messy beta state at the mo. I'm actually thinking of putting some work into abstracting Abe better than it currently is - it's a nightmare to work with and re-theme. Because of the number of crypto coins out there all with their own concepts and themes it'd be nice to have a proper templating system built in.

Thanks nox! The stuff you've done so far for the "band" has been a lot. Thanks again. Updated main page. btw. The BTC donation link is not valid. Smiley
220  Alternate cryptocurrencies / Announcements (Altcoins) / Re: The Cypherfunks[FUNK]! Internet band & coin. Android coming! (We were on TV!) on: April 05, 2014, 08:43:54 AM
Cool coin and real good vibes behind it!


I've got some FUNK now and i'll be sending some music to Soundclound soon -  Wink


Keep up the good work!

btw the block explorer is offline for some reason.

Yeah. I pm'ed him. We are getting a new one up too.

Welcome Wizmaster!
Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 16 17 18 19 20 21 22 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!