最近有收到 github 一个 bot 发布的钓鱼链接吗 - V2EX
V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
请不要在回答技术问题时复制粘贴 AI 生成的内容
yb2313
V2EX    程序员

最近有收到 github 一个 bot 发布的钓鱼链接吗

  •   yb2313 16 天前 3412 次点击
    https://github.com/yccoombinator/-notification/issues/477
    最近这个 bot 大量发布 issue @了很多人,上来就让你申请投资。怎么微软一彻底接手 github 就出现这种东西?以前从来没被这种垃圾信息干扰过,gh 以后不会每天登录消息栏就是各种各样的垃圾信息吧?
    26 条回复    2025-09-25 05:58:46 +08:00
    codehz
        1
    codehz  
       16 天前 via Android   2
    微软接手都这么多年了,总不能有啥坏事都怪吧,有没有可能是因为用户太多,对钓鱼者来说价值更高呢
    Foxkeh
        2
    Foxkeh  
       16 天前
    Report Abuse 即可.
    AIGC2D
        3
    AIGC2D  
       16 天前
    收到 2 次了
    Mocus
        4
    Mocus  
       16 天前
    这玩意我已经是第 4 天收到了,微软得加把劲啊
    yb2313
        5
    yb2313  
    OP
       16 天前
    @codehz 之前只是收购但仍然独立运营,最近才彻底接手,CEO Thomas Dohmke 已经宣布离职了
    eagleoflqj
        6
    eagleoflqj  
       15 天前 via iPhone
    我也被一个类似的 typo 号骚扰了,它虽然被 ban 了,我站内信还显示未读而且去不掉
    tangmanger
        9
    tangmanger  
       15 天前
    还有投毒的呢 issue 给个链接,复制粘贴到 ps 牛逼的狠
    neteroster
        10
    neteroster  
       15 天前 via Android   1
    有的,通知还会出现去不掉的情况,如 @eagleoflqj 所说。解决方法也很简单

    1. 先去设置,开发者设置那里生成一个 classic 的 token

    2.
    读通知

    curl -L \
    -H "Accept: application/vnd.github+json" \
    -H "Authorization: Bearer <YOUR-TOKEN>" \
    -H "X-GitHub-Api-Version: 2022-11-28" \
    https://api.github.com/notifications

    记下垃圾未读通知的 ID

    3. 把他删掉

    curl -L \
    -X DELETE \
    -H "Accept: application/vnd.github+json" \
    -H "Authorization: Bearer <YOUR-TOKEN>" \
    -H "X-GitHub-Api-Version: 2022-11-28" \
    https://api.github.com/notifications/threads/THREAD_ID
    shunia
        11
    shunia  
       15 天前
    有没有更简单的办法去掉这个烦人的未读消息,你们说的方法都太复杂了,即便我也是个开发。。。
    shunia
        12
    shunia  
       15 天前
    @neteroster #10 你这个我试了,不行啊,删不掉
    abel533
        13
    abel533  
          1
    最近收到好几个 gitcoin 的邮件,看着很可疑
    ![描述]( https://imgur.com/a/oV8lLea)
    https://imgur.com/a/oV8lLea
    shunia
        14
    shunia  
       15 天前
    上面那个 delete 不行

    这个直接一把把所有未读的点都去掉了:
    curl -L \
    -X PUT \
    -H "Accept: application/vnd.github+json" \
    -H "Authorization: Bearer $TOKEN" \
    -H "X-GitHub-Api-Version: 2022-11-28" \
    https://api.github.com/notifications \
    -d '{"last_read_at": null,"read":true}'
    94
        15
    94  
       15 天前
    @yb2313 #5 ,收购都不知道年了,要做早做了,也不至于把上了的功能重新下线。
    对于 Github 来说变化也就是汇报线调整变更了。而且 Thomas Dohmke 就是微软安插在 Github 的自己人……

    如果想要了解这些事情,上个月#后互联网时代的乱弹#有一期提到了这部分内容:
    - [第 176 期 安克雷奇又一年 - 后互联网时代的乱弹 | 小宇宙]( https://www.xiaoyuzhoufm.com/episode/68a03fb14840a5d2ca62838b)

    ----

    最后再提一嘴,这些批量发布 Issue 的方式来发布钓鱼链接或者发布 spam 早几年前就有了,只不过可能你这次自己遇到了所以觉得比较特殊。
    Ketteiron
        16
    Ketteiron  
       15 天前
    还有在 github 诈骗的,光是 v2 上的例子就不下 10 个,根本原因是全球经济都在下行
    mercury233
        17
    mercury233  
       15 天前
    微软收购最直接的影响是把 dashboard 改废了
    yb2313
        18
    yb2313  
    OP
       15 天前
    @94 前几年确实一直没遇到过
    94
        19
    94  
       15 天前
    @yb2313 #18 ,直接用 github issue spam 这样的关键词,在 V 站用 SoV2ex 都能找到很多 25 年之前的吐槽帖子……
    skiy
        20/span>
    skiy  
       15 天前 via iPhone
    我也收到了,提 spam 了,但好像没处理。
    Chingjyu
        21
    Chingjyu  
       15 天前 via iPhone   1
    我开 ticket 收到了回复:

    Hi there,

    (省略套话)

    As a workaround, if you're familiar with the GitHub CLI, you can use the script below to mark all of your notifications as read. This may take care of the phantom message, but please note that the 1-0 of 1 message may still persist after the curl command is run. Our engineers are investigating this bug as well.

    Running the script to mark notifications as "read" is generally considered safe, as it does not remove the notification itself, only updates the status of the notification. Here is the script:

    gh api \
    --method PUT \
    -H "Accept: application/vnd.github+json" \
    /notifications \
    -F read=true

    If you have a Personal Access Token (PAT), you can also use the following curl command to mark all of your notifications as read. Please note that in order to use the curl command, you will need to replace $TOKEN with your own PAT, which you can create here. Also note that the PAT must have the notifications scope.

    curl -X PUT \
    -H "Accept: application/vnd.github.v3+json" \
    -H "Authorization: token $TOKEN" \
    https://api.github.com/notifications

    For your reference, here is the documentation for the Notifications REST API endpoint.

    (省略套话)

    Thanks,

    xxx
    GitHub Support
    fakepoet
        22
    fakepoet  
       15 天前
    @abel533 我也收到了,里面那个超链接的实际 url 和显示不一致,我直接举报 spam 了
    lx0758
        23
    lx0758  
       15 天前
    刚刚收到...github 出现一个有新通知小红点, 取消不掉了...Github 应该已经注意到这个问题了
    ClosureEleven
        24
    ClosureEleven  
       15 天前
    @neteroster 感谢 终于把这烦人的蓝点消掉了
    icyalala
        25
    icyalala  
       15 天前
    我也收到了,而且过去也收到过类似的群发 At 提醒
    这种只要放着不管就行,过半天一天之后 Github 自己就会删除掉,提示也会自动消除
    yb2313
        26
    yb2313  
    OP
       15 天前
    @shunia #11 直接用 github-cli 登录后 gh api notifications -X PUT -f last_read_at=2025-09-24T00:00:00Z -f read=true
    关于     帮助文档     自助推广系统     博客     API     FAQ     Solana     3698 人在线   最高记录 6679       Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 24ms UTC 00:51 PVG 08:51 LAX 17:51 JFK 20:51
    Do have faith in what you're doing.
    ubao snddm index pchome yahoo rakuten mypaper meadowduck bidyahoo youbao zxmzxm asda bnvcg cvbfg dfscv mmhjk xxddc yybgb zznbn ccubao uaitu acv GXCV ET GDG YH FG BCVB FJFH CBRE CBC GDG ET54 WRWR RWER WREW WRWER RWER SDG EW SF DSFSF fbbs ubao fhd dfg ewr dg df ewwr ewwr et ruyut utut dfg fgd gdfgt etg dfgt dfgd ert4 gd fgg wr 235 wer3 we vsdf sdf gdf ert xcv sdf rwer hfd dfg cvb rwf afb dfh jgh bmn lgh rty gfds cxv xcv xcs vdas fdf fgd cv sdf tert sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf shasha9178 shasha9178 shasha9178 shasha9178 shasha9178 liflif2 liflif2 liflif2 liflif2 liflif2 liblib3 liblib3 liblib3 liblib3 liblib3 zhazha444 zhazha444 zhazha444 zhazha444 zhazha444 dende5 dende denden denden2 denden21 fenfen9 fenf619 fen619 fenfe9 fe619 sdf sdf sdf sdf sdf zhazh90 zhazh0 zhaa50 zha90 zh590 zho zhoz zhozh zhozho zhozho2 lislis lls95 lili95 lils5 liss9 sdf0ty987 sdft876 sdft9876 sdf09876 sd0t9876 sdf0ty98 sdf0976 sdf0ty986 sdf0ty96 sdf0t76 sdf0876 df0ty98 sf0t876 sd0ty76 sdy76 sdf76 sdf0t76 sdf0ty9 sdf0ty98 sdf0ty987 sdf0ty98 sdf6676 sdf876 sd876 sd876 sdf6 sdf6 sdf9876 sdf0t sdf06 sdf0ty9776 sdf0ty9776 sdf0ty76 sdf8876 sdf0t sd6 sdf06 s688876 sd688 sdf86