Bitcoin Forum
May 30, 2024, 06:04:51 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 [4144] 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 ... 7012 »
  Print  
Author Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency  (Read 9722628 times)
xxxgoodgirls
Legendary
*
Offline Offline

Activity: 1092
Merit: 1001


View Profile
March 03, 2015, 05:31:43 PM
 #82861


I  tried for months, but terminal SSH location issues always prevented me. I recommend installing VM-Ware Ubuntu for a headache-less experience.

I always use Terminal to manage mine on Vulture.

What is an "SSH Location issue" exactly ? I do get some funny message from Terminal when I initially connect saying the SSH key is "inaccessible" but it still lets me connect once I type the password. (I've got it pointing at the SSH key at connection).

Does it let you connect even if you do not attach your SSH key?

In summary, the Intel Management Engine and its applications are a backdoor with total access to and control over the rest of the PC. The ME is a threat to freedom, security, and privacy, and the libreboot project strongly recommends avoiding it entirely. Since recent versions of it can’t be removed, this means avoiding all recent generations of Intel hardware. details https://libreboot.org/faq.html#intelme --- https://tehnoetic.com/laptops --- https://store.vikings.net/x200-ryf-certfied
toknormal
Legendary
*
Offline Offline

Activity: 3066
Merit: 1188


View Profile
March 03, 2015, 05:35:18 PM
 #82862


Does it let you connect even if you do not attach your SSH key?

Actually, yes.

I thought I'd disabled password access on Vulture. So it must be ignoring the ssh key and allowing me in with password access only.
funxyzeit
Newbie
*
Offline Offline

Activity: 17
Merit: 0


View Profile
March 03, 2015, 05:35:32 PM
 #82863

Hey people.
Setting up my masternode however on starting MN in wallet I'm getting

"not capable masternode: Could not connect to <ipaddyofmvps>"

Checked settings and looks ok - defo right IP addy  VPS is up and running and redone darkcoin conf setup on both vps and local pc.

Is this more likely to be a payment issue? Any ideas before I start again?





Your masternode might have banned your local wallet. Try this:
1) keep local wallet open
2) stop remote darkcoind (the one that is on vps)
3) remove peers.dat on vps
4) start remote darkcond and wait until it's live (gives you valid responses on getinfo or any other rpc command)
5) issue "masternode start" (or "masternode start-many" - depends on what guide you are following) from local wallet again

Thanks for that.  Unfortunately no joy. Getting same error on masternode start. It is though a wallet I had a masternode previously on (before I f*cked up and moved coins).
Any other suggestions people?
Most times when people have asked me about this particular error, it is due to the fact that there is no 1k vin. Did you send EXACTLY 1000DRK to the Masternode address? Any more, any less, it will not work.

Sorted thanks Tao.  Ended up ditching vps and restarting.  Case of "Carefully RTFM"  Thanks again for your help
toknormal
Legendary
*
Offline Offline

Activity: 3066
Merit: 1188


View Profile
March 03, 2015, 05:37:26 PM
 #82864


Actually, yes.

I thought I'd disabled password access on Vulture. So it must be ignoring the ssh key and allowing me in with password access only.


By the way - I don't understand what the big fuss is with security and masternodes.

So what if someone gets access to my masternode ?

It's no different from a "bad actor" just setting up their own masternode and doing whatever they want to do with it. What can they do anyway ?
xxxgoodgirls
Legendary
*
Offline Offline

Activity: 1092
Merit: 1001


View Profile
March 03, 2015, 05:38:53 PM
 #82865


Does it let you connect even if you do not attach your SSH key?

Actually, yes.

I thought I'd disabled password access on Vulture. So it must be ignoring the ssh key and allowing me in with password access only.


Therefor your sshd_config must not be set properly.

Code:
LoginGraceTime 120
PermitRootLogin no
StrictModes yes
AllowUsers XXXX
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile      %h/.ssh/authorized_keys

ChallengeResponseAuthentication yes

UsePAM yes
PasswordAuthentication no
AuthenticationMethods publickey,keyboard-interactive

here's a ssh key + google auth + password config.

edit: it also requires auth required pam_google_authenticator.so on the top of /etc/pam.d/sshd

In summary, the Intel Management Engine and its applications are a backdoor with total access to and control over the rest of the PC. The ME is a threat to freedom, security, and privacy, and the libreboot project strongly recommends avoiding it entirely. Since recent versions of it can’t be removed, this means avoiding all recent generations of Intel hardware. details https://libreboot.org/faq.html#intelme --- https://tehnoetic.com/laptops --- https://store.vikings.net/x200-ryf-certfied
toknormal
Legendary
*
Offline Offline

Activity: 3066
Merit: 1188


