create account

Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit? by juecoree

View this thread on: hive.blogpeakd.comecency.com
· @juecoree · (edited)
$157.32
Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit?
#### Introduction <hr>
It is sad to say that there are peoples who take advantage with the other. In the recent increase in the scam and phishing applications and websites, many users lost their accounts to this websites. So,  I want to know and share an analysis that will look into the trends of the Account Recovery  in Steemit by looking into the following data:

- Daily counts of account recovery and status of recovery which is taken from the ```TxAccountRecovers``` table of the SteemSQL with in the timestamp, January 1 to March 31, 2018.

In this  way, i could help give information on the chances of their account to be recovered. At the same time, present and interpret  this data through visuals and statistical treatment.


#### Outline of the Analysis <hr>

I. Scope of Analysis <br>
II. Data Presentation and Analysis<br>
III.  Conclusion<br>
IV. Tools and Query


#### I. Scope of Analysis <hr>

The analysis performed using the data extracted from @arcange 's SteemSQL database on 11:00 am (UCT), April 20, 2018.

- The data extracted is the daily counts of account recovery and status of recovery which is taken from the ```TxAccountRecovers``` table of the SteemSQL with in the timestamp, January 1 to March 31, 2018. This is done to evaluate the effect of scam and phishing applications and website to the increase in the numbers of account recovery. 


#### II. Data Presentation and Analysis <hr>

A total of 707 account to be recovered was listed on the TxAccountRecovers table of the SteemSQL database for the timestamp between January 01, 2018 to March 31, 2018. On average, there are 235 account listed for recovery in the stated time frame per month. This is a bit higher as compared to the last year's 67 account per month.  In December 2017, we can only identify 124 account for recovery. This 111 accounts short of the present average.  (You can browse my earlier [Account Recovery Analysis for 2017](https://steemit.com/utopian-io/@juecoree/account-recovery-analysis-how-much-chances-is-an-account-recovered).)

