 ## Incorrect Password Recently I've noticed some of my accounts return 'Incorrect Password' when I try to log in. I haven't given it much attention, since those accounts are just test ones, and they have no funds on them. A few days ago, I've stumbled across this [post](https://steemit.com/steemit/@fairytalelife/incorrect-password).  It has become crystal clear to me, that my accounts are no longer mine. ## How it happened I was negligent. When I created the accounts, I chose to just repeat the username 3x and add a 2 to the end. So my username would be `flymetothemoon` and my password `flymetothemoonflymetothemoonflymetothemoon2`. I don't know exactly how the 'attacker' got my password, but if I was malicious and wanted to steal a bunch of steemit accounts, this is what I'd do. **Get all steemit usernames** This is pretty easy, and only takes a 1 line of code: ``` all_usernames = steem.rpc.lookup_accounts('', 10000000) ``` Now that we have the usernames, we can try generating private **owner keys**. Each owner key is generated from the following seed: ``` username + role + password ``` So in our case, we can get our owner key from: ``` flymetothemoonownerflymetothemoonflymetothemoonflymetothemoon2 ``` We have the username, and the role. All we have to do is find the password. To find the password, we bruteforce all potential password combinations. Every time we generate a private key, we simply check if its public key corresponds with the real public key. If it does, we found our password.  To get the real public key, we can simply look at [steemd.com/@yourusername](https://steemd.com/@furion). When we do the bruteforcing, we can use password lists and most commonly used methods that people use. Unfortunately, humans are very predictable. Repeating a username 3 times and adding '2' to the end seems to be one of the patterns. To learn more about password bruteforcing, check out this video: https://www.youtube.com/watch?v=0WPny7wk960 **If you haven't changed your steemit password to the new randomly generated one, please do so asap.** ## Account Recovery Fortunately, Steemit allows for pretty painless recovery process. Since all the accounts are created via Reddit/Facebook, we can use that to verify the ownership. This however only works with accounts that were created on Steemit. If you've created your account trough mining, or from existing account, this recovery method won't work. You can find your `Recovery account` on [steemd.com/@yourusername][https://steemd.com]. ### Recovery Process Open a new 'incognito' window in your browser. For maximum security, make sure you have no other tabs open, or any 3rd party plugins enabled. Go to https://steemit.com/recover_account_step_1. Type in your old username/password. Then, you will be prompted to confirm your Reddit/Facebook account. Make sure you're logged into the same account you used to create the Steemit account.  Afterwards, Steemit will generate a new secure password for you. Save that password somewhere safe (not in your browser). ## How I do security now I have re-generated the passwords for ALL of my Steemit accounts. All of the passwords are long, randomly generated ones. ### Storing the password I have decided to keep passwords somewhere safe. You **don't really need your password** to use Steemit after all. All of my computers run Linux, and all of my SSD's are encrypted using [LUKS](https://guardianproject.info/code/luks/). All of my computers share some folders between them (over encrypted sync), however those folders are encrypted using [encfs](https://wiki.archlinux.org/index.php/EncFS).  And lastly, in my keys folder, I have an encrypted [KeePassX](https://www.keepassx.org/) database. (keepass is a free, cross-platform password manager). So, my passwords are pretty safe. ### You don't need a password You don't need your password, or the owner key to use Steemit. | Key Type | Action | | --- | --- | | Posting | Comment, Vote, Follow | | Active | Send Funds, Power-Up, Power-Down, Trade | | Owner | God mode. Change any other key including itself. | You can login into steemit.com just using your posting key. For maximum convenience, I have added all of my accounts with their **posting keys** as a password to LastPass:  This way I can login into my account with a single click, from any computer I own. This will allow me to post, vote, comment and follow people. If I want to send money, or power up, I will be prompted to enter the active key.  > If someone steals your active key, they could steal your STEEM and Steem Dollars. They will however not be able to steal your Steem Power. I keep my active keys outside of the browser as well. Most of my accounts only have Steem Power, and thus, even if I lose my active key, I am still safe. I can re-generate my active key from the password. ### Generating the Active/Posting Keys The easiest way to get your private active/posting keys, is to go to the `Permissions` tab on your Steemit account.  However, since I have multiple accounts, and I use them from Python as well, I've made a script that can generate my keys from passwords. It can also import the keys into `Piston`. ``` import subprocess from pprint import pprint import json from graphenebase.account import PasswordKey from common.helpers import update_json_node def load_users(): with open("steemit_accounts.csv") as f: lines = f.readlines() return lines def regen_keys(username, password, role): pk = PasswordKey(username, password, role) return format(pk.get_public_key(), "STM"), pk.get_private_key() def import_key_into_piston(private_key): subprocess.run(["piston", "addkey", private_key], stdout=subprocess.PIPE) def run(write_mode=False, import_mode=False): roles = ["posting", "active"] accounts = load_users() posting_keys = [] active_keys = [] for account in accounts: for role in roles: public_key, private_key = regen_keys(account.split(",")[0], account.split(",")[1].rstrip("\n"), role) if import_mode: print("piston addkey %s" % private_key) import_key_into_piston(str(private_key)) key = { "name": account.split(",")[0], "role": role, "public": public_key, "wif": str(private_key), } if role == "posting": posting_keys.append(key) if role == "active": active_keys.append(key) # pprint(posting_keys) if write_mode: update_json_node("accounts.json", "posting", posting_keys) update_json_node("accounts.json", "active", active_keys) def update_json_node(filename, node, node_data): data = load_json(filename) data[node] = node_data write_json(filename, data) def write_json(filename, data): with open(filename, 'w') as data_file: json.dump(data, data_file, indent=4, sort_keys=True, separators=(',', ':')) if __name__ == "__main__": run(write_mode=True, import_mode=False) ``` ## TL:DR; **To sum up:** - change your password to the long, randomly generated one - save your password somewhere super safe - use posting/active keys to interact with steemit.com
