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

View this thread on steempeak.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)
post_id9,863,362
authornoisy
permlinkhow-to-set-an-own-password-which-is-not-generated-by-steemit
categorysecurity
json_metadata"{"format": "markdown", "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", "tags": ["security", "steemit", "steem", "tutorial", "programming"], "users": ["noisy3"], "image": ["https://steemitimages.com/DQmbLf8qgtVcY2FXKN1qmpzcAmCMv6RL62aeyLrGHEdsxMV/part4.jpg"]}"
created2017-08-11 13:53:00
last_update2017-08-11 15:04:51
depth0
children58
net_rshares35,687,823,776,870
last_payout2017-08-18 13:53:00
cashout_time1969-12-31 23:59:59
total_payout_value102.889 SBD
curator_payout_value18.953 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length8,446
author_reputation54,116,952,654,646
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (203)
@raphavongal ·
very useful information, will resteem right now as I did before with your post about private keys :)
properties (22)
post_id9,863,583
authorraphavongal
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t135458222z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 13:54:57
last_update2017-08-11 13:54:57
depth1
children0
net_rshares0
last_payout2017-08-18 13:54:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length100
author_reputation2,869,312,020,761
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@haji ·
Hello my dear friend ❤️
I am following your account every day { 🙏🤝 }
@haji
properties (22)
post_id9,864,468
authorhaji
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t140356914z
categorysecurity
json_metadata"{"app": "steemit/0.1", "users": ["haji"], "tags": ["security"]}"
created2017-08-11 14:03:51
last_update2017-08-11 14:03:51
depth1
children0
net_rshares0
last_payout2017-08-18 14:03:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length74
author_reputation3,027,687,941,144
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id9,864,501
authorlukestokes
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t140418218z
categorysecurity
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/blockchainfreedom/@lukestokes/understanding-blockchain-freedom-episode-003-safety-and-security"], "tags": ["security"]}"
created2017-08-11 14:04:18
last_update2017-08-11 14:04:18
depth1
children7
net_rshares679,416,633,530
last_payout2017-08-18 14:04:18
cashout_time1969-12-31 23:59:59
total_payout_value1.788 SBD
curator_payout_value0.528 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length342
author_reputation395,063,281,398,324
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (6)
@noisy ·
$0.09
Exactly! I am talking about that also in attached video in this post :)
👍  
properties (23)
post_id9,864,651
authornoisy
permlinkre-lukestokes-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t140555064z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 14:05:54
last_update2017-08-11 14:05:54
depth2
children1
net_rshares25,439,104,716
last_payout2017-08-18 14:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.075 SBD
curator_payout_value0.010 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length71
author_reputation54,116,952,654,646
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@lukestokes ·
Ah good! I haven't watched the video yet. :)
properties (22)
post_id9,864,751
authorlukestokes
permlinkre-noisy-re-lukestokes-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t140705267z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 14:07:06
last_update2017-08-11 14:07:06
depth3
children0
net_rshares0
last_payout2017-08-18 14:07:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length44
author_reputation395,063,281,398,324
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id9,875,728
authormadmaxfury
permlinkre-lukestokes-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t161521254z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 16:15:18
last_update2017-08-11 16:15:18
depth2
children1
net_rshares0
last_payout2017-08-18 16:15:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length220
author_reputation1,412,537,544,622
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id9,876,597
authorlukestokes
permlinkre-madmaxfury-re-lukestokes-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t162627203z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 16:26:27
last_update2017-08-11 16:26:27
depth3
children0
net_rshares0
last_payout2017-08-18 16:26:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length216
author_reputation395,063,281,398,324
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@orionsbelt ·
Lastpass is good option too
properties (22)
post_id9,951,954
authororionsbelt
permlinkre-lukestokes-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170812t143901888z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-12 14:39:03
last_update2017-08-12 14:39:03
depth2
children2
net_rshares0
last_payout2017-08-19 14:39:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length27
author_reputation679,551,260,249
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id9,964,931
authorlukestokes
permlinkre-orionsbelt-re-lukestokes-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170812t175031324z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-12 17:50:30
last_update2017-08-12 17:50:30
depth3
children1
net_rshares0
last_payout2017-08-19 17:50:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length145
author_reputation395,063,281,398,324
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id9,864,725
authorfredrikaa
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t140644839z
categorysecurity
json_metadata"{"app": "steemit/0.1", "users": ["noisy"], "links": ["https://steemit.com/steemit/@fredrikaa/turning-frustration-into-motivation-following-theft-from-my-steemit-account"], "tags": ["security"]}"
created2017-08-11 14:06:45
last_update2017-08-11 14:06:45
depth1
children4
net_rshares198,059,450,003
last_payout2017-08-18 14:06:45
cashout_time1969-12-31 23:59:59
total_payout_value0.532 SBD
curator_payout_value0.141 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length532
author_reputation127,187,503,965,069
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id9,866,337
authorsneakgeekz
permlinkre-fredrikaa-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t142424361z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 14:24:24
last_update2017-08-11 14:24:24
depth2
children2
net_rshares1,096,807,524
last_payout2017-08-18 14:24:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length80
author_reputation2,789,687,494,229
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id9,867,205
authorfredrikaa
permlinkre-sneakgeekz-re-fredrikaa-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t143423714z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 14:34:24
last_update2017-08-11 14:34:24
depth3
children1
net_rshares39,748,601,119
last_payout2017-08-18 14:34:24
cashout_time1969-12-31 23:59:59
total_payout_value0.101 SBD
curator_payout_value0.033 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,039
author_reputation127,187,503,965,069
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id9,866,363
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
net_rshares0
last_payout2017-08-18 14:24:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length432
author_reputation55,804,171,747,699
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@azissuloh · (edited)
Thanks for sharing @noysi its very useful article. I enjoy it. 