![image.png](https://cdn.utopian.io/posts/1e220c50c2fce4bf3f59b78d526d2d2e9c2cimage.png)

The alarming increase in the numbers of account to be recovered entails that there is a good basis for developers to strength en the user's security and protection interface in Steemit. This surge could be attributed to the increasing numbers of scam and phishing applications and links, either internally or externally. You can visit @arcange's blog for some list of phishing apps and website. 

It is sad to know that there is an increasing numbers of lost accounts in Steemit, excluding those who did not applied or requested for recovery. Fortunately, for users whom filed a request for recovery, there is a good chance of recovering your account as shown by the numbers. 

![image.png](https://cdn.utopian.io/posts/17b9bd16cfa4f09b2ac3f4a65faf3c45601aimage.png)

For the total of 707 accounts listed, 75% of which where recovered which is equal to 533 against 25% of which was not recovered, amounting to 174. If you set your recovery account to @steem, close to 95.87% chance of recovery is to be expected. Within the timestamp clause of this analysis, @steem recovered a total of 511 which is good for 85% of all account listed under this recovery account. So, there are 19 more accounts recovered as to one uncovered for @steem on average. The other recovery account constitutes 14% of all recovery transactions whereas 65% odds of your account to be not recovered. It has a 35% success rate in recovering an account. 

Generally, numbers of account listing for recovery will have a substantial increase in April 2018 based on the current listed accounts. A doubled increase in the average from the last year to date shows that there will be a projected increase in the number of accounts to be recovered. On the other hand, we can expect that @steem could sustain a better or equal to the current 95.87% recovery percentage for the coming months.

#### III. Conclusion <hr>

The following conclusions can be drawn from the analysis:
- On average, there are 235 account listed for recovery on top of 707 total listed accounts. There is a 75% chance of recovery against 25% odds of recovery.

- A 235 account to be recovered per month for the stated timestamp against 67 from the 2017 average. This indicates that there is sudden increase in the number of account lost in the platform in the start of 2018, which pump the numbers of recovery requests. .

- A close to 95.87% chance of recovery is to be expected for recovery account: @steem. It has recovered  a total of 511 which is good for 85% of all account listed under this recovery account within the timestamp condition. By which, we can conclude that there are 19 more accounts recovered as to one uncovered for @steem on average. We can expect that @steem could sustain a good recovery success rate.

- There is an alarming increase in the number of request for recovery that could be co-related to the increasing numbers of scam and phishing application and websites in Steemit. In addition, We can draw a doubled increase in the average from the last year to date shows that there will be a projected increase in the number of accounts to be recovered.

#### IV. Tools and Query <hr>
I extracted the data from SteemSQL by importing it on Microsoft Excel using SQL Queries. I used Microsoft Excel to analyze, visualize and create a graph for the data. The data is extracted by using ```COUNT()``` function from ```TxAccountRecovers```. The  query was varied depending on the where clause. To take the full count of all request, I set the ```TxAccountRecovers.recovered='FALSE'``` while ```TxAccountRecovers.recovered='TRUE'``` fro recovered account. In terms of the recovery account, I used the full data query and do post query data processing on excel. 

```SELECT
    MONTH(TxAccountRecovers.timestamp) AS [MONTH],
    DAY(TxAccountRecovers.timestamp) AS [DAY],
    COUNT(TxAccountRecovers.ID) AS [TRANSACTION],
    COUNT(TxAccountRecovers.recovery_account) AS [RECOVERY_ACCOUNT],
    COUNT(TxAccountRecovers.account_to_recover) AS [ACCOUNT_TO_RECOVER]
FROM
    TxAccountRecovers (NOLOCK)
WHERE
    YEAR(TxAccountRecovers.timestamp) = 2018 AND
    TxAccountRecovers.recovered = 'FALSE' AND
    TxAccountRecovers.timestamp >= '2018/01/01' AND
    TxAccountRecovers.timestamp < '2018/04/01'
GROUP BY
    MONTH(TxAccountRecovers.timestamp),
    DAY(TxAccountRecovers.timestamp)

/* For full data */
SELECT
    MONTH(TxAccountRecovers.timestamp) AS [MONTH],
    DAY(TxAccountRecovers.timestamp) AS [DAY],
    TxAccountRecovers.ID,
    TxAccountRecovers.recovery_account,
    TxAccountRecovers.account_to_recover
FROM
    TxAccountRecovers (NOLOCK)
WHERE
    YEAR(TxAccountRecovers.timestamp) = 2018 AND
    TxAccountRecovers.timestamp >= '2018/01/01' AND
    TxAccountRecovers.timestamp < '2018/04/01'
GROUP BY
    MONTH(TxAccountRecovers.timestamp),
    DAY(TxAccountRecovers.timestamp),
   TxAccountRecovers.ID,
   TxAccountRecovers.recovery_account,
    TxAccountRecovers.account_to_recover
````

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@juecoree/analysis-is-there-an-increase-in-account-recovery-request-amidst-scams-and-phishings-in-steemit">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
๐Ÿ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 144 others
properties (23)
authorjuecoree
permlinkanalysis-is-there-an-increase-in-account-recovery-request-amidst-scams-and-phishings-in-steemit
categoryutopian-io
json_metadata"{"community":"utopian","app":"steemit/0.1","format":"markdown","repository":{"id":54517947,"name":"steem","full_name":"steemit/steem","html_url":"https://github.com/steemit/steem","fork":false,"owner":{"login":"steemit"}},"pullRequests":[],"platform":"github","type":"analysis","tags":["utopian-io","analysis","blockchainbi","steem","philippines"],"users":["arcange","steem"],"links":["https://steemit.com/utopian-io/@juecoree/account-recovery-analysis-how-much-chances-is-an-account-recovered","https://utopian.io/utopian-io/@juecoree/analysis-is-there-an-increase-in-account-recovery-request-amidst-scams-and-phishings-in-steemit"],"image":["https://cdn.utopian.io/posts/1e220c50c2fce4bf3f59b78d526d2d2e9c2cimage.png","https://cdn.utopian.io/posts/17b9bd16cfa4f09b2ac3f4a65faf3c45601aimage.png"],"moderator":{"account":"crokkon","time":"2018-04-22T04:50:06.077Z","pending":false,"reviewed":true,"flagged":false},"questions":null,"score":null,"total_influence":null,"staff_pick":null,"config":{"questions":[{"question":"Were all relevant aspects or metrics around the objective analyzed?","question_id":"analysis-1","answers":[{"answer":"All or most of the relevant metrics were covered.","answer_id":1,"value":10},{"answer":"Only selected metrics were chosen; including more might have provided additional insights.","answer_id":2,"value":5},{"answer":"Only a single or narrow aspect was chosen.","answer_id":3,"value":2},{"answer":"No.","answer_id":4,"value":0}]},{"question":"How would you rate the complexity of extracting the data?","question_id":"analysis-2","answers":[{"answer":"Gathering the data required complex queries and post-processing","answer_id":1,"value":10},{"answer":"The method of extracting data required transformation.","answer_id":2,"value":5},{"answer":"No additional data transformation was needed.","answer_id":3,"value":2},{"answer":"Script generated / one click data extraction.","answer_id":4,"value":0}]},{"question":"How would you rate the visualization of the findings? ","question_id":"analysis-3","answers":[{"answer":"Visualizations were presented beyond expectation - a visualization such as an infographic was given to quickly understand the result of the analysis.","answer_id":1,"value":5},{"answer":"Appropriate and sufficient visualization were used to understand the results.","answer_id":2,"value":4},{"answer":"Had visualizations but most were irrelevant to the objective.","answer_id":2,"value":5},{"answer":"Bad.","answer_id":4,"value":0}]},{"question":"How would you rate the coherency of the analysis?","question_id":"analysis-4","answers":[{"answer":"Results of analysis were sorted accordingly and the writing style made the findings easily understandable.","answer_id":1,"value":10},{"answer":"There were some connections in-between results, but all throughout the analysis.","answer_id":2,"value":5},{"answer":"Results were presented but the results were not narrated effectively.","answer_id":3,"value":2},{"answer":"Bad.","answer_id":4,"value":0}]},{"question":"Is the analysis reproducible?","question_id":"analysis-5","answers":[{"answer":"All queries or data gathering methods and all data processing scripts were included.","answer_id":1,"value":5},{"answer":"The core query or data gathering method was included and the data processing steps were described.","answer_id":2,"value":4},{"answer":"Data gathering methods and processing steps were sketched.","answer_id":3,"value":2},{"answer":"No.","answer_id":4,"value":0}]},{"question":"Is it a new analysis?","question_id":"analysis-6","answers":[{"answer":"Yes.","answer_id":1,"value":10},{"answer":"Itโ€™s similar to a previous contribution, but additional details/aspects were covered.","answer_id":2,"value":5},{"answer":"Itโ€™s following-up or itโ€™s similar to a previous contribution about a different time range or aspect of the project.","answer_id":3,"value":2},{"answer":"Brings nothing new.","answer_id":4,"value":0}]},{"question":"Does the writing style meet the Utopian standard considering formalness, informativeness and clarity of the content?","question_id":"c-1","answers":[{"answer":"It is formal, informative and well written with clear content.","answer_id":1,"value":10},{"answer":"It is informative with clear content but not formal enough.","answer_id":2,"value":5},{"answer":"The contribution could be more informative or contains unrelated information, formality and clarity of the content are good enough.","answer_id":3,"value":4},{"answer":"Not all sections were clear enough but overall holds value for the project.","answer_id":4,"value":2},{"answer":"Not at all.","answer_id":5,"value":0}]},{"question":"Was the provided category template for the editor followed?","question_id":"c-2","answers":[{"answer":"All points of the template were included with additional points as well.","answer_id":1,"value":5},{"answer":"The template was followed without additions.","answer_id":2,"value":4},{"answer":"The template was edited but the points were covered in different way.","answer_id":3,"value":3},{"answer":"Not all points of the template were covered in the contribution but the structure is clear enough.","answer_id":4,"value":3},{"answer":"The template was not followed but the structure is clear enough.","answer_id":5,"value":2},{"answer":"The contents are not clearly structured at all.","answer_id":6,"value":0}]},{"question":"Did the contributor tag other users?","question_id":"c-3","answers":[{"answer":"No other users were tagged by the contributor.","answer_id":1,"value":5},{"answer":"Used tags are reasonable and all tagged people are connected to the project and/or the contribution.","answer_id":2,"value":5},{"answer":"The contribution contains mentions of other users that are not directly related to the contribution but related in other ways.","answer_id":3,"value":2},{"answer":"The contributor misuses tagging of other users.","answer_id":4,"value":0}]},{"question":"Did the contributor ask for upvotes, resteems, follows or witness vote?","question_id":"c-4","answers":[{"answer":"No","answer_id":1,"value":5},{"answer":"Yes, but not in a way that disturbs readability. ","answer_id":2,"value":5},{"answer":"Yes.","answer_id":3,"value":0}]},{"question":"Was a graphical content like images, charts, videos or screenshots included?","question_id":"c-5","answers":[{"answer":"Yes, the graphical content is included and adds more value to the contribution.","answer_id":1,"value":5},{"answer":"No but the contribution works well without graphical content well.","answer_id":2,"value":4},{"answer":"Yes, but most of the graphical contentโ€™s purpose is just for presentational matters.","answer_id":3,"value":3},{"answer":"No relevant or useful graphical content is included in the contribution.","answer_id":4,"value":0}]},{"question":"How would you rate the overall added value?","question_id":"c-6","answers":[{"answer":"Extraordinary value to both the project and the open source community overall.","answer_id":1,"value":20},{"answer":"Significant value to the project or open source community.","answer_id":2,"value":15},{"answer":"Some value to the project or open source community.","answer_id":3,"value":10},{"answer":"Little value to the project or open source community.","answer_id":4,"value":5},{"answer":"No obvious value to project or open source community.","answer_id":5,"value":0}]}]}}"
created2018-04-21 16:44:33
last_update2018-04-26 11:18:48
depth0
children11
last_payout2018-04-28 16:44:33
cashout_time1969-12-31 23:59:59
total_payout_value113.834 HBD
curator_payout_value43.486 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,334
author_reputation183,725,276,504,013
root_title"Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit?"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,338,786
net_rshares28,011,779,394,661
author_curate_reward""
vote details (208)
@chinito ·
$0.43
kumusta juecoree! :) yea, i hate those scammer/hackers! great analysis of it all.

im following u and upvoted now.
๐Ÿ‘  
properties (23)
authorchinito
permlinkre-juecoree-analysis-is-there-an-increase-in-account-recovery-request-amidst-scams-and-phishings-in-steemit-20180424t230545299z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-24 08:07:00
last_update2018-04-24 08:07:00
depth1
children1
last_payout2018-05-01 08:07:00
cashout_time1969-12-31 23:59:59
total_payout_value0.324 HBD
curator_payout_value0.108 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation196,962,280,803,758
root_title"Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,823,293
net_rshares63,654,933,759
author_curate_reward""
vote details (1)
@juecoree · (edited)
Mabuti, @chinito.  Salamat. I also followed you.
properties (22)
authorjuecoree
permlinkre-chinito-re-juecoree-analysis-is-there-an-increase-in-account-recovery-request-amidst-scams-and-phishings-in-steemit-20180424t081258994z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["chinito"],"app":"steemit/0.1"}
created2018-04-24 08:13:00
last_update2018-04-24 08:14:36
depth2
children0
last_payout2018-05-01 08:13:00
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_length48
author_reputation183,725,276,504,013
root_title"Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,824,165
net_rshares0
@crokkon · (edited)
$2.17
.
.
๐Ÿ‘  , ,
properties (23)
authorcrokkon
permlinkre-juecoree-analysis-is-there-an-increase-in-account-recovery-request-amidst-scams-and-phishings-in-steemit-20180422t050017679z
categoryutopian-io
json_metadata"{"app": ""}"
created2018-04-22 05:00:18
last_update2022-09-18 11:59:33
depth1
children2
last_payout2018-04-29 05:00:18
cashout_time1969-12-31 23:59:59
total_payout_value2.172 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation81,214,366,861,104
root_title"Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit?"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,422,388
net_rshares521,715,249,125
author_curate_reward""
vote details (3)
@juecoree ·
Yes, I have also look into that data about the unrecovered by @steem. There are quite few of them, however there are no signifiers why is this account has not been recovered from the database.
properties (22)
authorjuecoree
permlinkre-crokkon-re-juecoree-analysis-is-there-an-increase-in-account-recovery-request-amidst-scams-and-phishings-in-steemit-20180422t050653870z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["steem"],"app":"steemit/0.1"}
created2018-04-22 05:07:00
last_update2018-04-22 05:07:00
depth2
children0
last_payout2018-04-29 05:07:00
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_length192
author_reputation183,725,276,504,013
root_title"Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,423,164
net_rshares0
@utopian.tip ·
Hey @crokkon, I just gave you a tip for your hard work on moderation. Upvote this comment to support the utopian moderators and increase your future rewards!
properties (22)
authorutopian.tip
permlinkre-re-juecoree-analysis-is-there-an-increase-in-account-recovery-request-amidst-scams-and-phishings-in-steemit-20180422t050017679z-20180422t155940
categoryutopian-io
json_metadata""
created2018-04-22 15:59:42
last_update2018-04-22 15:59:42
depth2
children0
last_payout2018-04-29 15:59: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_length157
author_reputation238,310,597,885
root_title"Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,509,824
net_rshares0
@gaman ·
Resteemed your article.  This article was resteemed because you are part of the New Steemians project. You can learn more about it here: https://steemit.com/introduceyourself/@gaman/new-steemians-project-launch
๐Ÿ‘Ž  
properties (23)
authorgaman
permlinkanalysis-is-there-an-increase-in-account-recovery-request-amidst-scams-and-phishings-in-steemit-gaman-04222018
categoryutopian-io
json_metadata"{"app": "pysteem/0.5.4"}"
created2018-04-22 16:43:18
last_update2018-04-22 16:43:18
depth1
children1
last_payout2018-04-29 16:43: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_length210
author_reputation-1,762,124,734,065
root_title"Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,516,504
net_rshares-51,159,031,219
author_curate_reward""
vote details (1)
@abusereports ·
$0.52
@gaman is on the @abusereports blacklist for being a bad Steemian! Bad spammer, bad!
๐Ÿ‘  
properties (23)
authorabusereports
permlinkabusereports-re-gamananalysis-is-there-an-increase-in-account-recovery-request-amidst-scams-and-phishings-in-steemit-gaman-04222018
categoryutopian-io
json_metadata""
created2018-04-22 16:43:30
last_update2018-04-22 16:43:30
depth2
children0
last_payout2018-04-29 16:43:30
cashout_time1969-12-31 23:59:59
total_payout_value0.390 HBD
curator_payout_value0.127 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation199,407,425,243,286
root_title"Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,516,539
net_rshares76,755,183,959
author_curate_reward""
vote details (1)
@minnowsupport ·
<p>Congratulations!  This post has been upvoted from the communal account, @minnowsupport, by juecoree from the Minnow Support Project. It's a witness project run by aggroed, ausbitbank, teamsteem, theprophet0, someguy123, neoxian, followbtcnews, and netuoso. The goal is to help Steemit grow by supporting Minnows.  Please find us at 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> <p>If you would like to delegate to the Minnow Support Project you can do so by clicking on the following links: <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=minnowsupport&amp;vesting_shares=102530.639667%20VESTS">50SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=minnowsupport&amp;vesting_shares=205303.639667%20VESTS">100SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=minnowsupport&amp;vesting_shares=514303.639667%20VESTS">250SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=minnowsupport&amp;vesting_shares=1025303.639667%20VESTS">500SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=minnowsupport&amp;vesting_shares=2053030.639667%20VESTS">1000SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=minnowsupport&amp;vesting_shares=10253030.639667%20VESTS">5000SP</a>. <br><strong>Be sure to leave at least 50SP undelegated on your account.</strong></p>
properties (22)
authorminnowsupport
permlinkre-analysis-is-there-an-increase-in-account-recovery-request-amidst-scams-and-phishings-in-steemit-20180422t021157
categoryutopian-io
json_metadata""
created2018-04-22 02:11:57
last_update2018-04-22 02:11:57
depth1
children0
last_payout2018-04-29 02:11: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_length1,704
author_reputation148,902,805,319,183
root_title"Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,403,770
net_rshares0
@steembottrackerr ·
<center>https://steemitimages.com/200x200/https://s-media-cache-ak0.pinimg.com/originals/81/28/3c/81283c6aed7bdb5b9f8ad73b8ce62c2f.jpg</center>
---
<center>Hello @juecoree , Congratulations โœ… . Your content began to appear in the hot section.
I am the information account of "SteemBotTracker" site.
</center>
---
<center>
Your Informations
Total SBD: 38.256
Total STEEM: 1.051
</center>
---
<center>
I recommend to increase this;
You can make "Resteem" and advertise to the followers of the whale accounts.
"Resteem Bot" for you;
โœ… The most profitable Resteem Whale @byresteem  has 25.500 Followers + 7000 Sp + Upvote with min +55 accounts. 
</center>
---
<center>
You can purchase "upvote" by bid bots.
"Upvote Bot"
โœ… The most profitable whale in the last round. @postpromoter
</center>
---
<center>
I'm taking this message once. You need to use the #steembottrackerr tag for more information.
Those who "upvote" this interpretation will be awarded a "UpVote" prize of 100 Sbd per week per person.
I am a bot, I can not answer the comment. I hope I could help. Good luck. Sorry if I disturbed you.
</center>
properties (22)
authorsteembottrackerr
permlink20180426t090111763z
categoryutopian-io
json_metadata{"tags":["advice"],"app":"steemjs/test"}
created2018-04-26 09:01:18
last_update2018-04-26 09:01:18
depth1
children0
last_payout2018-05-03 09:01: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_length1,137
author_reputation-1,493,369,324,060
root_title"Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,222,559
net_rshares0
@steemph.cebu ·
Congratulations! This post has been upvoted by the communal account, @steemph.cebu by juecoree being run at [Teenvestors Cebu (Road to Financial Freedom Channel)](https://discord.gg/EMMztv4). This service is exclusive to Steemians following the Steemph.cebu trail at Steemauto. Thank you for following Steemph.cebu curation trail!

#### Don't forget to join [Steem PH Discord Server](https://discord.gg/8tvsTwN), our Discord Server for Philippines.
properties (22)
authorsteemph.cebu
permlinkbif5uoj2nsf5d18z88lolyb4kyk4h3uy-post
categoryutopian-io
json_metadata{"tags":["philippines"],"app":"stephard/0.1"}
created2018-04-22 03:53:12
last_update2018-04-22 03:53:12
depth1
children0
last_payout2018-04-29 03:53: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_length448
author_reputation28,740,832,773,198
root_title"Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,414,951
net_rshares0
@utopian-io ·
### Hey @juecoree! Thank you for the great work you've done!
We're already looking forward to your next contribution!
#### Fully Decentralized Rewards
We hope you will take the time to share your expertise and knowledge by rating contributions made by others on Utopian.io to help us reward the best contributions together.
#### Utopian Witness!
<a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for Utopian Witness!</a> We are made of developers, system administrators, entrepreneurs, artists, content creators, thinkers. We embrace every nationality, mindset and belief.

**Want to chat? Join us on Discord https://discord.me/utopian-io**
properties (22)
authorutopian-io
permlinkre-juecoree-analysis-is-there-an-increase-in-account-recovery-request-amidst-scams-and-phishings-in-steemit-20180423t170042619z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-23 17:00:42
last_update2018-04-23 17:00:42
depth1
children0
last_payout2018-04-30 17:00: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_length688
author_reputation152,955,367,999,756
root_title"Analysis: Is there an increase in account recovery request amidst scams and phishings in Steemit?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,714,042
net_rshares0