Bitcoin Forum
May 25, 2024, 01:39:00 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 [141]
2801  Bitcoin / Pools / Re: [9000 TH] Slush's Pool (mining.bitcoin.cz); TX FEES + VarDiff on: September 25, 2014, 03:31:18 PM
Diff's gone wild... Time to add another S1 to compensate.

JT

The new Bitmain Antminer S4-Batch 1 is available now.

Speed:  2 TH/s

Weight:  16.2 kg

Price:  1450 USD (3.508 BTC)

https://www.bitmaintech.com/productDetail.htm?pid=00020140916100720380cS1tRWd00684

The last price on a Bitmain Antminer S3+ was (.58 BTC) at Bitmaintech.  You had to make a minimum order of two (2) at a total of 1.16 BTC ($450.00 USD APPROX.)  The S4 has BUILT IN POWER SUPPLY (PSU) [Don't know how reliable the PSU is].  The S3's require additional purchase of PSU (APPROX. $129.00 for Corsair RM850 Gold on Amazon - pretty reliable).

So, 6 - S3's at $225.00 USD each [at present rate] = $1,350.00
      3 - Corsair AX860's at $169.00 each from Amazon = $387.00

TOTAL:  $1,737.00 for a combined total of 2.7 TH/s (6 - S3's)  [370 watts x 6 [if you include the watts consumed by power supply] = 2,220 watts total of power consumed.
             $1,500.00 approx. for five S3's with three power supplies to get 2.3 TH/s minimum [370 watts x 5 [if you include the watts consumed by power supply] = 1,850 watts total of power consumed.

The new S4 claims * Hash Rate: 2,000GH/s guaranteed * Power Efficiency: 0.69Watt/GH/s at the wall = 1380 watts of power consumed.  THAT IS LESS COST ON POWER CONSUMPTION VERSES the 1,850 watts for five (5) S3's to get 2.3 TH/s.

In comparison, the new S4 ($1450 USD) will save an additional 470 watts for every 5 S3's purchased ($1,500.00).  However, you get 300 GH/s more hashing power with the five (5) S3's.  The 370 watts more power consumed at the wall [with the five S3's] will be offset by the 300 GH/s extra hashing power more than likely.

$1,450.00 USD sounds like a fair price for 2 TH/s

2802  Bitcoin / Pools / Re: [9000 TH] Slush's Pool (mining.bitcoin.cz); TX FEES + VarDiff on: September 25, 2014, 02:43:11 PM
What doesn't kill BTC will make it stronger.

After reading this article, I'm more concerned with someone hacking Slush's Pool than someone trying to hurt Bitcoin.

"Miners, exchanges and anyone else running Linux hosted Bitcoin nodes are looking at vulnerable systems – the bash vulnerability effectively opens access to the Bitcoin Core process and any Bitcoin wallets hosted on the system."

"Most mining hardware built on firmware running Linux will have remote login available via OpenSSH. Check with the manufacturer for their security solution."
2803  Bitcoin / Pools / Re: [9000 TH] Slush's Pool (mining.bitcoin.cz); TX FEES + VarDiff on: September 25, 2014, 02:34:38 PM
Total average hash rate in last 60 minutes: 0 Mhash/s  Huh

https://www.cryptocoinsnews.com/bitcoin-at-risk-major-vulnerability-discovered-in-gnu-bash/

BITCOIN AT RISK: MAJOR VULNERABILITY DISCOVERED IN GNU BASH
 David Parker  25/09/2014  News 1 Comment

105
SHARES
TwitterFacebookSubscribe

dangerThe National Vulnerability Database has issued a critical security advisory about a major vulnerability in GNU Bourne Again Shell (Bash). GNU Bash is the command-line shell used in most operating systems based on Linux and Unix – including MacOS.

A Red Hat security advisory said:

“This issue is especially dangerous as there are many possible ways Bash can be called by an application,”

The GNU Bash vulnerability was first discovered by Stephane Schazelas. Arstechnica writes:

… is related to how Bash processes environmental variables passed by the operating system or by a program calling a Bash-based script. If Bash has been configured as the default system shell, it can be used by network–based attackers against servers and other Unix and Linux devices via Web requests, secure shell, telnet sessions, or other programs that use Bash to execute scripts.

Bitcoin at Major Risk

This is not a Bitcoin Core vulnerability. However, Bitcoin Core is stopped and started via the bash shell and can also be interacted with, via the bash shell.

The bash vulnerability is at a lower level – in a command line shell that is used by almost every Linux operating system and some of it’s components. For example:

the Python language popen module calls a bash process by default
Apache‘s mod_cgi runs CGI scripts written in bash, or spawn bash subshells
OpenSSH is the standard method of remotely logging into a Linux host and, typically, spawns a bash shell for the logged in user
PHP scripts are not vulnerable to this bash exploit nor are shell scripts which do not export variables. However, this is little consolation and an immediate bash upgrade is required on any *nix system (see below).

Miners, exchanges and anyone else running Linux hosted Bitcoin nodes are looking at vulnerable systems – the bash vulnerability effectively opens access to the Bitcoin Core process and any Bitcoin wallets hosted on the system.

Most mining hardware built on firmware running Linux will have remote login available via OpenSSH. Check with the manufacturer for their security solution.

 

What To Do: Immediate Security Steps

Every Version of Bash Since 1994

This security vulnerability affects GNU Bash versions 1.14 (released in 1994) through to the most recent version 4.3, according to NVD. The pervasive use of bash on systems across the internet means that the vulnerability is as serious as the Heartbleed bug. If you run a Linux (or any *nix) system it is most definitely vulnerable – and has been since it’s first boot.

Package Upgrade Now!

Your Linux distribution’s package repository should contain a patched version of bash that fixes the vulnerability.

Upgrade bash as soon as possible
Store access and audit logs for forensic analysis (should it later become apparent someone accessing your system exploited the bash vulnerability)
Search for rootkits via chkrootkit and rkhunter – a sensible initial step on any system right now
Ubuntu Linux currently has a fixed version of bash in package bash_4.3-7ubuntu1.1

Note that the version number is still 4.3, but the -7 suffix indicates that the package version has been bumped following application of a security patch.

CCN
How Does The Exploit Work?

Like most programming languages the bash shell allows for the definition of functions. A bash environment variable can contain code and, therefore, functions. This vulnerability takes advantage of the fact that any string following a function declaration is executed when bash reads an environmental variable containing such a function declaration. For example:

$ env x='() { :;}; echo vulnerable' bash -c "echo this is a test"
vulnerable
this is a test

In a patched version of the bash shell the command injection attempt above has the following output:

patched GNU bash 4.3 output

Introshine gives some examples of how the exploit may be used in practice:

That’s pretty serious. Most of the attack vector hits pretty specific server-type scenarios. Or running crafted bash scripts.

The exception is the DHCP attack vector. I’ll explain: What this actually does is the following: There is a protocol called DHCP – it gives the devices in your network an IP address. Normally, this is the router/server in your LAN.

Some guy could be running a 2nd DHCP server in a public LAN that gives out non-valid addresses or even a non-valid one. Because DHCP is a broadcast, your client will talk to this rogue server when he is the fastest to reply. So you would not even notice, but can still use the internet fine because after DHCP is done, the DHCP server is no longer needed for internet/network to function.

He could include a variable (mostly used to deploy Proxy settings etc). with a rogue string included, that string can be executed because Bash is broken – hence he could:

- Copy the wallet.dat over
– If DHCP client runs as root (some distro’s): Infect the machine with a keylogger/virus/rootkit
– etc.

GNU/Linux users and other OS’ses: Be safe, check your update repo if CVE-2014-6271 has been patched. Be wary of unknown network, especially open networks near Bitcoin events or hacker spaces.

Btw, Trezor, Co-sign wallets like Greenaddress and cold wallet unaffected.

For more details see the Red Hat security advisory pertaining to this issue.

This story will be updated as relevant facts come to light.
2804  Bitcoin / Pools / Re: [9000 TH] Slush's Pool (mining.bitcoin.cz); TX FEES + VarDiff on: September 25, 2014, 01:49:39 PM
Just thought it would be nice to know within 5 minutes of them going down without having to check so often while I'm out of town working.
Just curious... if you're out of town working, what difference does it make?  You can't do anything about it and you will only be fretting.  It's not as as if you are there when the alarm beeps and you can spring into action.

There is such a thing as a "Static IP" that you can have at your house instead of a "Dynamic IP" to have access to the Airport Extreme Base Station.  

My S3's are connected to the Airport Extreme via "Assigned MAC IP" [Example:AC:CE:02:17:22:EC] through DHCP and not "static" on the miner's themselves.  I can connect to my Network "while I'm away from the house" with the static IP assigned to my house by my ISP to view surveillance cameras "and even connect to each S3 to do whatever I may need or want to do with them.

IF my wife is home and something needs to be "physically" done with anything, et al: rebooting the modem, I can ask here to do so.

PLEASE don't assume too much...  I'm trying to be nice.

I thought it was a legitimate question?  Yes, I am a "Newbie" when it comes to mining but I have enough "drive" and "knowhow" to TRY to figure things out to make things less "fretful" as possible.

So, please, IF anyone knows Bitmain Antminer S3's pretty well, I thought they might know if they have the capability to send an email to alert you IF THEY STOP HASHING?  NOT IF THEY GO COMPLETELY DOWN (no lights or activity whatsoever).

After looking in the S3's "System" [With it's sub-menus] and the S3's "Network" [With it's sub-menus] last night, it does not appear to have the ability to send emails.  However, I could have looked over it because of not knowing some of the protocols or whatever.


2805  Bitcoin / Pools / Re: [9000 TH] Slush's Pool (mining.bitcoin.cz); TX FEES + VarDiff on: September 25, 2014, 06:16:08 AM
  you can check Slush pool for miner up or not.

Sure...

Just thought it would be nice to know within 5 minutes of them going down without having to check so often while I'm out of town working.

Thanks for the reply...

2806  Bitcoin / Pools / Re: [9000 TH] Slush's Pool (mining.bitcoin.cz); TX FEES + VarDiff on: September 25, 2014, 05:54:51 AM
@wasikidding, everything you said I appreciate. I may have mis-worded something though.

Slush has not paid me out 3 times, but there have been 3 completed sessions for the 24th, the most recent completion actually happened on the 25th based on Slush time zone. The first took 4h 24min, second took 1h 6min, third took 4h 19min all time stamped for the 24th. I have not been paid out so to speak because my payout is higher then they total. But the balance for each session is sitting in my balance on Slush.
So what I was under the impression is that each completed session was a block that was completed or solved. I initially commented on it because the original poster to my post said "So far I don't even think we have had single block all day", but don't the completed sessions = 3 blocks solved or finalized?
I appreciate your patience with me. Thanks
Yes in that regard unlike other pools we mine in a session until a block is solved, slush's number stays the same as network block number we are solving climbs so yes sorry i thought you meant you received three payouts so that is why i explained that way unlike ghash which I believe has like a set time per session etc we run until a block is solved and then score is calculated based on total shares and last share etc to calculate our btc value for that solved block

Hi,

I'm NEW to mining as well.  Slush's pool does not appear to have it setup to notify you if a "worker" has gone idol like some other pools do.  I'm NOT going to another pool.  I tried BTC Guild for about 12 hours but I don't like it.  I DO like the fact they notify you if a worker goes idol.

DOES ANYONE KNOW IF I CAN MAKE MY BITMAIN ANTMINER S3's NOTIFY ME IF IT STOPS HASHING WHILE I'M AWAY FROM HOME; WITHOUT HAVING TO LOG IN TO SLUSH'S POOL ON OCCASIONS TO SEE IF THEY ARE HASHING OUT?

I'm calling my ISP tomorrow to get a STATIC IP to have access to my home network, which in turn will give me access to my miners [To reboot or whatever might be needed].  I just thought it would be nice to be notified if they go idol / down [how ever you want to say it].


2807  Bitcoin / Pools / Re: [9000 TH] Slush's Pool (mining.bitcoin.cz); TX FEES + VarDiff on: September 23, 2014, 06:49:31 AM
^ I'm not sure but I would log completely out of Slushs site for 15 minutes, unplug your modem, plug modem back in and then log back in and see what happens. Check your computer and make sure there isn't anything running in the background that you are not aware of. It sounds like an IP address conflict.

Thank you Billbags.

I did all you said. Did not log for a while. But still a little doing it.
Scaring me a little i admit^^

'"You have reached the maximum attempt to... your Ip can be blacklisted" when i want to have a look at statistics page, or refresh it.

What did i do wrong^^"

it's also possible if one refreshes the page 40-50 times a day it does that, maybee I have resfreshed too much, i don't even know what is too much.

GO GO SLUSH!





Yesterday (September 22nd) was my first day mining and I chose Slush's Pool.  I was up a long time going back and forth from "Statistics" to "Account" quite I bit.  I know I did it at least 100 times.  I never "refreshed."  I just went back and forth between "Statistics" and "Account."  That may be the trick to avoid what you are talking about.

Just a thought...


Open two pages side by side then set the refresh every 60 minutes or find out the refresh time is per page  Smiley some browser let you set a refresh i forget how . and which ones  maybe all of them .  

I'm using Safari on a early 2011 MacBook Pro.  It does not refresh unless I tell it to.  I'm not familiar with any other browsers.  I've used Mac's since the year 2000 and haven't looked at another PC since.



Probably a good thing. If you catch the bug, extreme PC stuff is as expensive as mining if you catch the bug. I have a bit of fever for both. At least one of them has some returns Smiley

Agreed!!!

I'm getting a bug for this mining stuff after 13 blocks found my first 24 hours at this!  I'm hoping this will be a way to make some extra lettuce to pay the bills when I'm not training telephone technicians.  I used to teach 42 to 45 weeks a year and made approximately 200K a year.  Things went down hill after 2010, because of the economy.  I'm fortunate to get 12 to 16 classes (4-Day courses) a year ever since.

When your standard of living takes that drastic of a change, something has to change!!!

I LOVE my Mac's!  My 2011 MacBook Pro 17 inch has two OWC 480GB SSD's in RAID 0; for a total of 960GB!  I also have 16GB of OWC RAM installed in it as well.  It will be a LONG time before I get another laptop.  HOPEFULLY!!!  I have thunderbolt on this laptop as well.  So, it's great for my needs concerning storage and other things.
2808  Bitcoin / Pools / Re: [9000 TH] Slush's Pool (mining.bitcoin.cz); TX FEES + VarDiff on: September 23, 2014, 06:34:06 AM
^ I'm not sure but I would log completely out of Slushs site for 15 minutes, unplug your modem, plug modem back in and then log back in and see what happens. Check your computer and make sure there isn't anything running in the background that you are not aware of. It sounds like an IP address conflict.

Thank you Billbags.

I did all you said. Did not log for a while. But still a little doing it.
Scaring me a little i admit^^

'"You have reached the maximum attempt to... your Ip can be blacklisted" when i want to have a look at statistics page, or refresh it.

What did i do wrong^^"

it's also possible if one refreshes the page 40-50 times a day it does that, maybee I have resfreshed too much, i don't even know what is too much.

GO GO SLUSH!





Yesterday (September 22nd) was my first day mining and I chose Slush's Pool.  I was up a long time going back and forth from "Statistics" to "Account" quite I bit.  I know I did it at least 100 times.  I never "refreshed."  I just went back and forth between "Statistics" and "Account."  That may be the trick to avoid what you are talking about.

Just a thought...


Open two pages side by side then set the refresh every 60 minutes or find out the refresh time is per page  Smiley some browser let you set a refresh i forget how . and which ones  maybe all of them .  

I'm using Safari on a early 2011 MacBook Pro.  It does not refresh unless I tell it to.  I'm not familiar with any other browsers.  I've used Mac's since the year 2000 and haven't looked at another PC since.

2809  Bitcoin / Pools / Re: [9000 TH] Slush's Pool (mining.bitcoin.cz); TX FEES + VarDiff on: September 23, 2014, 06:09:19 AM
^ I'm not sure but I would log completely out of Slushs site for 15 minutes, unplug your modem, plug modem back in and then log back in and see what happens. Check your computer and make sure there isn't anything running in the background that you are not aware of. It sounds like an IP address conflict.

Thank you Billbags.

I did all you said. Did not log for a while. But still a little doing it.
Scaring me a little i admit^^

'"You have reached the maximum attempt to... your Ip can be blacklisted" when i want to have a look at statistics page, or refresh it.

What did i do wrong^^"

it's also possible if one refreshes the page 40-50 times a day it does that, maybee I have resfreshed too much, i don't even know what is too much.

GO GO SLUSH!


Yesterday (September 22nd) was my first day mining and I chose Slush's Pool.  I was up a long time going back and forth from "Statistics" to "Account" quite I bit.  I know I did it at least 100 times.  I never "refreshed."  I just went back and forth between "Statistics" and "Account."  That may be the trick to avoid what you are talking about.

Just a thought...
2810  Bitcoin / Pools / Re: [9000 TH] Slush's Pool (mining.bitcoin.cz); TX FEES + VarDiff on: September 23, 2014, 05:50:03 AM
Slush is on fire lately  Grin

Bitcoin may be down - But slush is on the up - Not even done my daily rain dance yet, could be even more after that  Wink
I agree .. the luck during the last 7 days has been very good

I just started mining this time last night for the first time.  I decided to join Slush's Pool.  Boy am I glad I did.  We have 13 total blocks my first time at this!  WOW!!!!!!!!!!!!!!!!  0.22812078 BTC in a 24 hour period from my 10 miners.  WOW!!!!

It took a little while to figure out how to get my miners going.  I ended up setting up DHCP; using each MAC address of each miner to put into the router.  It works great.

Like I said, this is my first time out.  I bought 10 Bitmain Antminer S3+ (450 G/H each; 4.5 T/H total).  I have them clocked out to a combined total of 4.668 TH's according to my statistics on Slush's Pool.  They are powered by 5 Corsair AX850's (UPS).  I'm using 1 Corsair AX850 for every 2 Antminer S3+.  

They are all hooked up via ethernet to a TP-Link TL-SG1048 Switch, which has 48 Gigabit Ethernet ports.  It is plug and play!  NON MANAGEABLE!  JUST PLUG AND PLAY!  I wanted it to be easy!  

I have everything downstairs where it is cooler. I also have a box fan blowing on them constantly to keep the heat away from them.  I will be adding an exhaust fan to one of the windows downstairs to funnel the heat outside.  I will add another exhaust fan in reverse at the other window to suck cold air in during the winter.

I'm adding a 125 AMP sub panel to my Main Breaker panel this week.  I will run 6 more 20 AMP circuits from that panel to six 20 AMP receptacles (outlets) from the garage over to the recreational room downstairs.  That will be enough to power a total of 36 Bitmain Antminer S3's.  By the way, I've installed LED bulbs in every light in the house to cut down on electricity bills.

I have 26 more Antminers to go till I have my 36 units [A total of 16.776 TH's according to Slush's average of my present set up.  I hope to have all 36 here, installed and hashing by the end of November!

Averaging approximately 0.01754775 BTC per block [With 10 miners @ 4.668 TH's] during the 22nd day of September.  That was an awesome day, to say the least!

13 BLOCKS IN ONE DAY!!!!!   WOW!!!!!  TOO GOOD TO BE TRUE!!!!  AND IT WAS MY FIRST 24 HOUR PERIOD AT MINING!!!  BEGINNERS LUCK I SUPPOSE  LOL!!!

Pages: « 1 ... 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 [141]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!