create account

How to set an own password, which is not generated by Steemit by noisy

View this thread on: hive.blogpeakd.comecency.com
· @noisy · (edited)
$121.84
How to set an own password, which is not generated by Steemit
Ok, we are going fast with our _Steem Security_ series, but it is fun, so let's continue and learn today something very useful :)

![part4.jpg](https://steemitimages.com/DQmbLf8qgtVcY2FXKN1qmpzcAmCMv6RL62aeyLrGHEdsxMV/part4.jpg)

Let's start with a quick recap of what we already learned from previous articles:

In [the first article](https://steemit.com/security/@noisy/what-is-the-difference-between-a-password-and-a-private-key-s-on-steemit-how-to-make-your-account-more-secure-by-using-them), I mentioned, that **to use your Steem account, you do not need to use your password at all.**

> ### So why I need a Master Password at all?
> Technically speaking, you don't need it. If you have your all private keys (posting, active, owner, memo) then you can do everything without a password, even create a new password and a new set of all keys.
> 
> Why is that? Because in the whole Steem ecosystem, **a password is used only to generate public and private keys from it**. But exactly this is done under the hood

From [the 2nd article](https://steemit.com/security/@noisy/public-and-private-keys-how-they-are-used-by-steem-making-all-of-these-possible-you-can-find-answer-here) you should remember, that transaction pushed to Steem blockchain are authorized by signing each transaction with a proper individual private key. This works only because Steem Blockchain stores a corresponding public key of every user.

![](https://steemitimages.com/0x0/https://steemitimages.com/DQmP79TRrrTcY7XcyfQsAW5yPTKrHH97b3v9jVGGv3bLAi3/Selection_999(194).png)

And the most important: Steem Blockchain do not store your password.  It only stores your public keys generated from your password.

Conclusion:  **If you want to change a password, a new set of keys has to be generated from it. The password changes when new public keys are upload to Steem Blockchain**.

# Scenario: Changing a password with Steemit.com website

1. User @noisy3 want to change an old, long, and hard to remember password from <sub><sup>P5KB2ir4BaDTeeBe5SUW16F6NYGeYSVaUBn261kDPLGGCSiNahtm</sup></sub> to a new password
2. From user's menu, user choose option "change password" and he is redirected to https://steemit.com/@noisy3/password
3. User has to provide an old password, but he cannot provide a new password, because it is generated by steemit website.
4. If user want to change password, he ends up with **long, hard to remember** but **very secure** new password, like this: <sub><sup>P5KMpYPGmVMkWgaDBX337eo3nULEq3MwrEtURydXbdS213exrKbx</sup></sub>

## Question

1. Why user cannot set an own password?<br>
Steemit [changed a password policy in last year](https://steemit.com/steemit/@steemitblog/steemit-to-update-password-policy). Before that, users were able to set any password. The only requirement was, that it had to be at least 16-characters long.<br>
But the truth was, that if a user set as a password a string of characters like: `1234567890123456`, then this password wasn't secure at all, because it was very easy to guess or [brute forced using the most common password patterns](https://www.youtube.com/watch?v=7U-RbOKanYs).

2. Why I need so hard to remember password?<br>
What you actually need is a very secure password, and secure passwords are often very hard to remember. Probably you treat Steemit as another social media website, so you might be surprised, why your Facebook password is not strong and good enough. (BTW, I hope, that you do not use exactly the same password on all type of services - that is very dangerous!)<br>
The reason why your password has to be so secure is simply because with this password you also manage all your funds. So your Steem password **should be as hard to guess as your password to your bank account**!

# Concerns

Generated passwords are very secure, but there are at least 3 big problems with them:

1. They are hard to remember, and the truth is, that they do not have to be:<br>
<center>https://imgs.xkcd.com/comics/password_strength.png</center>

2. You need to trust a Steemit website, that this password is generated randomly, and it is not saved anywhere

3. Generated in such way passwords follow very well described and known specification. Every Steem user can easily recognize that those random string of letters is probably Steem passwords:<br>- `P5JcPfXayxiaFYPPKrt2BJGajtpACHoh35WZcgP6YKWuvovAYfb1`<br>- `P5K6j5G7tp6B9JsR6HVJf7NE828Ms3oMvYhReDrXMZe1dohiPdg4`<br>- `P5JigoK5v3E7E2ChbVhjb3Ji9USKz5vJBu9m2Yubf3aeJE1mxAmt`<br>
So guess what will happen if you by accident publish your password somewhere, because you copied it from password manager or a file, and you forgot, that your password is still in your clipboard. This might happen:<br>![Screenshot from 2017-08-10 16:52:19.png](https://steemitimages.com/DQmXdMhWL2T8NW7WvfprP6ZjvnnraN1DYgX2pm8sQFSooKk/Screenshot%20from%202017-08-10%2016%3A52%3A19.png)
or this:<br>![ ](https://steemitimages.com/0x0/https://steemitimages.com/DQmVhNiEuBhNf1xE4NEufs7R3ZU5oPM6gQt39oQVu6mECLZ/Selection_999(152).png)

<center><sub><sup>The screen above shows [a real live example of a situation](https://steemit.com/steemit/@noisy/we-just-hacked-11-accounts-on-steemit-1158-sbd-and-8250-steem-is-under-our-control-but-we-are-good-guys-so), where a user exposed a password by accident.</sup></sub></center>


# Setting own password with Python Script

With script below, you can set any password, and you can do that without Steemit website.

```
# requirements: python3.5, steem==0.18.8

import json
from steem import Steem
from steembase.account import PasswordKey
from steembase import operations


old_password = 'P5KMpYPGmVMkWgaDBX337eo3nULEq3MwrEtURydXbdS213exrKbx'
new_password = 'smooth lesson hawk initial promote critic'
account = 'noisy3'


old_owner_key = str(
    PasswordKey(account, old_password, "owner").get_private_key()
)

s = Steem(keys=[old_owner_key])

new_public_keys = {}

for role in ["owner", "active", "posting", "memo"]:
    private_key = PasswordKey(account, new_password, role).get_private_key()
    new_public_keys[role] = str(private_key.pubkey)

new_data = {
    "account": account,
    "json_metadata": {},
    "owner": {
        "key_auths": [
            [new_public_keys["owner"], 1]
        ],
        "account_auths": [],
        "weight_threshold": 1
    },
    "active": {
        "key_auths": [
            [new_public_keys["active"], 1]
        ],
        "account_auths": [],
        "weight_threshold": 1
    },
    "posting": {
        "key_auths": [
            [new_public_keys["posting"], 1]
        ],
        "account_auths": [],
        "weight_threshold": 1
    },
    "memo_key": new_public_keys["memo"]
}

print("New data:")
print(json.dumps(new_data, sort_keys=True, indent=4))

op = operations.AccountUpdate(**new_data)
result = s.commit.finalizeOp(op, account, "owner")

print("Result:")
print(json.dumps(result, sort_keys=True, indent=4))

```
<sub><sup>This script [could be much shorter](https://gist.github.com/noisy/fc11c2327f7efbf426dd7d90e5d181ab), but I think for educational purposes, script above is better</sup></sub>

# Script in action

https://www.youtube.com/watch?v=kqRDx4XdFsI

----------------

This article belongs to series of articles which describes security on Steemit:

1. [What is the difference between a password and a private key(s) on Steemit? How to make your account more secure, by using them correctly.](https://steemit.com/security/@noisy/what-is-the-difference-between-a-password-and-a-private-key-s-on-steemit-how-to-make-your-account-more-secure-by-using-them)
2. [Public and Private Keys - how they are used by Steem, making all of these possible?](https://steemit.com/security/@noisy/public-and-private-keys-how-they-are-used-by-steem-making-all-of-these-possible-you-can-find-answer-here)
3. [How to generate all Steem user's keys from master password, without a Steemit website, being OFFLINE](https://steemit.com/security/@noisy/public-and-private-keys-how-to-generate-all-steem-user-s-keys-from-master-password-without-a-steemit-website-being-offline)
4. [How to set own password, which is not generated by Steemit](https://steemit.com/security/@noisy/how-to-set-an-own-password-which-is-not-generated-by-steemit) (this article)
5. How passwords are stored by Steemit in your browser, and why it is secure.
6. How to setup multisig/multiple authorities for your account
7. ...

Make sure to follow my account, if you don't want to miss any of these :)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 136 others
👎  , ,
properties (23)
authornoisy
permlinkhow-to-set-an-own-password-which-is-not-generated-by-steemit
categorysecurity
json_metadata{"tags":["security","steemit","steem","tutorial","programming"],"users":["noisy3"],"image":["https://steemitimages.com/DQmbLf8qgtVcY2FXKN1qmpzcAmCMv6RL62aeyLrGHEdsxMV/part4.jpg","https://steemitimages.com/0x0/https://steemitimages.com/DQmP79TRrrTcY7XcyfQsAW5yPTKrHH97b3v9jVGGv3bLAi3/Selection_999(194).png","https://imgs.xkcd.com/comics/password_strength.png","https://steemitimages.com/DQmXdMhWL2T8NW7WvfprP6ZjvnnraN1DYgX2pm8sQFSooKk/Screenshot%20from%202017-08-10%2016%3A52%3A19.png","https://steemitimages.com/0x0/https://steemitimages.com/DQmVhNiEuBhNf1xE4NEufs7R3ZU5oPM6gQt39oQVu6mECLZ/Selection_999(152).png","https://img.youtube.com/vi/kqRDx4XdFsI/0.jpg"],"links":["https://steemit.com/security/@noisy/what-is-the-difference-between-a-password-and-a-private-key-s-on-steemit-how-to-make-your-account-more-secure-by-using-them","https://steemit.com/security/@noisy/public-and-private-keys-how-they-are-used-by-steem-making-all-of-these-possible-you-can-find-answer-here","https://steemit.com/@noisy3/password","https://steemit.com/steemit/@steemitblog/steemit-to-update-password-policy","https://www.youtube.com/watch?v=7U-RbOKanYs","https://steemit.com/steemit/@noisy/we-just-hacked-11-accounts-on-steemit-1158-sbd-and-8250-steem-is-under-our-control-but-we-are-good-guys-so","https://gist.github.com/noisy/fc11c2327f7efbf426dd7d90e5d181ab","https://www.youtube.com/watch?v=kqRDx4XdFsI","https://steemit.com/security/@noisy/public-and-private-keys-how-to-generate-all-steem-user-s-keys-from-master-password-without-a-steemit-website-being-offline","https://steemit.com/security/@noisy/how-to-set-an-own-password-which-is-not-generated-by-steemit"],"app":"steemit/0.1","format":"markdown"}
created2017-08-11 13:53:00
last_update2017-08-11 15:04:51
depth0
children58
last_payout2017-08-18 13:53:00
cashout_time1969-12-31 23:59:59
total_payout_value102.889 HBD
curator_payout_value18.953 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,446
author_reputation59,974,373,499,600
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,503,946
net_rshares35,687,823,776,870
author_curate_reward""
vote details (203)
@adore-eu ·
great post, resteemed
properties (22)
authoradore-eu
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t154243923z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 15:42:57
last_update2017-08-11 15:42:57
depth1
children0
last_payout2017-08-18 15:42:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation2,166,225,763,853
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,514,763
net_rshares0
@ahsansaeed · (edited)
Thank you for such cool tips, we really appreciate that! *Upvoted and Resteemed*
properties (22)
authorahsansaeed
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t155256325z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 15:52:57
last_update2017-08-11 15:53:18
depth1
children0
last_payout2017-08-18 15:52:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation1,201,935,056,486
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,515,715
net_rshares0
@allmonitors ·
$0.18
Password safe is one good way also in storing password.
👍  
properties (23)
authorallmonitors
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170813t220909384z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-13 22:09:09
last_update2017-08-13 22:09:09
depth1
children0
last_payout2017-08-20 22:09:09
cashout_time1969-12-31 23:59:59
total_payout_value0.133 HBD
curator_payout_value0.044 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation1,266,911,725,617,269
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,724,833
net_rshares54,802,486,879
author_curate_reward""
vote details (1)
@appledeguzman ·
im not super techie... im not getting it... can someone help me with it
properties (22)
authorappledeguzman
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t145203207z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 14:52:03
last_update2017-08-11 14:52:03
depth1
children0
last_payout2017-08-18 14:52:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation73,116,379,216
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,510,069
net_rshares0
@asmaasema ·
Yeeees.. I really wanted to do that , I just found it here..
Thank you dear for your so useful material.. Continue please..
Followed and upvoted done.
Have a look into my blog, you may like any of my posts :-)
properties (22)
authorasmaasema
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t145456178z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 14:55:03
last_update2017-08-11 14:55:03
depth1
children0
last_payout2017-08-18 14:55:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation73,734,759,790
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,510,393
net_rshares0
@azissuloh · (edited)
Thanks for sharing @noysi its very useful article. I enjoy it. 

Lets visit my page if you aren't busy.
👎  
properties (23)
authorazissuloh
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t142053127z
categorysecurity
json_metadata{"tags":["security"],"users":["noysi"],"app":"steemit/0.1"}
created2017-08-11 14:21:03
last_update2017-08-11 14:22:18
depth1
children0
last_payout2017-08-18 14:21:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation6,978,132,461,726
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,506,976
net_rshares-618,768,565
author_curate_reward""
vote details (1)
@bukharisulaiman ·
Thanks you for sharing @noisy. I am from Aceh.
properties (22)
authorbukharisulaiman
permlinkre-noisy-2017815t42644762z
categorysecurity
json_metadata{"tags":"security","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-14 21:26:45
last_update2017-08-14 21:26:45
depth1
children0
last_payout2017-08-21 21:26:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation3,201,697,376,144
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,817,082
net_rshares0
@cactii ·
Very useful information - I was wondering about it and now I know! Thanks!
properties (22)
authorcactii
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t142356138z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 14:23:57
last_update2017-08-11 14:23:57
depth1
children0
last_payout2017-08-18 14:23:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation13,667,744,488
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,507,262
net_rshares0
@danlupi ·
its not possible to send a passwptf in memo see GitHub steem fix.
properties (22)
authordanlupi
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t151555243z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 15:15:54
last_update2017-08-11 15:15:54
depth1
children0
last_payout2017-08-18 15:15:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation40,807,748,620,275
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,512,310
net_rshares0
@dbukyo ·
Little bit complicated:)
properties (22)
authordbukyo
permlinkre-noisy-2017811t162439295z
categorysecurity
json_metadata{"tags":"security","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-11 14:24:45
last_update2017-08-11 14:24:45
depth1
children0
last_payout2017-08-18 14:24:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation7,466,845,496,950
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,507,337
net_rshares0
@foxkoit ·
Interesting :) I go and look more this info, then I know what I must think :)
properties (22)
authorfoxkoit
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170815t083802000z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-15 08:38:03
last_update2017-08-15 08:38:03
depth1
children0
last_payout2017-08-22 08:38:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation533,607,545,503,322
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,856,928
net_rshares0
@fredrikaa ·
$0.67
Thank you for taking the time to write this series @noisy. I paid the expensive lesson by doing the final mistake you showed only 2 days ago when transferring 493 steem from bittrex to steemit. All gone 10 minutes later, and I am just lucky to have my account back already. ( [My story](https://steemit.com/steemit/@fredrikaa/turning-frustration-into-motivation-following-theft-from-my-steemit-account) )

I wish I had read an in depth tutorial like yours the very first day I got into steemit. But at least now I have.

Keep it up!
👍  , , ,
properties (23)
authorfredrikaa
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t140644839z
categorysecurity
json_metadata{"tags":["security"],"users":["noisy"],"links":["https://steemit.com/steemit/@fredrikaa/turning-frustration-into-motivation-following-theft-from-my-steemit-account"],"app":"steemit/0.1"}
created2017-08-11 14:06:45
last_update2017-08-11 14:06:45
depth1
children4
last_payout2017-08-18 14:06:45
cashout_time1969-12-31 23:59:59
total_payout_value0.532 HBD
curator_payout_value0.141 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length532
author_reputation310,528,541,043,341
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,505,481
net_rshares198,059,450,003
author_curate_reward""
vote details (4)
@sneakgeekz ·
Wow sorry to hear that.  Where did you expose it?

Here is a small tip

tip! 2.0
👍  
properties (23)
authorsneakgeekz
permlinkre-fredrikaa-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t142424361z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 14:24:24
last_update2017-08-11 14:24:24
depth2
children2
last_payout2017-08-18 14:24:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation2,793,353,023,603
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,507,301
net_rshares1,096,807,524
author_curate_reward""
vote details (1)
@fredrikaa ·
$0.13
Thank you very much for that. It's both greatly appreciated and half the reason why I think STEEM will eventually go to the Moon when I see how great this community is.

I really did two mistakes.
1. I thought sending funds to a steemit account required the use of the public memo key as an ID for which account to send the funds to.
2. I mistakenly copied the wrong key from the word file where I had saved them. Posting my main password instead of the public memo key (which was unnecessary in the first place), and thus making it visible on the Blockchain (dunno if they saw it on my wallet, on Steemd, or just had a bot searching for it).

10 minutes later someone had spotted my error, changed all my keys, and sent the 493 STEEM I had just received to Blocktrades. At least I got my Account Recovery done very quickly, mostly thanks to a good community here helping me reach the right individuals, and knowing some myself that could help.

Anyhow, it was really awful, and I just hope I can help others not do the same grave mistake.
👍  
properties (23)
authorfredrikaa
permlinkre-sneakgeekz-re-fredrikaa-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t143423714z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 14:34:24
last_update2017-08-11 14:34:24
depth3
children1
last_payout2017-08-18 14:34:24
cashout_time1969-12-31 23:59:59
total_payout_value0.101 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,039
author_reputation310,528,541,043,341
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,508,267
net_rshares39,748,601,119
author_curate_reward""
vote details (1)
@tipu ·
<p><img src="http://i.imgur.com/5PXr3DQ.png"><strong>Hi @fredrikaa! You have just received a 2.0 SBD tip from @sneakgeekz!</strong></p><p><a href="https://steemit.com/steemit/@tipu/introducing-tipu-service-for-super-easy-sending-tips-promoting-and-sharing-profit" rel="noopener">@tipU - send tips by writing tip! in the comment and get share in service profit :)</a><br>By upvoting this comment you support the service - thanks!</p>
properties (22)
authortipu
permlinkre-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t140644839z-20170811t142442
categorysecurity
json_metadata""
created2017-08-11 14:24:45
last_update2017-08-11 14:24:45
depth2
children0
last_payout2017-08-18 14:24:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length432
author_reputation55,904,131,938,387
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,507,336
net_rshares0
@gikitiki ·
I'm too lazy to remember passwords.  I recommend getting a good password manager.
properties (22)
authorgikitiki
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t152811875z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 15:27:42
last_update2017-08-11 15:27:42
depth1
children0
last_payout2017-08-18 15:27:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation16,572,681,158,525
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,513,375
net_rshares0
@haji ·
Hello my dear friend ❤️
I am following your account every day { 🙏🤝 }
@haji
properties (22)
authorhaji
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t140356914z
categorysecurity
json_metadata{"tags":["security"],"users":["haji"],"app":"steemit/0.1"}
created2017-08-11 14:03:51
last_update2017-08-11 14:03:51
depth1
children0
last_payout2017-08-18 14:03:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation3,030,788,981,572
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,505,194
net_rshares0
@inzeen ·
Setting own password  is a good idea but we need to trust steemit though. But very informative article. Thanks for sharing it. Resteemed
properties (22)
authorinzeen
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170812t050915878z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-12 05:09:15
last_update2017-08-12 05:09:15
depth1
children0
last_payout2017-08-19 05:09:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation16,590,422,236
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,568,429
net_rshares0
@itmakesense ·
thats awesome....meaningful info..keep going up man
👍  
properties (23)
authoritmakesense
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t170746785z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 17:07:51
last_update2017-08-11 17:07:51
depth1
children0
last_payout2017-08-18 17:07:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation6,198,147,189
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,522,508
net_rshares619,520,000
author_curate_reward""
vote details (1)
@julzee ·
Why is there no resteem arrow so that i can resteem this?
properties (22)
authorjulzee
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170913t220722098z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-09-13 22:07:21
last_update2017-09-13 22:07:21
depth1
children2
last_payout2017-09-20 22:07:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation272,703,181,517
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,803,812
net_rshares0
@greatestjourney ·
Either it doesn't work on mobile or the post is too old.
properties (22)
authorgreatestjourney
permlinkre-julzee-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170923t014547036z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-09-23 01:45:42
last_update2017-09-23 01:45:42
depth2
children1
last_payout2017-09-30 01:45:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation604,197,045,697
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,667,146
net_rshares0
@julzee ·
Thanks. I usually can resteem on my tablet so must be old post.
👍  
properties (23)
authorjulzee
permlinkre-greatestjourney-re-julzee-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170923t021631624z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-09-23 02:16:33
last_update2017-09-23 02:16:33
depth3
children0
last_payout2017-09-30 02:16:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation272,703,181,517
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,668,698
net_rshares155,689,944
author_curate_reward""
vote details (1)
@jvelazqu22 · (edited)
@noisy, you seem to be very knowledgeable  about the steem blockchain. I have a quick question that you may be able to answer.  @someguy123, created a very nice service which allows users to create STEEM accounts much faster than following the normal process - anon steem network.  I know others that have used this service. This site creates the account, gives directions to change the new password via steemit.com and once the user updates to the new password/keys, then the user is instructed to go back to the anon site and click a link to destroy  the old password and keys which presumably deletes the old passwords and keys. My question is this, if the original/old passwords/keys were not actually deleted from the server, could @someguy123 actually re-store the account using the old credentials and actually take over the account within the 30 day limit window? He seems to have a very good reputation, so i doubt that is the case but one never knows for sure and wanted to find out if that is a possible risk.
properties (22)
authorjvelazqu22
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20180120t231537108z
categorysecurity
json_metadata{"tags":["security"],"users":["noisy","someguy123"],"app":"steemit/0.1"}
created2018-01-20 23:15:27
last_update2018-01-21 00:07:03
depth1
children0
last_payout2018-01-27 23:15:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,020
author_reputation9,194,643
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,972,282
net_rshares0
@kamal777 ·
<a href="https://ibb.co/d4p0HF"><img src="https://preview.ibb.co/fj7WPv/coollogo_com_5091830.png" alt="coollogo_com_5091830" border="0"></a><br /><a target='_blank' href='https://imgbb.com/'>Its Very Useful for Newbie Like Me :)</a><br />
properties (22)
authorkamal777
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t160047388z
categorysecurity
json_metadata{"tags":["security"],"image":["https://preview.ibb.co/fj7WPv/coollogo_com_5091830.png"],"links":["https://ibb.co/d4p0HF","https://imgbb.com/"],"app":"steemit/0.1"}
created2017-08-11 16:00:48
last_update2017-08-11 16:00:48
depth1
children0
last_payout2017-08-18 16:00:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length238
author_reputation316,741,151
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,516,472
net_rshares0
@lovelygirl ·
Thanks for sharing this tips and information. I'm sure this post will be the first in Steemit
👎  
properties (23)
authorlovelygirl
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t145742354z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 14:57:42
last_update2017-08-11 14:57:42
depth1
children0
last_payout2017-08-18 14:57:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation-1,441,869,494,440
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,510,650
net_rshares0
author_curate_reward""
vote details (1)
@lukestokes ·
$2.32
I recommend using a password manager like 1Password. That way you only have to remember one password and your encrypted password file is backed up on dropbox. <a href="https://steemit.com/blockchainfreedom/@lukestokes/understanding-blockchain-freedom-episode-003-safety-and-security">More security tips here</a>, for those who are interested.
👍  , , , , ,
properties (23)
authorlukestokes
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t140418218z
categorysecurity
json_metadata{"tags":["security"],"links":["https://steemit.com/blockchainfreedom/@lukestokes/understanding-blockchain-freedom-episode-003-safety-and-security"],"app":"steemit/0.1"}
created2017-08-11 14:04:18
last_update2017-08-11 14:04:18
depth1
children7
last_payout2017-08-18 14:04:18
cashout_time1969-12-31 23:59:59
total_payout_value1.788 HBD
curator_payout_value0.528 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length342
author_reputation554,601,966,217,919
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,505,231
net_rshares679,416,633,530
author_curate_reward""
vote details (6)
@madmaxfury ·
Hmm. I have been hearing about password managers for years but I have always been afraid that by using one I exchange multiple point of failure for single point of failure. 

Are you saying they are actually trustworthy?
properties (22)
authormadmaxfury
permlinkre-lukestokes-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t161521254z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 16:15:18
last_update2017-08-11 16:15:18
depth2
children1
last_payout2017-08-18 16:15:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length220
author_reputation1,414,250,200,620
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,517,865
net_rshares0
@lukestokes ·
In my experience, yes. Depends on which one you use and how you manage it, your computer, etc (more in the video I linked to above). Alternatives to the single point of failure, from what I've seen, create more risk.
properties (22)
authorlukestokes
permlinkre-madmaxfury-re-lukestokes-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t162627203z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 16:26:27
last_update2017-08-11 16:26:27
depth3
children0
last_payout2017-08-18 16:26:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length216
author_reputation554,601,966,217,919
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,518,843
net_rshares0
@noisy ·
$0.09
Exactly! I am talking about that also in attached video in this post :)
👍  
properties (23)
authornoisy
permlinkre-lukestokes-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t140555064z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 14:05:54
last_update2017-08-11 14:05:54
depth2
children1
last_payout2017-08-18 14:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.075 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation59,974,373,499,600
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,505,398
net_rshares25,439,104,716
author_curate_reward""
vote details (1)
@lukestokes ·
Ah good! I haven't watched the video yet. :)
properties (22)
authorlukestokes
permlinkre-noisy-re-lukestokes-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t140705267z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 14:07:06
last_update2017-08-11 14:07:06
depth3
children0
last_payout2017-08-18 14:07:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation554,601,966,217,919
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,505,512
net_rshares0
@orionsbelt ·
Lastpass is good option too
properties (22)
authororionsbelt
permlinkre-lukestokes-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170812t143901888z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-12 14:39:03
last_update2017-08-12 14:39:03
depth2
children2
last_payout2017-08-19 14:39:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation679,401,428,823
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,604,465
net_rshares0
@lukestokes ·
Yep! I haven't used it myself and there was one scare a while back with some concerns about a potential exploit, but from what I know it's solid.
properties (22)
authorlukestokes
permlinkre-orionsbelt-re-lukestokes-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170812t175031324z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-12 17:50:30
last_update2017-08-12 17:50:30
depth3
children1
last_payout2017-08-19 17:50:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length145
author_reputation554,601,966,217,919
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,619,337
net_rshares0
@madmaxfury ·
That's awesome. I think I might try this; being able to make a long password in mixed Igbo and English poetry would be nice. Good luck to Mr. Hacker :D
properties (22)
authormadmaxfury
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t161719803z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 16:17:15
last_update2017-08-11 16:17:15
depth1
children0
last_payout2017-08-18 16:17:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length151
author_reputation1,414,250,200,620
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,518,023
net_rshares0
@msg768 · (edited)
$2.28
I have set my own password with steem-js. I was thinking of creating a user-friendly front-end and open source tool on github for everyone to use and explain to them why I don't trust generated passwords. I think you did a pretty good job in this article explaining some of the reasons, so thanks :]
👍  
properties (23)
authormsg768
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t142231163z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 14:22:30
last_update2017-08-11 14:23:27
depth1
children0
last_payout2017-08-18 14:22:30
cashout_time1969-12-31 23:59:59
total_payout_value1.711 HBD
curator_payout_value0.570 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length299
author_reputation29,910,527,626,122
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,507,123
net_rshares669,456,916,321
author_curate_reward""
vote details (1)
@muhammadsharukh ·
im using my default password which is generated by steemit ...
thnkxx for this information... :)
upvoted you and following you for more information which you will share  with us.... dont forget to upvote and follow back...   :)
properties (22)
authormuhammadsharukh
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t144658431z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 14:46:57
last_update2017-08-11 14:46:57
depth1
children0
last_payout2017-08-18 14:46:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length227
author_reputation3,500,107,485
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,509,541
net_rshares0
@mursin ·
Good
properties (22)
authormursin
permlinkre-noisy-2017828t53132849z
categorysecurity
json_metadata{"tags":"security","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-27 22:31:36
last_update2017-08-27 22:31:36
depth1
children0
last_payout2017-09-03 22:31:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation221,444,560,598
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,066,473
net_rshares0
@oakword ·
Thanks for this! I agree with what you mentioned about copy pasting being a security issue and this kind of forced pass makes it impossible to remember. So... help a noob.. the script you posted  seems clear what to do, I downloaded python on windows 10 runs ok, I suppose I need to download and run some steemit core for the script to do its work on? how, from where and how to broadcast new core with new password?.. I know, not being programmer perhaps should not dig into this but I would very much prefer a simpler solution rather than have to rely on password manager to remember chaos string of characters
properties (22)
authoroakword
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170823t101803706z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-23 10:18:06
last_update2017-08-23 10:18:06
depth1
children0
last_payout2017-08-30 10:18:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length612
author_reputation3,998,181,738
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,622,424
net_rshares0
@paco ·
$1.77
No more copy and paste for me. Thank you :)
👍  
properties (23)
authorpaco
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t155757509z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 15:53:30
last_update2017-08-11 15:53:30
depth1
children1
last_payout2017-08-18 15:53:30
cashout_time1969-12-31 23:59:59
total_payout_value1.769 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation19,355,236,534,559
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,515,755
net_rshares521,314,976,393
author_curate_reward""
vote details (1)
@jaraumoses ·
$0.29
@paco hahahaha i thought i was alone copying and pasting.We nolonger need the old way,thanks to @noisy .
👍  
properties (23)
authorjaraumoses
permlinkre-paco-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t175119967z
categorysecurity
json_metadata{"tags":["security"],"users":["paco","noisy"],"app":"steemit/0.1"}
created2017-08-11 17:50:18
last_update2017-08-11 17:50:18
depth2
children0
last_payout2017-08-18 17:50:18
cashout_time1969-12-31 23:59:59
total_payout_value0.218 HBD
curator_payout_value0.071 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation85,137,843,184,902
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,526,032
net_rshares86,407,617,867
author_curate_reward""
vote details (1)
@paulygg ·
$0.02
Great post.
👍  
properties (23)
authorpaulygg
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t143906487z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 14:39:06
last_update2017-08-11 14:39:06
depth1
children0
last_payout2017-08-18 14:39:06
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation88,305,738,742
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,508,752
net_rshares6,986,931,041
author_curate_reward""
vote details (1)
@pranashroy ·
i am upvoted and reply your post plz visit me
upvoted,reply,follow and resteem when you work in steemit thanks alot,
my id = https://steemit.com/@pranashroy
properties (22)
authorpranashroy
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170812t080011434z
categorysecurity
json_metadata{"tags":["security"],"links":["https://steemit.com/@pranashroy"],"app":"steemit/0.1"}
created2017-08-12 08:00:24
last_update2017-08-12 08:00:24
depth1
children0
last_payout2017-08-19 08:00:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length156
author_reputation27,868,156,435
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,577,769
net_rshares0
@problem ·
What you actually need is a very secure password, and secure passwords are often very hard to remember. Probably you treat Steemit as another social media website, so you might be surprised, why your Facebook password is not strong and good enough. (BTW, I hope, that you do not use exactly the same password on all type of services - that is very dangerous!)

The reason why your password has to be so secure is simply because with this password you also manage all your funds. So your Steem password should be as hard to guess as your password to your bank account!
properties (22)
authorproblem
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t155701500z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 15:56:57
last_update2017-08-11 15:56:57
depth1
children0
last_payout2017-08-18 15:56:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length567
author_reputation6,147,528,274
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,516,085
net_rshares0
@raphavongal ·
very useful information, will resteem right now as I did before with your post about private keys :)
properties (22)
authorraphavongal
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t135458222z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 13:54:57
last_update2017-08-11 13:54:57
depth1
children0
last_payout2017-08-18 13:54:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation2,867,561,718,641
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,504,196
net_rshares0
@reinikaerrant ·
some people are very proud because they remember the number π up to 10, 20, 50 character... soon they will be defeated by the greatness of people who remember their steemit passwords :D
properties (22)
authorreinikaerrant
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t155339579z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 15:53:36
last_update2017-08-11 15:53:36
depth1
children0
last_payout2017-08-18 15:53:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length185
author_reputation29,429,040,271,763
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,515,763
net_rshares0
@retiredinsamar ·
@noisy I have traveled some distance only to discover that my cell phone login only allows me to do everything with the exception of powering up, transfer steem, etc. The check box on my account is checked "Keep me logged in" and I still can't do anything with funds
 Help!
properties (22)
authorretiredinsamar
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20171226t095001482z
categorysecurity
json_metadata{"tags":["security"],"users":["noisy"],"app":"steemit/0.1"}
created2017-12-26 09:50:12
last_update2017-12-26 09:50:12
depth1
children2
last_payout2018-01-02 09:50:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length273
author_reputation3,026,823,327,143
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,307,371
net_rshares0
@noisy ·
If you do not have master password, you will never be able to recover it or withdraw your funds. This is blockchain - no one except you have your keys/password or a right to generate new key/pass for you.

In theory, if you would use beneficiary rewards to redirect all new rewards to your new account, then you could at least still use and utilize all your follower base and at least withdrawn all new funds.
👍  
👎  
properties (23)
authornoisy
permlinkre-retiredinsamar-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20171226t101005022z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-12-26 10:10:06
last_update2017-12-26 10:10:06
depth2
children1
last_payout2018-01-02 10:10:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length409
author_reputation59,974,373,499,600
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,309,876
net_rshares-559,941,200
author_curate_reward""
vote details (2)
@retiredinsamar ·
Thanks for the reply. I have my passwords secured... they are just 1,500 miles away at the moment. I can post with the posting key, but just cannot deal monetarily. I want to power up, but can't. It looks like I might have to wait until I return to Guam in two months.
👍  
properties (23)
authorretiredinsamar
permlinkre-noisy-re-retiredinsamar-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20171226t115903255z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-12-26 11:59:06
last_update2017-12-26 11:59:06
depth3
children0
last_payout2018-01-02 11:59:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length268
author_reputation3,026,823,327,143
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,323,641
net_rshares0
author_curate_reward""
vote details (1)
@rosatravels ·
Thanks for this article.  Tis is my first day at steemit and I am still a bit lost about passwords.  Everytime I try to change the password, it randomly does another long string one for me.   I am not good technically with python script. So I am stuck with this long string password?  Thanks for your help. Rosa
properties (22)
authorrosatravels
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170816t172311005z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-16 17:25:39
last_update2017-08-16 17:25:39
depth1
children0
last_payout2017-08-23 17:25:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length311
author_reputation422,827,447,688,168
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,006,147
net_rshares0
@ryanfan11 ·
Thx @noisy for sharing. 
I also using a password manage like LastPass coz it is free and can work on both desktop and your phone.
properties (22)
authorryanfan11
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170812t104101123z
categorysecurity
json_metadata{"tags":["security"],"users":["noisy"],"app":"steemit/0.1"}
created2017-08-12 10:41:39
last_update2017-08-12 10:41:39
depth1
children0
last_payout2017-08-19 10:41:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation1,119,565,185,899
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,587,792
net_rshares0
@sabbirr ·
@misuk see this.
👍  
properties (23)
authorsabbirr
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20180108t125932950z
categorysecurity
json_metadata{"tags":["security"],"users":["misuk"],"app":"steemit/0.1"}
created2018-01-08 12:59:39
last_update2018-01-08 12:59:39
depth1
children0
last_payout2018-01-15 12:59:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation1,426,452,838,786
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,997,048
net_rshares824,260,141
author_curate_reward""
vote details (1)
@sneakgeekz ·
$0.13
Great overview very valuable. 
I m not a programmer what is that interface you are using to run the script?
Please let me know if you have a resource that starts at downloading or accessing the app to run the script?

Thank you
resteeming
👍  ,
properties (23)
authorsneakgeekz
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t142951380z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 14:29:51
last_update2017-08-11 14:29:51
depth1
children1
last_payout2017-08-18 14:29:51
cashout_time1969-12-31 23:59:59
total_payout_value0.133 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length238
author_reputation2,793,353,023,603
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,507,807
net_rshares39,301,890,314
author_curate_reward""
vote details (2)
@noisy ·
> what is that interface you are using to run the script?

if you are asking about IDE, then this was a PyCharm. But IDE in that case was needed only to show step-by-step debugging. If you have python installed on your computer, then you should be able to run this script from the console, after changing `account`, `old_password` and `new_password` variables.

But if you do not know how to do that, I would recommend rather to wait a little bit for a user-friendly interface
👍  
properties (23)
authornoisy
permlinkre-sneakgeekz-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t143418110z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 14:34:18
last_update2017-08-11 14:34:18
depth2
children0
last_payout2017-08-18 14:34:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length476
author_reputation59,974,373,499,600
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,508,254
net_rshares1,120,020,382
author_curate_reward""
vote details (1)
@steemitboard ·
Congratulations @noisy! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/payout.png)](http://steemitboard.com/@noisy) Award for the total payout received

Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

> By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-noisy-20170816t190726000z
categorysecurity
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-08-16 19:07:24
last_update2017-08-16 19:07:24
depth1
children0
last_payout2017-08-23 19:07:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length685
author_reputation38,975,615,169,260
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,014,629
net_rshares0
@storcogato ·
$0.14
I heard its important to change your steemit password because they all start with the same first few letters
👍  
👎  
properties (23)
authorstorcogato
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t153915185z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 15:39:15
last_update2017-08-11 15:39:15
depth1
children0
last_payout2017-08-18 15:39:15
cashout_time1969-12-31 23:59:59
total_payout_value0.135 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation3,970,897,173,220
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,514,446
net_rshares40,056,979,480
author_curate_reward""
vote details (2)
@toscani40 ·
Hello my name is Toscani...I just lost my job...i worked really hard as a waiter for like 10 years in a restaurant...worked night after night shifts but still they decide they don't need my services anymore and that they don't have money to pay me so they just kick me out . It was really hard for me to find this job because i don't have much education....i didn't go to college...but i did look for more waiter jobs but i got rejected because i'm too old and they need young people.
The real problem is that i have a debt of 759 $ to my apartment rent and if i don't pay till the end of the month they gonna kick me out from my own home. I don't have friends and my family won't lend me any money...
My only hope now to raise this money is steemit...i like it alot here and the community is very nice...

Please if you would like to help me , a upvote would be awesome and would help me tremendously to raise the money i need.
Thank you very much for your help and i hope you have a great day .
👎  
properties (23)
authortoscani40
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170812t154851980z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2017-08-11 15:48:03
last_update2017-08-11 15:48:03
depth1
children0
last_payout2017-08-18 15:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length996
author_reputation-809,727,599,739
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,515,255
net_rshares-1,197,639,665,452
author_curate_reward""
vote details (1)
@vortech ·
But how can I trust Steemit not to use the auth they generated in an identity theft? If I can use my own 256-bit key in a password manager, then I could trust the site better.
properties (22)
authorvortech
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20180126t205443104z
categorysecurity
json_metadata{"tags":["security"],"app":"steemit/0.1"}
created2018-01-26 20:54:48
last_update2018-01-26 20:54:48
depth1
children0
last_payout2018-02-02 20:54:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length175
author_reputation11,957,119
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,564,526
net_rshares0