View Profile
March 03, 2015, 05:54:09 PM
 #82866


Therefor your sshd_config must not be set properly.

Code:
LoginGraceTime 120
PermitRootLogin no
StrictModes yes
AllowUsers XXXX
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile      %h/.ssh/authorized_keys

ChallengeResponseAuthentication yes

UsePAM yes
PasswordAuthentication no
AuthenticationMethods publickey,keyboard-interactive


Thanks. Would you mind contextualizing that code for me ? Is that Mac Terminal code or Linux commands to be run on the masternode daemon host ?
xxxgoodgirls
Legendary
*
Offline Offline

Activity: 1092
Merit: 1001


View Profile
March 03, 2015, 06:01:20 PM
 #82867


Therefor your sshd_config must not be set properly.

Code:
LoginGraceTime 120
PermitRootLogin no
StrictModes yes
AllowUsers XXXX
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile      %h/.ssh/authorized_keys

ChallengeResponseAuthentication yes

UsePAM yes
PasswordAuthentication no
AuthenticationMethods publickey,keyboard-interactive


Thanks. Would you mind contextualizing that code for me ? Is that Mac Terminal code or Linux commands to be run on the masternode daemon host ?


That's sshd_config placed in /etc/ssh/ folder of the linux server. You can use a text editor for the modifies as well.

here's how to config google auth on the server https://www.digitalocean.com/community/tutorials/how-to-protect-ssh-with-two-factor-authentication
I guess you have already set up the SSH key (.ssh/authorized_keys) on your server, haven't you?

In summary, the Intel Management Engine and its applications are a backdoor with total access to and control over the rest of the PC. The ME is a threat to freedom, security, and privacy, and the libreboot project strongly recommends avoiding it entirely. Since recent versions of it can’t be removed, this means avoiding all recent generations of Intel hardware. details https://libreboot.org/faq.html#intelme --- https://tehnoetic.com/laptops --- https://store.vikings.net/x200-ryf-certfied
toknormal
Legendary
*
Offline Offline

Activity: 3066
Merit: 1188


View Profile
March 03, 2015, 06:13:07 PM
 #82868

That's sshd_config placed in /etc/ssh/ folder of the linux server. You can use a text editor for the modifies as well.

here's how to config google auth on the server https://www.digitalocean.com/community/tutorials/how-to-protect-ssh-with-two-factor-authentication
I guess you have already set up the SSH key (.ssh/authorized_keys) on your server, haven't you?


Thanks ! That's very handy.

I remember setting up that config file now.
spatula
Hero Member
*****
Offline Offline

Activity: 507
Merit: 500



View Profile
March 03, 2015, 06:14:00 PM
 #82869


Actually, yes.

I thought I'd disabled password access on Vulture. So it must be ignoring the ssh key and allowing me in with password access only.


By the way - I don't understand what the big fuss is with security and masternodes.

So what if someone gets access to my masternode ?

It's no different from a "bad actor" just setting up their own masternode and doing whatever they want to do with it. What can they do anyway ?


You have a very good point. Here are the few arguments for enhanced security that I can think of:

1. Bad actors are not likely to be vested in the coin enough to have many masternodes, or they wouldn't want to attack the network. Easy access to other peoples masternodes will not provide access to coins for the attacker, but would give them the ability to utilize an already authenticated masternode.

2. Attacker can see the IP addresses (yours) used to connect to the VPS in the logs, this could help identify the owner of the masternode or even the storage location of the wallet holding the 1k DRK that authenticates it. The attacker could then focus their efforts on you directly.

3. Non DRK related uses, like hosting a phishing site or spam email relay server on your VPS.

pookielax31
Sr. Member
****
Offline Offline

Activity: 462
Merit: 500



View Profile
March 03, 2015, 06:32:02 PM
 #82870

Upvote and leave comments please... lets get this to the top of the page!!! And remember these guys love BTC they have built their business on top of it so don't be condescending or make ignorant comments simply stating "oh BTC sucks it isn't anonymous" etc .. lets try to have a civil thread and show these guys that they really need to step in to the DARK....maybe even offer a dark coin giveaway I would deff be willing to throw in for that! Lets be classy but bring the darkness
https://www.reddit.com/r/DarkNetMarkets/comments/2xskg8/psaarticle_darknet_markets_and_darkcoin/

BUMP.... Join in and be active... some good points about cash out being brought to light
toknormal
Legendary
*
Offline Offline

Activity: 3066
Merit: 1188


View Profile
March 03, 2015, 06:50:15 PM
 #82871


No keeping Bitcoin down right now.

Just watched a 161 BTC sellwall get munched in 90 seconds on BTCe.
Xdragon
Hero Member
*****
Offline Offline

