Ghost issues in deleted repos being misused for crypto spamming #174831
Replies: 21 comments 30 replies
-
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
Just got the same email on my work email. My work account is @ tagged, along with many other accounts from the same alphabetical range. |
Beta Was this translation helpful? Give feedback.
-
I’ve got the same email; in my case, it was from issue 110 on the same repo. I guess GitHub limits the number of mentions per issue to 50, so the spammer had to create a bunch of identical issues in order to mention everyone. |
Beta Was this translation helpful? Give feedback.
-
Got the same. Issue link was plasma-ping/plasma.to#82 |
Beta Was this translation helpful? Give feedback.
-
same issue, in my case the repo was |
Beta Was this translation helpful? Give feedback.
-
Same for me: [ping-plasma/plasma.to] Plasma Foundation | Over USD 2.4B TVL & 54.02% APY, XPL and Staking Rewards (Issue #154) |
Beta Was this translation helpful? Give feedback.
-
Also got the crypto spam, from plasma-signal/plasma.to#234 |
Beta Was this translation helpful? Give feedback.
-
Seeing the same issue. Reported at Support ticket. Abuse process is not usable for this situation. |
Beta Was this translation helpful? Give feedback.
-
Same for me, no way to delete the notification. |
Beta Was this translation helpful? Give feedback.
-
Github Support have confirmed they have shutdown the cause of this issue. |
Beta Was this translation helpful? Give feedback.
-
If the notification is stuck in your inbox, you can mark it read via the web UI (bell → Inbox → Done/Mark as read). If the repo is gone and it won’t clear, you can use the API or GitHub CLI to mark the thread read: gh api notifications?all=true | jq -r 'map(select(.unread) | .id)[]' (This just clears the notification; it doesn’t report the spam.) |
Beta Was this translation helpful? Give feedback.
-
gh api notifications?all=true | jq -r 'map(select(.unread) | .id)[]' \
| xargs -n1 -I{} gh api -X PATCH notifications/threads/{} |
Beta Was this translation helpful? Give feedback.
-
Got the same "stuck" notification, from |
Beta Was this translation helpful? Give feedback.
-
@Nikofaze009 I couldn't get yours to work, but I was able to both remove the notification and the repo from the list on the side with this: gh api 'notifications?all=true' | jq -r 'map(select(.unread) | .id)[]'
gh api --method DELETE -H 'Accept: application/vnd.github+json' -H 'X-GitHub-Api-Version: 2022-11-28' notifications/threads/[INSERT_ID_FROM_ABOVE] |
Beta Was this translation helpful? Give feedback.
-
For Windows users, you can use the next command: gh api 'notifications?all=true' | ConvertFrom-Json | Where-Object unread | ForEach-Object { gh api --method DELETE -H 'Accept: application/vnd.github+json' -H 'X-GitHub-Api-Version: 2022-11-28' "notifications/threads/$($_.id)" } |
Beta Was this translation helpful? Give feedback.
-
getting same issue |
Beta Was this translation helpful? Give feedback.
-
Solutions above deal with the notification, but they won't remove the repo subscription, hence it's stuck forever in "Repositories" list. |
Beta Was this translation helpful? Give feedback.
-
Same here :( |
Beta Was this translation helpful? Give feedback.
-
Yup, same thing on my end... |
Beta Was this translation helpful? Give feedback.
-
Same issue |
Beta Was this translation helpful? Give feedback.
-
run
then whatever it returns put in next command
this solved my issue in Fedora Linux. i think it will work everywhere just install GH cli |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Bug
Feature Area
Issues
Body
I got spam that was sent as a notification out of a GitHub issue. The notification originates from an organization/repo that seems to have been set up so that a bot can create issues and thus send automated notifications using a bunch of at-mentions at the bottom of the message.
The GitHub help explains that, to report an issue as spam, I should click on the Report content button, but the issue was already deleted (maybe as part of the spamming process?) and there's no such button on the 404 page...
Same about the repo and the organization: Both are deleted. Also, I cannot report the sender, it seems to be a bot ("auto-mail-to[bot]") so that I'm clueless about how to report that...
I'd expect a way to report spam on deleted issues / repos / organizations -- or to find out that, for a given issue / repo / organization, it's already been taken care of. The error 404 page does not indicate if the repo was deleted by the spamming script itself, or because someone else already reported it.
Related discussions :
Guidelines
Beta Was this translation helpful? Give feedback.
All reactions