Hack Alert : Users exposing private keys in memo while transfer ! by shreyasgune

View this thread on steempeak.com
· @shreyasgune · (edited)
$26.45
Hack Alert : Users exposing private keys in memo while transfer !
## The Problem

The issue of users unknowingly exposing their private keys in memo while transferring their funds is a problem that has been time and again exposed by developers. The issue was raised by @noisy in a very famous article (6 months ago):

[We just hacked 11 accounts on Steemit! ~$21 749 in STEEM and SBD is under our control. But we are good guys 😇 So...](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)

Then again the same problem was pointed out by popular steemit user [Jerry Banfield](https://steemit.com/@jerrybanfield), 2 months ago, in his article titled : [I Found $63,278 of Private Keys on Steemit.com in 10 Minutes!](https://steemit.com/steemit/@jerrybanfield/i-found-usd63-278-of-private-keys-on-steemit-com-in-10-minutes)

The private keys of user get exposed unknowingly as the users transfer their steem/SBD using the transfer option on steemit.

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1511413927/yuq7nqcz9mktym6tg7ml.png)

In the memo field, users tend to enter their private memo keys. Some users have exposed even their master passwords in the memo field.

### How I accessed the exposed private keys:

It was really easy to query the steem database for exposed private keys using [SteemData](https://github.com/SteemData/steemdata-mongo). 

@Furion has provided an awesome tutorial on using **SteemData** titled: [Getting started with SteemData](https://steemit.com/steemdata/@furion/getting-started-with-steemdata).
**I used  [RoboMongo](https://robomongo.org/download) as a cross-platform GUI utility for playing around with SteemData.**

### Accessing master passwords

I used the following simple query to get master passwords exposed on steem blockchain:
```
db.getCollection('AccountOperations').find({'memo': /^P5/})
```
This query yields 28 results. These are 28 independent transactions after the last hard fork where the private keys got exposed. I checked the length of these keys using https://www.lettercount.com/. (Yes, the password length is 52 ). I checked this by repeatedly generating new passwords using generate new password option in steemit.
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1511415095/za7nkxh4axgq7n5faetb.png)

The passwords have now been changed. That's a good thing. I will partially reveal only few of the account name and passwords anyway so that you know I am not bluffing. Anyways you can acess the other names by the query mentioned previously.

 |   Account Name | Private Key | Transaction id | Timestamp |
  |-------------------|--------------|------------------| ------------- |   
 |  @scigar  | P5HrWfmKXXXXX  | 5293f4c83846a2c4b50c1bf2c52381f260b9a06c  | 2017-06-03 23:17:57.000Z |
|@steemboad | P5JJYBFXXXXX | 70069c982e98e7917fe13093f63266d2f995c912 | 2017-11-12 09:15:54.000Z |
| @fittrex  | P5Kk17eRvytzXXXXX | b18ac26c09f88c1e4211e30a6094a41f2b965440 | 2017-10-13 00:32:00.000Z  |
| @herman2141  | P5JJYBFNwYrn1m9ZFHHGXXXX  | 70069c982e98e7917fe13093f63266d2f995c912  |  2017-11-12 09:15:54.000Z |
| @prosperous  | P5KDF2BRMQcCVcRDHuzT6iy2oNshZw1JqyMfSuV4QXXXXX  | f3d62cba41df96db0f55be9a0f0752cb5a4d6eab  | 2017-06-15 00:48:21.000Z  |

### Accessing private memo/posting keys.

Hundreds, if not thousands of private memo keys have been exposed publicly in the blockchain transaction memos. Since these are publicly available, I will mention some them. They can be used to login to the accounts although any other action like posting/voting requires private posting keys.

I used the query mentioned below:
```
db.getCollection('AccountOperations').find({'memo': /^5/})
```
Then I checked which keys contained 51 characters. This gave me *private memo keys* or *private posting keys* of a large number of accounts. Some of them I will disclose below. I sincerely request these account owners to reset their passwords.

|   Account Name | Private Key | Transaction id | Timestamp |
  |-------------------|--------------|------------------| ------------- |   
 |  @bestjt  | 5K1deWWcqGecvzsfNWDSPGZHTwXXXXXXX  | ed26183ec4284c568e30c6fc2ce190db1dc14438  | 2017-11-16 17:23:48.000Z |
|@beoped | 5KU12e2JPyh31iz5bYLKXVCAi4y79366gPku2keEwJ1XXXX | 3d562b3acebab7936da253e3671f71b0b4d83cf6  | 2017-11-16 14:00:36.000Z |
| @ccoindigger  | 5K1UyjjZiVpUH2mAFdnChfZH2fEFte2qk8EVfCVDXXXXXX | 3cb3e6fe46733f9dd2be60453594be429deaf2bd | 2017-11-09 21:35:24.000Z  |
| @caspell  | 5Ka2iTeUpzWYSYdF8wcw2pkf2tsMGr7QeTLsi7qC4GxmXXXXXX  | de2df1c7fde1dc8bb5ac2093f9a865293e81605a  | 2017-11-15 03:06:57.000Z |
| @cryptocryptov  | 5Jqu16YDY83QKWWnwDinwmKhxK51DuCjdduXXXXX | ac39c483bd8cb7f21672a48f3fd9b5dde64c0861  | 2017-11-16 05:16:06.000Z |

Hundreds of other private memo keys have also been exposed. It is a sincere request to all users to not enter their private keys as memos. Please spread awareness about this issue so that the problem can be resolved. As of now, the memo keys don't really do much. But in future, they may perform important functions as steem blockchain evolves.

### Last 10 days Data Analysis:

Analysing last 10 days data for date-wise number of transactions exposing private keys we find the following pattern:

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1511437862/bzxlk9kzvqipynlwdfdi.png)



Thank You and take care.

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@shreyasgune/hack-alert-users-exposing-private-keys-in-memo-while-transfer">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
post_id18,479,063
authorshreyasgune
permlinkhack-alert-users-exposing-private-keys-in-memo-while-transfer
categoryutopian-io
json_metadata"{"type": "analysis", "repository": {"id": 59213335, "watchers": 231, "events_url": "https://api.github.com/repos/steemit/condenser/events", "forks": 208, "name": "condenser", "issues_url": "https://api.github.com/repos/steemit/condenser/issues{/number}", "trees_url": "https://api.github.com/repos/steemit/condenser/git/trees{/sha}", "fork": false, "git_url": "git://github.com/steemit/condenser.git", "assignees_url": "https://api.github.com/repos/steemit/condenser/assignees{/user}", "size": 7160, "owner": {"id": 17434692, "following_url": "https://api.github.com/users/steemit/following{/other_user}", "starred_url": "https://api.github.com/users/steemit/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/steemit/subscriptions", "repos_url": "https://api.github.com/users/steemit/repos", "login": "steemit", "gists_url": "https://api.github.com/users/steemit/gists{/gist_id}", "followers_url": "https://api.github.com/users/steemit/followers", "received_events_url": "https://api.github.com/users/steemit/received_events", "type": "Organization", "avatar_url": "https://avatars3.githubusercontent.com/u/17434692?v=4", "site_admin": false, "organizations_url": "https://api.github.com/users/steemit/orgs", "gravatar_id": "", "events_url": "https://api.github.com/users/steemit/events{/privacy}", "url": "https://api.github.com/users/steemit", "html_url": "https://github.com/steemit"}, "forks_count": 208, "git_refs_url": "https://api.github.com/repos/steemit/condenser/git/refs{/sha}", "blobs_url": "https://api.github.com/repos/steemit/condenser/git/blobs{/sha}", "pushed_at": "2017-11-22T22:34:38Z", "watchers_count": 231, "teams_url": "https://api.github.com/repos/steemit/condenser/teams", "comments_url": "https://api.github.com/repos/steemit/condenser/comments{/number}", "archived": false, "svn_url": "https://github.com/steemit/condenser", "merges_url": "https://api.github.com/repos/steemit/condenser/merges", "subscribers_url": "https://api.github.com/repos/steemit/condenser/subscribers", "issue_events_url": "https://api.github.com/repos/steemit/condenser/issues/events{/number}", "stargazers_url": "https://api.github.com/repos/steemit/condenser/stargazers", "mirror_url": null, "statuses_url": "https://api.github.com/repos/steemit/condenser/statuses/{sha}", "has_projects": true, "milestones_url": "https://api.github.com/repos/steemit/condenser/milestones{/number}", "description": "The social application web front-end to the Steem Blockchain.", "keys_url": "https://api.github.com/repos/steemit/condenser/keys{/key_id}", "open_issues": 227, "compare_url": "https://api.github.com/repos/steemit/condenser/compare/{base}...{head}", "ssh_url": "git@github.com:steemit/condenser.git", "html_url": "https://github.com/steemit/condenser", "commits_url": "https://api.github.com/repos/steemit/condenser/commits{/sha}", "open_issues_count": 227, "stargazers_count": 231, "branches_url": "https://api.github.com/repos/steemit/condenser/branches{/branch}", "full_name": "steemit/condenser", "forks_url": "https://api.github.com/repos/steemit/condenser/forks", "score": 24.13105, "deployments_url": "https://api.github.com/repos/steemit/condenser/deployments", "contributors_url": "https://api.github.com/repos/steemit/condenser/contributors", "homepage": "https://steemit.com", "contents_url": "https://api.github.com/repos/steemit/condenser/contents/{+path}", "has_downloads": true, "collaborators_url": "https://api.github.com/repos/steemit/condenser/collaborators{/collaborator}", "created_at": "2016-05-19T14:21:06Z", "git_commits_url": "https://api.github.com/repos/steemit/condenser/git/commits{/sha}", "releases_url": "https://api.github.com/repos/steemit/condenser/releases{/id}", "private": false, "pulls_url": "https://api.github.com/repos/steemit/condenser/pulls{/number}", "git_tags_url": "https://api.github.com/repos/steemit/condenser/git/tags{/sha}", "notifications_url": "https://api.github.com/repos/steemit/condenser/notifications{?since,all,participating}", "language": "JavaScript", "updated_at": "2017-11-22T01:10:43Z", "has_wiki": true, "downloads_url": "https://api.github.com/repos/steemit/condenser/downloads", "hooks_url": "https://api.github.com/repos/steemit/condenser/hooks", "languages_url": "https://api.github.com/repos/steemit/condenser/languages", "default_branch": "master", "labels_url": "https://api.github.com/repos/steemit/condenser/labels{/name}", "url": "https://api.github.com/repos/steemit/condenser", "has_pages": false, "tags_url": "https://api.github.com/repos/steemit/condenser/tags", "clone_url": "https://github.com/steemit/condenser.git", "archive_url": "https://api.github.com/repos/steemit/condenser/{archive_format}{/ref}", "has_issues": true, "issue_comment_url": "https://api.github.com/repos/steemit/condenser/issues/comments{/number}", "subscription_url": "https://api.github.com/repos/steemit/condenser/subscription"}, "pullRequests": [], "format": "markdown", "image": ["https://res.cloudinary.com/hpiynhbhq/image/upload/v1511413927/yuq7nqcz9mktym6tg7ml.png"], "links": ["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://steemit.com/@jerrybanfield", "https://steemit.com/steemit/@jerrybanfield/i-found-usd63-278-of-private-keys-on-steemit-com-in-10-minutes", "https://res.cloudinary.com/hpiynhbhq/image/upload/v1511413927/yuq7nqcz9mktym6tg7ml.png", "https://github.com/SteemData/steemdata-mongo", "https://steemit.com/steemdata/@furion/getting-started-with-steemdata", "https://robomongo.org/download", "https://res.cloudinary.com/hpiynhbhq/image/upload/v1511415095/za7nkxh4axgq7n5faetb.png", "https://res.cloudinary.com/hpiynhbhq/image/upload/v1511437862/bzxlk9kzvqipynlwdfdi.png"], "app": "utopian/1.0.0", "platform": "github", "tags": ["utopian-io", "hack", "transfer"], "community": "utopian", "users": ["noisy", "jerrybanfield", "Furion", "furion", "scigar", "steemboad", "fittrex", "herman2141", "prosperous", "bestjt", "beoped", "ccoindigger", "caspell", "cryptocryptov", "shreyasgune"]}"
created2017-11-23 06:50:57
last_update2017-11-23 12:15:27
depth0
children11
net_rshares12,413,221,770,197
last_payout2017-11-30 06:50:57
cashout_time1969-12-31 23:59:59
total_payout_value18.800 SBD
curator_payout_value7.654 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length5,584
author_reputation4,922,913,696,391
root_title"Hack Alert : Users exposing private keys in memo while transfer !"
beneficiaries
0.
accountespoem
weight104
1.
accountfreedom
weight659
2.
accountlafona-miner
weight13
3.
accountmisterdelegation
weight549
4.
accountned
weight544
5.
accountruah
weight62
6.
accountwackou
weight53
7.
accountxeldal
weight27
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars50
author_curate_reward""
vote details (47)
@snug · (edited)
$0.26
The text input should detect private keys and reject them with an alert for the user.
A similar thing happened to me recently. I just confused the input fields. Luckily I just sent my public key per memo. 

In my opinion this is an UX issue. It is too easy for the user to confuse keys. Generally, Steemit needs to educate people more about keys. Knowing how to manage multiple levels of private and public keys is not laymen's knowledge.
👍  ,
properties (23)
post_id18,498,843
authorsnug
permlinkre-shreyasgune-hack-alert-users-exposing-private-keys-in-memo-while-transfer-20171123t122607355z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-11-23 12:23:51
last_update2017-11-23 14:09:09
depth1
children2
net_rshares103,387,950,051
last_payout2017-11-30 12:23:51
cashout_time1969-12-31 23:59:59
total_payout_value0.196 SBD
curator_payout_value0.063 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length438
author_reputation1,676,657,841,621
root_title"Hack Alert : Users exposing private keys in memo while transfer !"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@shreyasgune ·
Even I did a similar mistake. Thankfully changed the password immediately.
properties (22)
post_id18,506,050
authorshreyasgune
permlinkre-snug-re-shreyasgune-hack-alert-users-exposing-private-keys-in-memo-while-transfer-20171123t140231183z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-11-23 14:02:33
last_update2017-11-23 14:02:33
depth2
children0
net_rshares0
last_payout2017-11-30 14:02: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_length74
author_reputation4,922,913,696,391
root_title"Hack Alert : Users exposing private keys in memo while transfer !"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@scipio · (edited)
$0.19
>The text input should detect private keys and reject them with an alert for the user.

Bravo, that is the only thing which could help and should be implemented.
👍  
properties (23)
post_id18,576,409
authorscipio
permlinkre-snug-re-shreyasgune-hack-alert-users-exposing-private-keys-in-memo-while-transfer-20171124t103614137z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-11-24 10:36:12
last_update2017-11-24 10:36:24
depth2
children0
net_rshares76,650,461,205
last_payout2017-12-01 10:36:12
cashout_time1969-12-31 23:59:59
total_payout_value0.176 SBD
curator_payout_value0.009 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length161
author_reputation32,029,897,993,437
root_title"Hack Alert : Users exposing private keys in memo while transfer !"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@mcfarhat ·
$0.06
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/UCvqCsx).
**[[utopian-moderator]](https://utopian.io/moderators)**
👍  
properties (23)
post_id18,500,383
authormcfarhat
permlinkre-shreyasgune-hack-alert-users-exposing-private-keys-in-memo-while-transfer-20171123t124557883z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2017-11-23 12:46:03
last_update2017-11-23 12:46:03
depth1
children0
net_rshares23,104,903,619
last_payout2017-11-30 12:46:03
cashout_time1969-12-31 23:59:59
total_payout_value0.043 SBD
curator_payout_value0.013 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length172
author_reputation104,178,422,702,645
root_title"Hack Alert : Users exposing private keys in memo while transfer !"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@minnowsupport ·
<p>Congratulations!  This post has been upvoted from the communal account, @minnowsupport, by thorough_research from the Minnow Support Project.  It's a witness project run by aggroed, ausbitbank, teamsteem, theprophet0, someguy123, neoxian, followbtcnews/crimsonclad, and netuoso.  The goal is to help Steemit grow by supporting Minnows and creating a social network.  Please find us in the <a href="https://discord.gg/HYj4yvw">Peace, Abundance, and Liberty Network (PALnet) Discord Channel</a>.  It's a completely public and open space to all members of the Steemit community who voluntarily choose to be there.</p>
properties (22)
post_id18,506,277
authorminnowsupport
permlinkre-shreyasgune-hack-alert-users-exposing-private-keys-in-memo-while-transfer-20171123t140538943z
categoryutopian-io
json_metadata"{"app": "cosgrove/0.0.1", "tags": ["utopian-io"]}"
created2017-11-23 14:05:39
last_update2017-11-23 14:05:39
depth1
children0
net_rshares0
last_payout2017-11-30 14:05: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_length618
author_reputation104,981,098,086,561
root_title"Hack Alert : Users exposing private keys in memo while transfer !"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@utopian-io ·
### Hey @shreyasgune I am @utopian-io. I have just upvoted you at 9% Power!
#### Achievements
- You have less than 500 followers. Just gave you a gift to help you succeed!
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
properties (22)
post_id18,567,813
authorutopian-io
permlinkre-shreyasgune-hack-alert-users-exposing-private-keys-in-memo-while-transfer-20171124t080206320z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2017-11-24 08:02:06
last_update2017-11-24 08:02:06
depth1
children0
net_rshares0
last_payout2017-12-01 08:02: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_length1,099
author_reputation152,913,012,544,965
root_title"Hack Alert : Users exposing private keys in memo while transfer !"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@scipio · (edited)
$0.34
Although I agree with your safety concerns, I do not think blogging about this openly is the right way to go, especially so in the Steem ecosphere where real money is involved.

Maybe deleting the mongoDB queries on your post could help protect the wallets involved from getting robbed by scriptkiddies.

Edit: self-upvoted for visibility / preventing people getting robbed.
👍  , , ,
properties (23)
post_id18,576,683
authorscipio
permlinkre-shreyasgune-hack-alert-users-exposing-private-keys-in-memo-while-transfer-20171124t104100981z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-11-24 10:41:00
last_update2017-11-24 10:41:45
depth1
children4
net_rshares137,839,563,059
last_payout2017-12-01 10:41:00
cashout_time1969-12-31 23:59:59
total_payout_value0.311 SBD
curator_payout_value0.024 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length374
author_reputation32,029,897,993,437
root_title"Hack Alert : Users exposing private keys in memo while transfer !"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (4)
@snug ·
> I do not think blogging about this openly is the right way to go

While I agree that sensitive topics should be handled carefully, I think that it is hard to find a better way to expose such an issue on Steemit. Maybe contacting Steemit Inc. directly instead of blogging it...?
properties (22)
post_id18,577,140
authorsnug
permlinkre-scipio-re-shreyasgune-hack-alert-users-exposing-private-keys-in-memo-while-transfer-20171124t105108861z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-11-24 10:48:48
last_update2017-11-24 10:48:48
depth2
children1
net_rshares0
last_payout2017-12-01 10:48: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_length279
author_reputation1,676,657,841,621
root_title"Hack Alert : Users exposing private keys in memo while transfer !"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@scipio ·
$0.38
Two aspects are important here:
-1- implementing your memo rejection suggestion (via sneak@steemit.com)
-2- protecting the accounts / wallets involved, via notifying them (via email if possible) and urgently suggesting to change their keys ASAP.
👍  , ,
properties (23)
post_id18,577,551
authorscipio
permlinkre-snug-re-scipio-re-shreyasgune-hack-alert-users-exposing-private-keys-in-memo-while-transfer-20171124t105528266z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-11-24 10:55:27
last_update2017-11-24 10:55:27
depth3
children0
net_rshares155,047,296,970
last_payout2017-12-01 10:55:27
cashout_time1969-12-31 23:59:59
total_payout_value0.290 SBD
curator_payout_value0.087 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length245
author_reputation32,029,897,993,437
root_title"Hack Alert : Users exposing private keys in memo while transfer !"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@shreyasgune ·
The accounts I have exposed have changed their master keys. I have confirmed that. As for the queries, similar queries are available in countless blogs on steemit itself. This is now new. 
I get your point. Hope you get mine !!
properties (22)
post_id18,623,735
authorshreyasgune
permlinkre-scipio-re-shreyasgune-hack-alert-users-exposing-private-keys-in-memo-while-transfer-20171124t231036017z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2017-11-24 23:10:36
last_update2017-11-24 23:10:36
depth2
children0
net_rshares0
last_payout2017-12-01 23:10: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_length227
author_reputation4,922,913,696,391
root_title"Hack Alert : Users exposing private keys in memo while transfer !"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@shreyasgune ·
I have not exposed the real queries, with these anybody will have a little hard time. 

The actual queries I used let me check character length there itself. 

Talking about it more could actually save users from getting robbed. Steemit Inc is well aware of the problem. They have included warning signs. But they can't do anything about memo people leave on bittrex while transferring them to steem account. This shows in their memo field non encrypted and ready to be read by anyone.
properties (22)
post_id18,624,077
authorshreyasgune
permlinkre-scipio-re-shreyasgune-hack-alert-users-exposing-private-keys-in-memo-while-transfer-20171124t231839408z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2017-11-24 23:18:39
last_update2017-11-24 23:18:39
depth2
children0
net_rshares0
last_payout2017-12-01 23:18: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_length485
author_reputation4,922,913,696,391
root_title"Hack Alert : Users exposing private keys in memo while transfer !"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000