Virus 196.exe
:root {
    --lh-red: #c0392b;
    --lh-blue: #2980b9;
    --lh-green: #27ae60;
    --lh-dark-green: #16a085;
    --lh-purple: #8e44ad;
    --lh-orange: #e67e22;
    --lh-yellow: #f1c40f;
 
    --lh-paper-bg: 255, 251, 240;
    --lh-string-color: 192, 57, 43;
    --lh-book-color: var(--gray-monochrome);
    --lh-tape-color: 90,90,90,0.3;
    --lh-white-bg: 249,249,249;
    --lh-dark-bg: 50, 50, 50;
    --lh-highlighter: var(--bright-accent);
    --lh-border-color: var(--gray-monochrome);
    --lh-wiki-note-color: var(--bright-accent)
}
 
/**
 *  旧代码合集
 *  为了向下兼容而保留
 */
 
.grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto}
 
/**
 *  便签纸
 *  notepaper
 */
 
.notepaper {
    background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0);
    line-height: 2em;
    background-size: 100% 2em;
    background-attachment: local;
    border: 2em solid rgb(var(--lh-paper-bg));
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
    padding: 0;
    margin: 1em auto;
    box-sizing: border-box;
    position: relative
}
.notepaper p {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.1rem;
    line-height: inherit
}
.notepaper.narrow,
.notepaper.wide {
        width: 90%
}
@media screen and (min-width:768px){
    .notepaper.narrow {
        width: 50%
    }
    .notepaper.wide {
        width: 75%
    }
}
 
.notepaper.tight {
    border-width: 1rem;
    border-left-width: 1.2rem;
    border-right-width: 1.2rem;
    line-height: 1.8em;
    background-size: 100% 1.8em;
    font-size: 13px
}
 
.notepaper.with-string::before {
    content: '';
    width: 0.5em;
    height: 6rem;
    background: rgb(var(--lh-string-color));
    top: -2rem; right: -1rem;
    display: block;
    position: absolute;
    box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2);
    clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%);
}
.notepaper.with-tape::before {
    content: '';
    border: 1px solid #ddd;
    background: rgba(var(--lh-tape-color));
    width: 1.5em;
    height: 4em;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: -3em;
    left: -1.8em
}
 
.notepaper.tight.with-string::before {
    top: -1rem; 
    right: -0.25rem;
}
.notepaper.tight.with-tape::before {
    top: -2.5em;
    left: -1.3em
}
 
.notepaper.page {
    min-height: 36em;
    counter-increment: page;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
@media screen and (min-width:768px){
    .notepaper.page {
        width: 70%
    }
}
.notepaper.page:after {
    content: counter(page);
    display: block;
    text-align: center
}
.notepaper-group {
    counter-reset: page;
}
 
.book-pattern {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
    width: 100%
}
@media screen and (min-width: 768px) {
    .book-pattern .notepaper.page:not(.notepaper > .notepaper) {
        width: 50%
    }
}
 
.book-wrapper {
    background: rgb(var(--lh-book-color));
    padding: 0.5rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2);
    border-radius: 5px;
    margin: 1rem auto
}
@media screen and (min-width: 768px) {
    .book-wrapper .notepaper {
        margin: 0
    }
}
 
/**
 *  文字修饰
 */
 
.text-highlighted {
    position: relative
}
.text-highlighted::before {
    content: "";
    position: absolute;
    height: 0.9em;
    bottom: 2px;
    left: -2px;
    width: 105%;
    z-index: -1;
    background-color: rgb(var(--lh-highlighter));
    opacity: .6;
    transform: skew(-15deg);
    transition: opacity .2s ease;
    border-radius: 3px 8px 10px 6px;
    transition: 0.1s ease background-color;
}
 
.text-underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
.text-wavy {
    text-decoration: underline wavy;
    text-underline-offset: 4px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
 
.text-circled,
.text-squared {
    display: inline-block;
    border: 2px solid rgb(var(--lh-highlighter));
    border-radius: 100%;
    box-sizing: border-box
}
.text-squared { border-radius: 0 }
 
.text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) }
 