Lets visit my page if you aren't busy.
👎  
properties (23)
post_id9,866,053
authorazissuloh
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t142053127z
categorysecurity
json_metadata"{"app": "steemit/0.1", "users": ["noysi"], "tags": ["security"]}"
created2017-08-11 14:21:03
last_update2017-08-11 14:22:18
depth1
children0
net_rshares-618,768,565
last_payout2017-08-18 14:21:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length103
author_reputation12,239,897,411,079
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@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)
post_id9,866,185
authormsg768
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t142231163z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 14:22:30
last_update2017-08-11 14:23:27
depth1
children0
net_rshares669,456,916,321
last_payout2017-08-18 14:22:30
cashout_time1969-12-31 23:59:59
total_payout_value1.711 SBD
curator_payout_value0.570 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length299
author_reputation29,892,040,056,464
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@cactii ·
Very useful information - I was wondering about it and now I know! Thanks!
properties (22)
post_id9,866,303
authorcactii
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t142356138z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 14:23:57
last_update2017-08-11 14:23:57
depth1
children0
net_rshares0
last_payout2017-08-18 14:23:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length74
author_reputation13,663,298,473
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dbukyo ·
Little bit complicated:)
properties (22)
post_id9,866,364
authordbukyo
permlinkre-noisy-2017811t162439295z
categorysecurity
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "security"}"
created2017-08-11 14:24:45
last_update2017-08-11 14:24:45
depth1
children0
net_rshares0
last_payout2017-08-18 14:24:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length24
author_reputation7,470,218,989,273
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id9,866,783
authorsneakgeekz
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t142951380z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 14:29:51
last_update2017-08-11 14:29:51
depth1
children1
net_rshares39,301,890,314
last_payout2017-08-18 14:29:51
cashout_time1969-12-31 23:59:59
total_payout_value0.133 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length238
author_reputation2,789,687,494,229
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id9,867,193
authornoisy
permlinkre-sneakgeekz-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t143418110z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 14:34:18
last_update2017-08-11 14:34:18
depth2
children0
net_rshares1,120,020,382
last_payout2017-08-18 14:34:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length476
author_reputation54,116,952,654,646
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@paulygg ·
$0.02
Great post.
👍  
properties (23)
post_id9,867,638
authorpaulygg
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t143906487z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 14:39:06
last_update2017-08-11 14:39:06
depth1
children0
net_rshares6,986,931,041
last_payout2017-08-18 14:39:06
cashout_time1969-12-31 23:59:59
total_payout_value0.016 SBD
curator_payout_value0.005 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation88,217,664,418
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id9,868,355
authormuhammadsharukh
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t144658431z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 14:46:57
last_update2017-08-11 14:46:57
depth1
children0
net_rshares0
last_payout2017-08-18 14:46:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length227
author_reputation3,503,034,741
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@appledeguzman ·
im not super techie... im not getting it... can someone help me with it
properties (22)
post_id9,868,826
authorappledeguzman
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t145203207z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 14:52:03
last_update2017-08-11 14:52:03
depth1
children0
net_rshares0
last_payout2017-08-18 14:52:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length71
author_reputation73,188,769,311
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id9,869,111
authorasmaasema
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t145456178z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 14:55:03
last_update2017-08-11 14:55:03
depth1
children0
net_rshares0
last_payout2017-08-18 14:55:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length209
author_reputation73,752,675,176
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@lovelygirl ·
Thanks for sharing this tips and information. I'm sure this post will be the first in Steemit
👎  
properties (23)
post_id9,869,343
authorlovelygirl
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t145742354z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 14:57:42
last_update2017-08-11 14:57:42
depth1
children0
net_rshares0
last_payout2017-08-18 14:57:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length93
author_reputation-1,441,746,443,905
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@danlupi ·
its not possible to send a passwptf in memo see GitHub steem fix.
properties (22)
post_id9,870,821
authordanlupi
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t151555243z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 15:15:54
last_update2017-08-11 15:15:54
depth1
children0
net_rshares0
last_payout2017-08-18 15:15:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length65
author_reputation40,842,386,526,745
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@gikitiki ·
I'm too lazy to remember passwords.  I recommend getting a good password manager.
properties (22)
post_id9,871,756
authorgikitiki
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t152811875z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 15:27:42
last_update2017-08-11 15:27:42
depth1
children0
net_rshares0
last_payout2017-08-18 15:27:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length81
author_reputation8,799,225,435,691
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@storcogato ·
$0.14
I heard its important to change your steemit password because they all start with the same first few letters
👍  
👎  
properties (23)
post_id9,872,703
authorstorcogato
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t153915185z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 15:39:15
last_update2017-08-11 15:39:15
depth1
children0
net_rshares40,056,979,480
last_payout2017-08-18 15:39:15
cashout_time1969-12-31 23:59:59
total_payout_value0.135 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length108
author_reputation3,970,899,438,740
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@adore-eu ·
great post, resteemed
properties (22)
post_id9,872,994
authoradore-eu
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t154243923z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 15:42:57
last_update2017-08-11 15:42:57
depth1
children0
net_rshares0
last_payout2017-08-18 15:42:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length21
author_reputation2,165,486,873,690
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id9,873,441
authortoscani40
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170812t154851980z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 15:48:03
last_update2017-08-11 15:48:03
depth1
children0
net_rshares-1,197,639,665,452
last_payout2017-08-18 15:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length996
author_reputation-808,682,002,378
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@ahsansaeed · (edited)
Thank you for such cool tips, we really appreciate that! *Upvoted and Resteemed*
properties (22)
post_id9,873,862
authorahsansaeed
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t155256325z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 15:52:57
last_update2017-08-11 15:53:18
depth1
children0
net_rshares0
last_payout2017-08-18 15:52:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length80
author_reputation1,202,264,434,617
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@paco ·
$1.77
No more copy and paste for me. Thank you :)
👍  
properties (23)
post_id9,873,896
authorpaco
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t155757509z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 15:53:30
last_update2017-08-11 15:53:30
depth1
children1
net_rshares521,314,976,393
last_payout2017-08-18 15:53:30
cashout_time1969-12-31 23:59:59
total_payout_value1.769 SBD
curator_payout_value0.001 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length43
author_reputation19,349,362,753,909
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id9,882,924
authorjaraumoses
permlinkre-paco-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t175119967z
categorysecurity
json_metadata"{"app": "steemit/0.1", "users": ["paco", "noisy"], "tags": ["security"]}"
created2017-08-11 17:50:18
last_update2017-08-11 17:50:18
depth2
children0
net_rshares86,407,617,867
last_payout2017-08-18 17:50:18
cashout_time1969-12-31 23:59:59
total_payout_value0.218 SBD
curator_payout_value0.071 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length104
author_reputation71,706,009,704,096
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@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)
post_id9,873,903
authorreinikaerrant
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t155339579z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 15:53:36
last_update2017-08-11 15:53:36
depth1
children0
net_rshares0
last_payout2017-08-18 15:53:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length185
author_reputation29,436,684,211,147
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id9,874,205
authorproblem
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t155701500z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 15:56:57
last_update2017-08-11 15:56:57
depth1
children0
net_rshares0
last_payout2017-08-18 15:56:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length567
author_reputation6,150,195,042
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id9,874,542
authorkamal777
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t160047388z
categorysecurity
json_metadata"{"app": "steemit/0.1", "links": ["https://ibb.co/d4p0HF", "https://imgbb.com/"], "image": ["https://preview.ibb.co/fj7WPv/coollogo_com_5091830.png"], "tags": ["security"]}"
created2017-08-11 16:00:48
last_update2017-08-11 16:00:48
depth1
children0
net_rshares0
last_payout2017-08-18 16:00:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length238
author_reputation0
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id9,875,866
authormadmaxfury
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t161719803z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 16:17:15
last_update2017-08-11 16:17:15
depth1
children0
net_rshares0
last_payout2017-08-18 16:17:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length151
author_reputation1,412,537,544,622
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@itmakesense ·
thats awesome....meaningful info..keep going up man
👍  
properties (23)
post_id9,879,821
authoritmakesense
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170811t170746785z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-11 17:07:51
last_update2017-08-11 17:07:51
depth1
children0
net_rshares619,520,000
last_payout2017-08-18 17:07:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length51
author_reputation6,197,581,152
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@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)
post_id9,920,269
authorinzeen
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170812t050915878z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-12 05:09:15
last_update2017-08-12 05:09:15
depth1
children0
net_rshares0
last_payout2017-08-19 05:09:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length136
author_reputation16,595,869,074
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id9,928,452
authorpranashroy
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170812t080011434z
categorysecurity
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/@pranashroy"], "tags": ["security"]}"
created2017-08-12 08:00:24
last_update2017-08-12 08:00:24
depth1
children0
net_rshares0
last_payout2017-08-19 08:00:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length156
author_reputation27,825,594,022
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id9,937,329
authorryanfan11
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170812t104101123z
categorysecurity
json_metadata"{"app": "steemit/0.1", "users": ["noisy"], "tags": ["security"]}"
created2017-08-12 10:41:39
last_update2017-08-12 10:41:39
depth1
children0
net_rshares0
last_payout2017-08-19 10:41:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length129
author_reputation1,119,151,519,991
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@allmonitors ·
$0.18
Password safe is one good way also in storing password.
👍  
properties (23)
post_id10,057,912
authorallmonitors
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170813t220909384z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-13 22:09:09
last_update2017-08-13 22:09:09
depth1
children0
net_rshares54,802,486,879
last_payout2017-08-20 22:09:09
cashout_time1969-12-31 23:59:59
total_payout_value0.133 SBD
curator_payout_value0.044 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length55
author_reputation319,480,565,467,431
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@bukharisulaiman ·
Thanks you for sharing @noisy. I am from Aceh.
properties (22)
post_id10,138,986
authorbukharisulaiman
permlinkre-noisy-2017815t42644762z
categorysecurity
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "security"}"
created2017-08-14 21:26:45
last_update2017-08-14 21:26:45
depth1
children0
net_rshares0
last_payout2017-08-21 21:26:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length46
author_reputation3,202,989,799,343
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@foxkoit ·
Interesting :) I go and look more this info, then I know what I must think :)
properties (22)
post_id10,174,071
authorfoxkoit
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170815t083802000z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-15 08:38:03
last_update2017-08-15 08:38:03
depth1
children0
net_rshares0
last_payout2017-08-22 08:38:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length77
author_reputation116,293,530,579,420
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id10,304,210
authorrosatravels
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170816t172311005z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-16 17:25:39
last_update2017-08-16 17:25:39
depth1
children0
net_rshares0
last_payout2017-08-23 17:25:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length311
author_reputation446,683,592,150,961
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id10,311,708
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
net_rshares0
last_payout2017-08-23 19:07:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length685
author_reputation38,705,954,145,809
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id10,845,680
authoroakword
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170823t101803706z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-08-23 10:18:06
last_update2017-08-23 10:18:06
depth1
children0
net_rshares0
last_payout2017-08-30 10:18:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length612
author_reputation4,001,494,480
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mursin ·
Good
properties (22)
post_id11,236,728
authormursin
permlinkre-noisy-2017828t53132849z
categorysecurity
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "security"}"
created2017-08-27 22:31:36
last_update2017-08-27 22:31:36
depth1
children0
net_rshares0
last_payout2017-09-03 22:31:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length4
author_reputation221,592,754,272
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@julzee ·
Why is there no resteem arrow so that i can resteem this?
properties (22)
post_id12,766,248
authorjulzee
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170913t220722098z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-09-13 22:07:21
last_update2017-09-13 22:07:21
depth1
children2
net_rshares0
last_payout2017-09-20 22:07:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length57
author_reputation272,618,645,419
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@greatestjourney ·
Either it doesn't work on mobile or the post is too old.
properties (22)
post_id13,528,549
authorgreatestjourney
permlinkre-julzee-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170923t014547036z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-09-23 01:45:42
last_update2017-09-23 01:45:42
depth2
children1
net_rshares0
last_payout2017-09-30 01:45:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length56
author_reputation604,103,165,045
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@julzee ·
Thanks. I usually can resteem on my tablet so must be old post.
👍  
properties (23)
post_id13,529,940
authorjulzee
permlinkre-greatestjourney-re-julzee-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20170923t021631624z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-09-23 02:16:33
last_update2017-09-23 02:16:33
depth3
children0
net_rshares155,689,944
last_payout2017-09-30 02:16:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length63
author_reputation272,618,645,419
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@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)
post_id22,019,985
authorretiredinsamar
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20171226t095001482z
categorysecurity
json_metadata"{"app": "steemit/0.1", "users": ["noisy"], "tags": ["security"]}"
created2017-12-26 09:50:12
last_update2017-12-26 09:50:12
depth1
children2
net_rshares0
last_payout2018-01-02 09:50:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length273
author_reputation3,027,687,941,144
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id22,022,173
authornoisy
permlinkre-retiredinsamar-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20171226t101005022z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-12-26 10:10:06
last_update2017-12-26 10:10:06
depth2
children1
net_rshares-559,941,200
last_payout2018-01-02 10:10:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length409
author_reputation54,116,952,654,646
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id22,034,048
authorretiredinsamar
permlinkre-noisy-re-retiredinsamar-re-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20171226t115903255z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2017-12-26 11:59:06
last_update2017-12-26 11:59:06
depth3
children0
net_rshares0
last_payout2018-01-02 11:59:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length268
author_reputation3,027,687,941,144
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@sabbirr ·
@misuk see this.
👍  
properties (23)
post_id24,358,950
authorsabbirr
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20180108t125932950z
categorysecurity
json_metadata"{"app": "steemit/0.1", "users": ["misuk"], "tags": ["security"]}"
created2018-01-08 12:59:39
last_update2018-01-08 12:59:39
depth1
children0
net_rshares824,260,141
last_payout2018-01-15 12:59:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length16
author_reputation1,427,067,266,054
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id26,925,195
authorjvelazqu22
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20180120t231537108z
categorysecurity
json_metadata"{"app": "steemit/0.1", "users": ["noisy", "someguy123"], "tags": ["security"]}"
created2018-01-20 23:15:27
last_update2018-01-21 00:07:03
depth1
children0
net_rshares0
last_payout2018-01-27 23:15:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,020
author_reputation0
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id28,312,153
authorvortech
permlinkre-noisy-how-to-set-an-own-password-which-is-not-generated-by-steemit-20180126t205443104z
categorysecurity
json_metadata"{"app": "steemit/0.1", "tags": ["security"]}"
created2018-01-26 20:54:48
last_update2018-01-26 20:54:48
depth1
children0
net_rshares0
last_payout2018-02-02 20:54:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length175
author_reputation0
root_title"How to set an own password, which is not generated by Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000