author | furion |
---|---|
permlink | how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security |
category | steemit |
json_metadata | {"tags":["steemit","steem","security"],"links":["https://www.youtube.com/watch?v=0WPny7wk960"]} |
created | 2016-08-14 13:44:45 |
last_update | 2016-08-14 13:44:45 |
depth | 0 |
children | 19 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1,148.140 HBD |
curator_payout_value | 215.177 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,677 |
author_reputation | 116,503,940,714,958 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 798,315 |
net_rshares | 85,484,087,636,916 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dantheman | 0 | 29,049,667,347,627 | 100% | ||
barrie | 0 | 694,891,444,237 | 100% | ||
anonymous | 0 | 28,851,310,802 | 1% | ||
rainman | 0 | 16,968,288,235,844 | 100% | ||
ned | 0 | 14,172,678,320,275 | 20% | ||
samupaha | 0 | 2,233,253,329,430 | 100% | ||
svk | 0 | 181,496,590,425 | 100% | ||
wang | 0 | 3,240,786,741,327 | 100% | ||
boy | 0 | 3,699,356,676 | 100% | ||
bue-witness | 0 | 4,489,692,560 | 100% | ||
bunny | 0 | 850,182,709 | 100% | ||
complexring | 0 | 4,177,573,338,941 | 100% | ||
steemychicken1 | 0 | 1,334,473,630,768 | 100% | ||
bue | 0 | 62,402,124,346 | 100% | ||
mini | 0 | 1,983,170,424 | 100% | ||
witness.svk | 0 | 5,452,181,164,079 | 100% | ||
moon | 0 | 255,801,588 | 100% | ||
alex90342fastn1 | 0 | 110,188,261,748 | 100% | ||
aizensou | 0 | 31,621,662,865 | 100% | ||
boombastic | 0 | 845,134,143,216 | 100% | ||
bingo-0 | 0 | 8,980,177,633 | 100% | ||
steempower | 0 | 1,074,578,818,853 | 100% | ||
officialfuzzy | 0 | 297,082,910,235 | 100% | ||
healthcare | 0 | 735,763,483 | 100% | ||
daniel.pan | 0 | 1,058,975,811 | 100% | ||
dedriss | 0 | 24,192,358,191 | 100% | ||
fbsvk | 0 | 8,715,452,619 | 100% | ||
helen.tan | 0 | 344,816,719 | 100% | ||
yefet | 0 | 24,697,042,360 | 100% | ||
joelinux | 0 | 21,302,034,258 | 100% | ||
fkn | 0 | 23,087,932,932 | 100% | ||
gekko | 0 | 1,577,884,043 | 100% | ||
teamsteem | 0 | 330,430,192,437 | 100% | ||
elishagh1 | 0 | 29,642,688,218 | 100% | ||
acidyo | 0 | 8,301,254,386 | 100% | ||
coar | 0 | 1,747,667,900 | 100% | ||
murh | 0 | 1,449,604,463 | 33.01% | ||
creator | 0 | 2,382,323,140,351 | 100% | ||
blakemiles84 | 0 | 345,958,230,941 | 100% | ||
tinfoilfedora | 0 | 75,777,764,066 | 100% | ||
leprechaun | 0 | 905,625,375 | 100% | ||
aenor | 0 | 56,968,029,402 | 100% | ||
thecryptofiend | 0 | 13,642,071,770 | 100% | ||
justtryme90 | 0 | 26,530,003,410 | 100% | ||
altoz | 0 | 35,000,053,376 | 100% | ||
michaelx | 0 | 41,137,766,970 | 100% | ||
jparty | 0 | 17,598,523,265 | 100% | ||
marco-delsalto | 0 | 36,343,426,330 | 100% | ||
magnebit | 0 | 5,498,641,980 | 100% | ||
primus | 0 | 6,925,929,169 | 100% | ||
djm34 | 0 | 25,654,235,865 | 100% | ||
cannav | 0 | 8,687,337,492 | 100% | ||
rubybian | 0 | 32,037,689,815 | 100% | ||
hitmeasap | 0 | 23,644,495,850 | 100% | ||
cmtzco | 0 | 7,311,209,009 | 100% | ||
furion | 0 | 40,626,895,152 | 100% | ||
barbara2 | 0 | 568,995,168 | 100% | ||
ch0c0latechip | 0 | 595,582,785 | 100% | ||
doge4lyf | 0 | 583,298,433 | 100% | ||
demyan7 | 0 | 1,088,570,742 | 100% | ||
anyx | 0 | 22,016,509,614 | 20% | ||
gikitiki | 0 | 4,457,171,900 | 100% | ||
repholder | 0 | 151,114,292,806 | 100% | ||
thegoodguy | 0 | 3,724,582,984 | 100% | ||
paco | 0 | 78,865,878,979 | 100% | ||
karen13 | 0 | 4,801,743,319 | 100% | ||
fundurian | 0 | 7,290,653,990 | 100% | ||
grolelo | 0 | 10,000,403,084 | 100% | ||
nippel66 | 0 | 5,337,977,438 | 100% | ||
bitcoiner | 0 | 2,645,979,084 | 100% | ||
exitmass | 0 | 12,414,394,702 | 100% | ||
vlad | 0 | 468,313,824 | 100% | ||
tarindel | 0 | 4,358,485,329 | 100% | ||
liberosist | 0 | 90,622,620,803 | 100% | ||
bola | 0 | 1,289,212,816 | 100% | ||
tokyodude | 0 | 2,052,906,149 | 100% | ||
elmusic | 0 | 109,197,961 | 100% | ||
jl777 | 0 | 222,005,427,253 | 100% | ||
positive | 0 | 17,769,505,927 | 100% | ||
paquito | 0 | 16,886,796,000 | 100% | ||
valenttina | 0 | 123,486,845 | 100% | ||
e-steem | 0 | 2,625,583,181 | 100% | ||
turretkilo | 0 | 209,171,009 | 100% | ||
tobythecat | 0 | 166,782,528 | 100% | ||
kooshikoo | 0 | 291,659,459 | 100% | ||
proto | 0 | 20,512,819,745 | 100% | ||
curator | 0 | 642,065,455 | 100% | ||
trisnawati | 0 | 960,013,561 | 100% | ||
dubraman | 0 | 221,335,059 | 100% | ||
sisterholics | 0 | 2,983,199,877 | 100% | ||
alex.chien | 0 | 225,853,786 | 100% | ||
michaeldodridge | 0 | 9,478,303,932 | 100% | ||
fnait | 0 | 587,235,370 | 100% | ||
keepcalmand | 0 | 588,624,874 | 100% | ||
steemster1 | 0 | 118,791,965 | 100% | ||
buyselltrade | 0 | 69,092,124 | 100% | ||
shaka | 0 | 31,165,231,221 | 100% | ||
taker | 0 | 10,048,302,157 | 100% | ||
sykochica | 0 | 1,762,421,848 | 100% | ||
sharon | 0 | 45,760,413 | 100% | ||
allasyummyfood | 0 | 47,871,015,586 | 100% | ||
lillianjones | 0 | 47,989,093 | 100% | ||
laonie | 0 | 612,271,022,288 | 50% | ||
capitalism | 0 | 11,862,597,521 | 100% | ||
xtester | 0 | 19,233,164,967 | 100% | ||
timsaid | 0 | 9,677,454,451 | 100% | ||
darrenturetzky | 0 | 2,179,504,294 | 100% | ||
xiaohui | 0 | 22,103,560,969 | 50% | ||
fairider1 | 0 | 65,509,261 | 100% | ||
jphamer1 | 0 | 877,121,816 | 100% | ||
hdphotography | 0 | 72,106,239 | 100% | ||
msjennifer | 0 | 46,976,020 | 100% | ||
ciao | 0 | 34,309,489 | 100% | ||
cristi | 0 | 1,970,392,439 | 100% | ||
cryptos | 0 | 24,798,555,143 | 100% | ||
leofirehorse | 0 | 57,938,349 | 100% | ||
steemo | 0 | 34,502,211 | 100% | ||
steema | 0 | 34,413,207 | 100% | ||
plasticfuzzy | 0 | 2,681,211,332 | 100% | ||
confucius | 0 | 45,326,936 | 100% | ||
bitcalm | 0 | 26,903,220,484 | 100% | ||
party1999 | 0 | 93,403,354 | 100% | ||
jarvis | 0 | 34,933,915 | 100% | ||
ashwim | 0 | 208,402,731 | 100% | ||
fortuner | 0 | 42,243,510 | 100% | ||
steemit8 | 0 | 14,791,068,402 | 100% | ||
buriga | 0 | 61,403,841 | 100% | ||
dollarvigilante | 0 | 290,342,150,980 | 100% | ||
johnbyrd | 0 | 41,254,942 | 100% | ||
thomasaustin | 0 | 41,252,996 | 100% | ||
thermor | 0 | 40,072,921 | 100% | ||
ficholl | 0 | 41,249,329 | 100% | ||
widell | 0 | 40,067,669 | 100% | ||
steevc | 0 | 102,582,641 | 100% | ||
iamrohitkgupta | 0 | 1,059,873,854 | 100% | ||
revelbrooks | 0 | 40,951,017 | 100% | ||
rittr | 0 | 681,760,383 | 100% | ||
craigwilliamz | 0 | 3,408,747,563 | 100% | ||
curpose | 0 | 38,958,148 | 100% | ||
scramblebot.com | 0 | 87,656,954 | 100% | ||
nullpointer | 0 | 58,172,886 | 100% | ||
lenar | 0 | 591,213,663 | 100% | ||
alexandre | 0 | 5,461,159,916 | 100% | ||
runridefly | 0 | 221,389,653 | 100% | ||
contentjunkie | 0 | 286,620,547 | 100% | ||
uziriel | 0 | 55,421,101 | 100% | ||
aavkc | 0 | 57,330,113 | 100% | ||
makov | 0 | 51,151,734 | 100% | ||
troich | 0 | 38,222,507 | 100% | ||
markrmorrisjr | 0 | 387,171,743 | 100% | ||
crion | 0 | 38,226,487 | 100% | ||
greatness | 0 | 181,306,260 | 100% | ||
hitherise | 0 | 37,982,638 | 100% | ||
wiss | 0 | 36,859,354 | 100% | ||
ajaub1962 | 0 | 56,919,126 | 100% | ||
neurosploit | 0 | 326,117,952 | 100% | ||
negoshi | 0 | 54,552,722 | 100% | ||
l0k1 | 0 | 62,116,894 | 100% | ||
dobermansden | 0 | 55,657,402 | 100% | ||
sanzu | 0 | 58,435,569 | 100% | ||
stroully | 0 | 38,830,063 | 100% | ||
seasi06 | 0 | 956,179,001 | 100% | ||
thadm | 0 | 40,790,117 | 100% | ||
prof | 0 | 39,686,326 | 100% | ||
kev7000 | 0 | 460,063,558 | 100% | ||
mydomain | 0 | 64,159,963 | 100% | ||
techguru | 0 | 56,036,489 | 100% | ||
lighter | 0 | 54,847,450 | 100% | ||
badman | 0 | 53,726,288 | 100% | ||
boooya | 0 | 53,722,821 | 100% | ||
goodtime | 0 | 53,879,146 | 100% | ||
yorsens | 0 | 43,788,134 | 100% | ||
shone | 0 | 55,762,939 | 100% | ||
bitcoinplay | 0 | 53,513,591 | 100% | ||
magdalenaruth | 0 | 52,722,122 | 100% | ||
ethereumnews | 0 | 53,425,700 | 100% | ||
phulbig | 0 | 55,562,979 | 100% | ||
bane | 0 | 48,977,486 | 100% | ||
vive | 0 | 47,883,243 | 100% | ||
coad | 0 | 47,878,164 | 100% | ||
kingdead | 0 | 50,029,202 | 100% | ||
pjo | 0 | 54,318,447 | 100% | ||
zinnia | 0 | 53,214,306 | 100% | ||
serega43 | 0 | 52,096,346 | 100% | ||
zeka | 0 | 52,088,375 | 100% | ||
soso.com | 0 | 50,910,389 | 100% | ||
sofa | 0 | 51,906,983 | 100% | ||
nester7 | 0 | 52,952,261 | 100% | ||
dnjsgkr11 | 0 | 0 | 100% | ||
cellino | 0 | 0 | 100% |
Good post - I've had to do account recovery too, when my password suddenly became invalid. But nothing was taken from the account.
author | aenor |
---|---|
permlink | re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160814t164723251z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-14 16:47:24 |
last_update | 2016-08-14 16:47:24 |
depth | 1 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.085 HBD |
curator_payout_value | 0.026 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 130 |
author_reputation | 8,608,315,716,625 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 800,935 |
net_rshares | 135,489,703,063 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
teatree | 0 | 23,908,868,586 | 100% | ||
alyssas | 0 | 53,450,192,230 | 100% | ||
aenor | 0 | 58,130,642,247 | 100% |
Thanx! Very good explanation. :) 2FA is a good layer against weak passwords and needs one more interaction.
author | ajaub1962 |
---|---|
permlink | re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160815t080631241z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-15 08:06:30 |
last_update | 2016-08-15 08:06:30 |
depth | 1 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 6,711,643,804,542 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 813,340 |
net_rshares | 0 |
Is the Steemit randomly generated password really random? I mean can we trust that it's not using some bad random library ?
author | arnoldwish |
---|---|
permlink | re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160815t003501654z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-15 00:35:24 |
last_update | 2016-08-15 00:35:24 |
depth | 1 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 1,605,666,174,528 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 808,168 |
net_rshares | 0 |
I am new to steemit and my password was generated randomly so I guess I am safe from such attacks. Am I? I suppose steemit should implement 2FA
author | ashwim |
---|---|
permlink | re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160814t135616946z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-14 13:56:18 |
last_update | 2016-08-14 13:56:18 |
depth | 1 |
children | 3 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 143 |
author_reputation | 889,653,568,721 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 798,443 |
net_rshares | 0 |
Unfortunately 2FA is not trivial on a blockchain, you have to remember that any attackers do not need to use steemit.com to hack your account. There are initiatives underway for STEEM but they're not ready for mainstream yet.
author | rainman |
---|---|
permlink | re-ashwim-re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160815t072133286z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-15 07:21:30 |
last_update | 2016-08-15 07:21:30 |
depth | 2 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 225 |
author_reputation | 8,323,904,861,044 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 812,965 |
net_rshares | 0 |
the 2 Factor Authentication is a must . Most sites have already implemented it. Steemit should implement it too
author | techguru |
---|---|
permlink | re-ashwim-re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160814t135942659z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-14 13:59:42 |
last_update | 2016-08-14 13:59:42 |
depth | 2 |
children | 1 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 111 |
author_reputation | 22,444,350,708 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 798,488 |
net_rshares | 53,838,979 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
techguru | 0 | 53,838,979 | 100% |
It doesn't work that way. With the password or keys a malicious hacker can do anything without loging into steemit.
author | leprechaun |
---|---|
permlink | re-techguru-re-ashwim-re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160814t192721913z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-14 19:27:27 |
last_update | 2016-08-14 19:27:27 |
depth | 3 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 117 |
author_reputation | 43,062,894,551,270 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 803,419 |
net_rshares | 1,277,371,891 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
minion | 0 | 1,277,371,891 | 100% |
It does not hurt to have the option to add another layer of security such as 2FA and let users decide if they should activate it or not. But even adding 2FA support can be trickier as if not properly implemented such as a case where you can login and disable it if you manage to get the password, without having to enter the 2FA code geneated on your smartphone, then it is rather pointless. For example if you just enable 2FA security for wallet related operations, but it is not required for you to login in your account...
author | cryptos |
---|---|
permlink | re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160814t135317426z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-14 13:53:18 |
last_update | 2016-08-14 13:54:24 |
depth | 1 |
children | 3 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 525 |
author_reputation | 46,134,267,491,665 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 798,403 |
net_rshares | 222,585,593 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tobythecat | 0 | 166,782,528 | 100% | ||
ajaub1962 | 0 | 55,803,065 | 100% |
2FA does not protect you from a stolen private key. This is why ideally you would keep the password somewhere safe, and only login to steemit with your posting key.
author | furion |
---|---|
permlink | re-cryptos-re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160814t144028323z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-14 14:40:27 |
last_update | 2016-08-14 14:40:27 |
depth | 2 |
children | 2 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 164 |
author_reputation | 116,503,940,714,958 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 798,963 |
net_rshares | 23,720,357,093 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptos | 0 | 23,720,357,093 | 100% |
Yes, I know you can still use the private Owner key to import in the CLI wallet for example and run away with the SBD and STEEM tokens that a user has...
author | cryptos |
---|---|
permlink | re-furion-re-cryptos-re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160814t145607169z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-14 14:56:09 |
last_update | 2016-08-14 14:56:09 |
depth | 3 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 153 |
author_reputation | 46,134,267,491,665 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 799,201 |
net_rshares | 0 |
Using something like a U2F key, Trezor or Ledger would protect you from that, if the devs enabled support for it. Those devices can sign a transaction without ever exposing the private key to interception.
author | demotruk |
---|---|
permlink | re-furion-re-cryptos-re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160815t092436785z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-15 09:24:39 |
last_update | 2016-08-15 09:24:39 |
depth | 3 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 205 |
author_reputation | 279,453,298,745,864 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 814,070 |
net_rshares | 0 |
Nice find. 2 factor would also be welcome here. Because i never trust for 100% on a static password that is stored somewhere.
author | disofdis |
---|---|
permlink | re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160814t142109788z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-14 14:21:09 |
last_update | 2016-08-14 14:21:09 |
depth | 1 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 125 |
author_reputation | 4,628,907,822,710 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 798,747 |
net_rshares | 0 |
This will become more of an issue for more of the community as the steem wealth is distributed, thanks for keeping the topic fresh.
author | grolelo |
---|---|
permlink | re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160815t034439286z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-15 03:44:39 |
last_update | 2016-08-15 03:44:39 |
depth | 1 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 131 |
author_reputation | 1,646,650,171,375 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 810,850 |
net_rshares | 0 |
Not only this. If you don't watch out your cryptocurrency wallets can get get raided as well. http://livestream.com/internetsociety/hopeconf/videos/130745035
author | neurosploit |
---|---|
permlink | re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160814t135744518z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["http://livestream.com/internetsociety/hopeconf/videos/130745035"]} |
created | 2016-08-14 13:57:45 |
last_update | 2016-08-14 13:58:03 |
depth | 1 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 157 |
author_reputation | 14,565,129,670 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 798,459 |
net_rshares | 0 |
Good job man, this is very interesting :)
author | shone |
---|---|
permlink | re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160815t083723655z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-15 08:37:24 |
last_update | 2016-08-15 08:37:24 |
depth | 1 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 0 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 813,599 |
net_rshares | 0 |
Do steemit need 2-factor? I guess that's trickier with an API. With the potentially large amount of currency you could be holding it's worth taking all possible precautions. I use Lastpass too. I've used keepass for local storage
author | steevc |
---|---|
permlink | re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160814t134908824z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-14 13:49:24 |
last_update | 2016-08-14 13:49:24 |
depth | 1 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 229 |
author_reputation | 1,402,605,245,226,125 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 798,364 |
net_rshares | 260,100,337 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ashwim | 0 | 202,770,224 | 100% | ||
aavkc | 0 | 57,330,113 | 100% |
Brilliant post. I think everyone should read this.
author | thecryptofiend |
---|---|
permlink | re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160814t160509757z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-14 16:05:09 |
last_update | 2016-08-14 16:05:09 |
depth | 1 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 323,603,913,866,384 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 800,255 |
net_rshares | 0 |
author | timsaid |
---|---|
permlink | re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160814t190719023z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-14 19:07:18 |
last_update | 2016-08-14 19:07:18 |
depth | 1 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 338,948,364,553,435 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 803,103 |
net_rshares | 49,421,477,326 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
furion | 0 | 40,139,021,016 | 100% | ||
timsaid | 0 | 9,282,456,310 | 100% |
Nice "hack")) And thank you for "steem.li"
author | vlad |
---|---|
permlink | re-furion-how-i-got-hacked-recovered-my-accounts-and-improved-the-steemit-account-security-20160814t151314672z |
category | steemit |
json_metadata | {"tags":["steemit"]} |
created | 2016-08-14 15:13:21 |
last_update | 2016-08-14 15:13:21 |
depth | 1 |
children | 0 |
last_payout | 2016-09-14 10:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 2,715,371,190,063 |
root_title | "How I got 'hacked', recovered my accounts and improved the Steemit account security" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 799,523 |
net_rshares | 40,137,685,732 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
furion | 0 | 40,137,685,732 | 100% |