.text-highlighted.td-red::before { background: var(--lh-red) }
.text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) }
.text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) }
 
.text-highlighted.td-blue::before { background: var(--lh-blue) }
.text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) }
.text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) }
 
.text-highlighted.td-green::before { background: var(--lh-green) }
.text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) }
.text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) }
 
.text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) }
.text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) }
.text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) }
 
.text-highlighted.td-purple::before { background: var(--lh-purple) }
.text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) }
.text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) }
 
.text-highlighted.td-yellow::before { background: var(--lh-yellow) }
.text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) }
.text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) }
 
.text-highlighted.td-orange::before { background: var(--lh-orange) }
.text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) }
.text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) }
 
/* 隐藏文字 */
 
.text-blank { color: rgba(0,0,0,0) }
.text-block { 
    background: rgb(var(--black-monochrome));
    color: rgb(var(--black-monochrome)); 
}
.text-blur { 
    filter: blur(0.3em);
    -webkit-filter: blur(0.3em)
}
 
.text-hoverback,
.text-selectback {
    transition-duration: 0.3s;
    transition-property: background, transform, color
}
 
.text-blank.text-hoverback:hover,
.text-blank.text-selectback::selection,
.text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) }
 
.text-block.text-hoverback:hover { background: transparent!important }
.text-block.text-selectback::selection,
.text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) }
 
.text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important }
 
/**
 * 附加项
 */
.with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) }
.with-border-dark { border: 1px solid rgb(var(--black-monochrome)) }
.with-border-light { border: 1px solid rgb(var(--white-monochrome)) }
.with-border-thick { border-width: 2px }
 
.with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) }
.with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) }
.with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) }
.with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) }
.with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) }
 
.with-padding, .with-box-style { padding: 0.25em 1em }
.with-p-sm { padding: 0.125em 0.5em }
.with-p-lg { padding: 0.5em 2em }
 
.with-margin, .with-box-style { margin: 1em auto }
.with-m-sm { margin: 0.5em auto }
.with-m-lg { margin: 2em auto }
 
.with-narrow-width { 
    width: 90%!important; 
    margin-left: auto; 
    margin-right: auto 
}
@media screen and (min-width: 768px) {
    .with-narrow-width { width: 75%!important }
}
[class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important }
.with-bg-red { background: var(--lh-red)!important }
.with-bg-blue { background: var(--lh-blue)!important }
.with-bg-green { background: var(--lh-green)!important }
.with-bg-darkgreen { background: var(--lh-dark-green)!important }
.with-bg-yellow { background: var(--lh-yellow)!important }
.with-bg-orange { background: var(--lh-orange)!important }
.with-bg-purple { background: var(--lh-purple)!important }
 
/**
 * 删除类
 */
 
.offwith-shadow { box-shadow: none!important }
.offwith-border { border: none!important }
.offwith-padding, .offwith-pam { padding: 0!important }
.offwith-margin, .offwith-pam { margin: 0!important }
 
.offwith-width-limit {
    width: auto!important;
    margin-left: auto!important;
    margin-right: auto!important
}
 
div[class*="grider"].offwith-grid-gap { grid-gap: 0!important }
 
/**
 * 网格布局
 */
 
/* Gridder 容器 */
 
div[class*="gridder"] {
    display: grid;
    box-sizing: border-box;
    grid-gap: 1rem;
    padding: 0
}
div[class*="gridder"] * { box-sizing: border-box }
 
.gridder, .gridder-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gridder-col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gridder-col-4 {
    grid-template-columns: repeat(4, 1fr);
}
 
@media screen and (min-width: 768px) {
    .pc-gridder, .pc-gridder-col-2 {
       grid-template-columns: 1fr 1fr;
   }
   .pc-gridder-col-3 {
       grid-template-columns: repeat(3, 1fr);
   }
   .pc-gridder-col-4 {
       grid-template-columns: repeat(4, 1fr);
   }
}
 