Activity: 543
Merit: 500


View Profile
March 03, 2015, 06:52:23 PM
 #82872


No keeping Bitcoin down right now.

Just watched a 161 BTC sellwall get munched in 90 seconds on BTCe.

In a few years, someone with 161 DRK will be whale.
toknormal
Legendary
*
Offline Offline

Activity: 3066
Merit: 1188


View Profile
March 03, 2015, 07:02:12 PM
 #82873


Jeez. Stamp's already at 280, BTCe's 5 behind it.

Everytime there's a huge dump it just gets bounced up to the high heavens again.
kointrend
Hero Member
*****
Offline Offline

Activity: 655
Merit: 500



View Profile
March 03, 2015, 07:04:53 PM
 #82874

All right then,
let get this rolling !

Video DRK Donations Please:

XkiQaaqbGTJ5WBQHomB7qMyEMULTfXDRP4

dig deep in your pockets
we need around 850 - 900 DRK


Tx
 Grin Grin Grin Grin
Let's go crowdfunding!
Jie kelong
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
March 03, 2015, 07:10:29 PM
 #82875

DRK coinmarketcap.com ranked fifth, DRK, worth $15 million, not the style of the DRK, substantially undervalued, today the market to sell a lot of COINS, in a sense, the market to buy wall is not a very confident, everyone waiting for what
toknormal
Legendary
*
Offline Offline

Activity: 3066
Merit: 1188


View Profile
March 03, 2015, 07:13:25 PM
 #82876


BTCe traders starting to close out their remaining shorts.



Bots frantically trying to burst the balloon. Endless 0.001 ladders being placed.

F***ck ! Sellwals being pulverised. What's going on ?
stonehedge
Legendary
*
Offline Offline

Activity: 1680
Merit: 1002


Decentralize Everything


View Profile
March 03, 2015, 07:21:39 PM
 #82877


BTCe traders starting to close out their remaining shorts.



Bots frantically trying to burst the balloon. Endless 0.001 ladders being placed.

F***ck ! Sellwals being pulverised. What's going on ?

$300 by morning?
toknormal
Legendary
*
Offline Offline

Activity: 3066
Merit: 1188


View Profile
March 03, 2015, 07:27:04 PM
 #82878


$300 by morning?

At this rate.

This will be interesting now. Everything depends on whether there's another crash to go yet.

If you look out to the long range charts there've been 2, possibly 3 big false alarms since last January where the trend turned around like this only to reverse back down again and continue the long term down trend. It can take up to 6-8 weeks to really know if that was the bottom.

Despite that I think the fundamentals of Bitcoin are now so bullish that I really can't see it tanking because it looks like new money may start to come in over the next few months.
Freckleg
Hero Member
*****
Offline Offline

Activity: 508
Merit: 500


View Profile
March 03, 2015, 07:37:24 PM
 #82879

All right then,
let get this rolling !

Video DRK Donations Please:

XkiQaaqbGTJ5WBQHomB7qMyEMULTfXDRP4

dig deep in your pockets
we need around 850 - 900 DRK


Tx
 Grin Grin Grin Grin
Let's go crowdfunding!

Bump. Come on guys.

Donate 10 drk --> good I support this coin
Donate 30 drk --> excellent I am a proud dark supporter, I check dark stats 32 times a day
Donate 50 drk --> fantastic I am proud to be a darkcoiner and think of naming my first born Evan
Donate > 65 drk --> über fantastic excellent I Darkcoin therefore I am. I painted my house in Darkcoin colours. My boys are named Evan and Duff and I can regularly be found on the streets with a sandwich board saying 'protect your privacy, choose DarkCoin!'
kointrend
Hero Member
*****
Offline Offline

Activity: 655
Merit: 500



View Profile
March 03, 2015, 07:42:40 PM
 #82880

All right then,
let get this rolling !

Video DRK Donations Please:

XkiQaaqbGTJ5WBQHomB7qMyEMULTfXDRP4

dig deep in your pockets
we need around 850 - 900 DRK


Tx
 Grin Grin Grin Grin
Let's go crowdfunding!

Bump. Come on guys.

Donate 10 drk --> good I support this coin
Donate 30 drk --> excellent I am a proud dark supporter, I check dark stats 32 times a day
Donate 50 drk --> fantastic I am proud to be a darkcoiner and think of naming my first born Evan
Donate > 65 drk --> über fantastic excellent I Darkcoin therefore I am. I painted my house in Darkcoin colours. My boys are named Evan and Duff and I can regularly be found on the streets with a sandwich board saying 'protect your privacy, choose DarkCoin!'

Cheesy I twit you.
Pages: « 1 ... 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 [4144] 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 ... 7012 »
  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!