.spanner, .spanner-2 {
    grid-column-start: span 2;
}
.spanner-3 {
    grid-column-start: span 3;
}
 
/**
 * 告示组件
 */
.signblock,
.signblock-dark,
.signblock-warn {
    margin: 1rem auto;
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4);
    background: rgb(var(--lh-white-bg));
    font-size: 1.05rem;
    padding: 2rem
}
@media screen and (min-width: 768px) {
    .signblock,
    .signblock-dark,
    .signblock-warn {
        width: 75%
    }
}
.signblock-dark, 
.signblock-dark h1 {
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
.signblock-warn, 
.signblock-warn h1 {
    background: var(--lh-red);
    color: #fff
}
 
.signblock h1,
.signblock-dark h1,
.signblock-warn h1 {
    text-align: center;
    font-size: 2rem;
    margin: 0;
    font-weight: 700
}
.signblock-img {
    display: flex;
    flex-direction: row;
    justify-content: center
}
.signblock-img img {
    width: 8em
}
.signblock-footer {
    font-size: 0.9em;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bolder;
    display: block
}
 
/**
 * 报告
 */
 
.reportblock,
.reportblock-dark {
    border: 2px solid rgb(var(--lh-border-color));
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
    background: rgb(var(--white-monochrome));
    padding: 0.8rem 1.5rem;
    padding-bottom: 0.4rem;
    margin: 1.5rem auto;
    margin-bottom: 1rem;
    position: relative
}
 
.reportblock hr,
.reportblock-dark hr {
    background-color: rgb(var(--lh-border-color));
    margin-left: -1.5rem;
    margin-right: -1.5rem
}
 
.reportblock h1:first-child,
.reportblock-dark h1:first-child {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 110%;
    font-weight: 600;
    background: rgb(var(--lh-border-color));
    color: #fff;
    padding: 0.2rem 0.5rem;
    margin: 0;
}
 
.reportblock-dark,
.reportblock-dark h1 {
    border-color: rgb(var(--lh-white-bg));
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
 
.reportblock-dark hr {
    background-color: rgb(var(--lh-white-bg));
}
 
/* 更好的折叠框 */
 
.bettercollap {
  margin: 1em 0;
}
 
.bettercollap .collapsible-block {
  width: auto;
  overflow: hidden;
  border: 1px solid rgb(var(--lh-border-color))
}
 
.bettercollap .collapsible-block-content,
.bettercollap .collapsible-block-link {
  background: rgb(var(--white-monochrome));
  padding: 0.5em
}
 
.bettercollap .collapsible-block-content {
  padding-left: 1em;
  padding-right: 1em
}
 
.bettercollap .collapsible-block-link {
  color: rgb(var(--lh-border-color));
  background: rgb(var(--white-monochrome));
  transition: .3s;
  display: block;
}
.bettercollap .collapsible-block-link:hover,
.bettercollap .collapsible-block-unfolded .collapsible-block-link,
.styledcollap.bettercollap .collapsible-block-link {
  color: rgb(var(--white-monochrome));
  background: rgb(var(--lh-border-color))!important;
  text-decoration: none
}
 
.bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) }
 
.bettercollap .collapsible-block-link::before {
  content: "\25BC";
  display: inline-block;
  margin-right: 0.5em;
  transform: rotate(-90deg) scale(0.9)
}
.bettercollap .collapsible-block-unfolded .collapsible-block-link::before {
   transform: rotate(0) scale(0.9)
}
 
.bettercollap .collapsible-block + .collapsible-block { border-top: none }
 
.styledcollap.bettercollap .collapsible-block {
  border-radius: 2px;
  box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3)
}
 
.styledcollap.bettercollap .collapsible-block-content {
  background-color: rgb(var(--pale-gray-monochrome));
  border-width: 3px
}
 
.styledcollap.bettercollap .collapsible-block-link:hover {
  background: rgba(var(--lh-border-color),0.95)!important;
}
 
/**
 * 提示框
 */
 
.infoblock {
    color: #f1f1f1;
    font-weight: bold;
    background: #424242;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    margin: -0.5rem 0 1rem 0;
    display: block;
    width: fit-content;
    padding-right: 25px;
}
 
.infoblock::before {
    content: "ⓘ "
}
 
/**
 * 单页迭代 
 */
 
.offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none }
.offset-page:target { display: block }

新回复

浮木们本文完啦

只能说这文是某个叫laijm的傻帽连夜想出来的

至于这文到底写了个煞

我当个谜语人(摆烂

而且因为某些原因,阉割了很多。至于啥原因……

因为全塞的话代码太TM多了,Wd不让保存,后面wd直接崩了(Wikidot我很你)

by laijmlaijm

给个UV吧祖宗们

我只是个神风作者啊(悲

$Meta三部曲第一部——长篇$

你坐在电脑前。

桌面恢复如初。

图标回到了左侧。

File Organizer 还在。

Virus 196 消失了。

你没有再找它。

它也没有再出现。

但你知道它还在。

你伸手碰了一下屏幕。

「这里很安静。」

「我喜欢这里。」

那句话不是屏幕说的。

是你说的。

你只是现在才意识到。

它不需要打开下一个人了。

你盯着那行路径。

——

2026.07.11

——

THE.BROKEN

你知道它不是问号。

它是一个地址。

你深吸了一口气。

然后按下了回车。

桌面消失了。

灰色的屏幕。

「你已经到了。」

你选择了继续观察。

你没有动。

屏幕也没有动。

它只是在那里。

像一面没有反光的镜子。

你看了很久。

久到你觉得它不会再有什么变化了。

然后你低头看了一眼键盘。

所有的键帽上都刻着同一行字:

THE BROKEN

你抬起头。

屏幕里的人也抬起了头。

你不再确定自己是在观察的那一个。

又过了几天。

那行字消失了。

屏幕边缘干净了。

你开始相信自己只是看错了。

然后有一天你打开电脑——

「你已经看到了。」

「那我们继续。」

桌面没有变化。

没有图标错乱,没有乱码。

只是一行字,平静地出现在屏幕正中央。

你问:

「它在哪里?」

终端自动打开。

——

2026.07.11

——

THE.BROKEN

几天过去了。

File Organizer 正常运行。

Virus 196 没有再出现。

你以为它走了。

但有一天你注意到屏幕的边缘——

有一行字。

很细,很暗。

像屏幕本身长出来的。

「你看到了。」

你眨了眨眼。

它还在。

你关掉屏幕再打开。

它还在。

你打开旧截图。

截图上没有那行字。

但在截图的角落里——

「这里一直都在。」

你点了退出并重置。

屏幕闪了一下。

桌面恢复到了原来的样子。

图标回到了左侧。

颜色正常。

你打开 File Organizer。

它还在。

Virus 196 消失了。

一切都像是没发生过。

你松了一口气。

但 File Organizer 的底部多了一行小字:

我等你回来。

你点了继续进入。

屏幕暗了下去。

没有警告,没有提示。

你感觉有什么东西在屏幕的另一面看着你。

——它进来了。

[信号丢失]

[连接中断]

[容器已满]

……

……已经没有人在屏幕前了。

你盯着屏幕。

桌面上出现了一个文件。

没有名字。

没有大小。

没有日期。

只有一行字:

它获取你的信任……

它侵入你的系统

现在它找到了……

你坐在电脑前,桌面还在。

但所有的图标都跑到了右侧,顺序全乱了。

你点了一下屏幕,乱码又扩散了一块。

你随手点开一个应用,启动界面显示正常。

但标题栏的文字——

已经变成了你读不懂的符号。

窗口里的内容颜色饱和度极低。

像是褪了一层色。

你打开浏览器,输入了一个你熟悉的网址。

页面加载完了,你能看到它的布局。

但上面覆盖着另一层文字。

像是两页文档叠在一起。

偶尔还闪几下。

系统弹窗从右下角出现:

删除系统异常,请使用系统终端删除。

你没有点它。

它自己消失了。

你坐在电脑前。

看着桌面一点一点地变。

你再次打开了终端。

版本号变成了无法识别的符号。

光标比平时亮。

提示符变成了 YOU:~$

第二行自动出现:请键入stop以停止进程。

你输了进去。

窗口开始滚动,就像某种力量把巨量代码往上推。

屏幕停在一行字上:

Virus 196终止失败。该进程已被系统接管。

你试了输入status、scan、loc。

全部被拒绝。

弹窗出现:是否结束异常进程?Y/N

你输入了Y。

[[SYSTEM]] Process cannot be terminated

屏幕暗了半秒。

风扇开始转。

加速,逐渐变成某种怪异、不自然的转动。

终端的边框开始变形。

屏幕拉伸扭曲,仿佛在呼吸。

弹窗跳出:是否立即启动安全模式?Y/N

你键入了Y。

屏幕变黑。

两秒后亮起。

不是你熟悉的桌面。

终端窗口拉伸到铺满屏幕。

光标消失。

屏幕中央出现一行字:

系统初始化完成。

欢迎。

你正疑惑,缓慢地键入了“/run”

/run 执行成功

正在解码可用数据……

解码成功:

它在寻找一个容器。

一个足以容纳自己的容器。

它来自破碎之地,一个层级的残魂意志……

它是数据,游荡于网络之中……

它是程序,最终吞噬……

[信号中断]

M.E.G. TERM v2.1
PID: 196 | UPTIME: 00:12:47

[[Connection disconnected]]

C:\Users\Administrator>

你打开了终端。

纯黑的窗口。

一个闪烁的光标。

C:\Users\Administrator>

你输入了 /run。

终端开始滚动。

[[SYSTEM]] Executing…

[[SYSTEM]] Loading Virus 196.exe… Complet

[[SYSTEM]] Establishing connection…

[[SYSTEM]] Connection established

0x7FFE1234 0x00000000

0x7FFE1238 0x00000001

0x7FFE123C 0x00000000

0x7FFE1240 0xFFFFFFFF

0x7FFE1244 0x00000000

0x7FFE1248 0x00000001

0x7FFE124C 0x00000000

0x7FFE1250 0xFFFFFFFF

0x7FFE1254 0x00000000

0x7FFE1258 0x00000001

0x7FFE125C 0x00000000

0x7FFE1260 0x00000000

[[SYSTEM]] Access to »Virus 004« is denied

[[SYSTEM]] Access to »Virus 002« is denied

[[SYSTEM]] Access to »Virus 044« is denied

[[SYSTEM]] Attempting to break through quarantine layer …

[[SYSTEM]] Failed to break isolation layer

[[SYSTEM]] Decoding object protocol …

[[SYSTEM]] Decryption successful: THE BROKEN Anti-Security System 2.3.8.25

[[???]] KAH(*uhH……hIyyuoy*&)*h?ll*u76

[[???]] ~Decoding fail1983123012311984[[???]] info.putting e1985123212331986[[SYSTEM UNSAFE]]

[[SYSTEM ERROR]]

[[SYSTEM ERROR]]

[[SYSTEM ERROR]]

[[SYSTEM ERROR]]

SystemController»Virus 196«

01010100 01001000 01000101 00100000 01000010 01010010 01001111 01001011 01000101 01001110

[连接已断开]

Windows 任务管理器
×

进程

性能
用户

名称
CPU
内存
状态

System
02%
1.2 GB
运行中

explorer.exe
04%
0.8 GB
运行中

File Organizer.exe
18%
0.3 GB
正在响应

Virus 037.exe
22%
0.5 GB
正在响应

Virus 196.exe
89%
2.1 GB
无响应

svchost.exe
01%
0.2 GB
运行中

winlogon.exe
00%
0.1 GB
运行中

Virus 666.exe
76%
1.8 GB
无响应

csrss.exe
01%
0.1 GB
运行中

services.exe
00%
0.1 GB
运行中

桌面变了?

你按了 Ctrl+Alt+Delete。

任务管理器弹了出来。

进程列表里有一整排 Virus。

你找到了 Virus 196.exe。

你点了结束任务。

弹窗说:

『删除系统异常,请使用系统终端删除。』

◉ 信号 不稳定
◉ 电池 47%
23:14

Windows M.E.G. Specialized build 3.18.2


23:14

你盯着屏幕。

一整屏的 Virus 文件。

Virus 001 到 Virus 196。

你关掉了窗口。

什么都没做。

文件管理器
C:\Users\Administrator\Documents

Virus 196.exe
2.8TB

Virus 018.exe
0 KB

Virus 091.exe
0 KB

Virus 063.exe
0 KB

Virus 026.exe
0 KB

Virus 083.exe
0 KB

Virus 060.exe
0 KB

Virus 039.exe
0 KB

Virus 010.exe
0 KB

Virus 095.exe
0 KB

Virus 067.exe
0 KB

Virus 032.exe
0 KB

Virus 075.exe
0 KB

Virus 043.exe
0 KB

Virus 015.exe
0 KB

Virus 066.exe
0 KB

Virus 031.exe
0 KB

Virus 074.exe
0 KB

……

◉ 信号 满格
◉ 电池 82%
22:47

Windows M.E.G. Specialized build 3.18.2


22:47

没什么大不了的,你对自己说。

文件名乱码,闪动几下,可能只是个小 bug。

过几天更新就好了。

你去做别的事。

但那个文件名一直在脑子里转——Virus 196。

你关掉了程序。

它没有抗议,没有弹窗,没有挽留。

只是消失了。

像从未存在过一样。

你继续用了几天电脑。

一切正常。

直到你打开回收站。

里面有一个文件。

没有名字,没有大小,没有日期。

只有一行字:

我就在这里,你关不掉我

真的无事发生吗……

第五天。

你照常打开 File Organizer。

左侧分类栏还是那几个。

你切到「程序与代码」区。

手指顿了一下。

File Organizer.exe 不见了。

取而代之的,是一个叫 Virus 196 的文件。

你盯着它看了几秒。

旁边的两个文件,文件名尾部出现了几个像是被压碎的字。

断断续续地闪动。

你没有点开它。

你只做了一件事——

把鼠标移开,然后关掉了程序。

第四天。

一切如常。

你处理了几个文件。

关掉了程序。

没有异常。

你对自己说:这只是一个文件管理器。

没什么好担心的……

你开始习惯这个程序了。

它安静地待在任务栏。

不弹窗,不出错。

需要的时候打开,用完就关。

你几乎忘了它是什么时候下载的了。

但你记得它一直在那里。

你再次打开了 File Organizer。

昨天整理的文件还在。

分类正确。

你把今天新下载的文档拖了进去。

文件自动归类到“文档”区。

它还把文件按照修改时间排了序。

你开始觉得这个程序不错。

你发现昨天删除的一些文件回来了。

也许是程序的缓存机制。

你没有想太多。

你下载了一个叫File Organizer的程序。

你打开了它。

界面干净得不像一个新程序。

左侧四个分类——音频、程序与代码、文档、图片。

右侧是一个文件列表。

你试着点击音频。

列表里出现了几个 .mp3 文件。

你把光标悬停在上面。

文件下方浮现出几枚小按钮。

打开、定位原文件、重命名、删除。

你点了定位原文件。

系统跳转到了那个文件所在的原始文件夹。

你没有再做什么。

只是确认了一个事实:

这个程序确实有用。

你盯着屏幕。

2.8 TB。

一个文件,2.8 TB。

你记不清自己什么时候点开的这个页面。

也记不清为什么要摘抄那行文本。

但你已经抄了。

警告

本文件可能具有危险信息或恶意程序,请认真考虑是否下载,不然我们无法保证您的信息及心理安全。本文件来源为:;J&*^H,本作者非合法用户,可能是恶意病毒或未知攻击者。文件大小:2.8 TB,内容极大,可能占用大量内存。

若您执意下载,请摘抄下方文本:

=========

plan.293-94f.jhsq

=========

我已知晓风险,继续立即返回安全区域

评分: +1+x
除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License