SCP-5109 - ワンタイムパスワード(原題: The One-Time Password)

このページの批評は終了しました。

原文: SCP-5109 by HarryBlankHarryBlank rev.75


/* source: http://ah-sandbox.wikidot.com/component:collapsible-sidebar-x1 */
 
#top-bar .open-menu a {
        position: fixed;
        bottom: 0.5em;
        left: 0.5em;
        z-index: 15;
        font-family: san-serif;
        font-size: 30px;
        font-weight: 700;
        width: 30px;
        height: 30px;
        line-height: 0.9em;
        text-align: center;
        border: 0.2em solid #888 !important;
        background-color: #fff !important;
        border-radius: 3em;
        color: #888 !important;
        text-decoration: none!important;
}
 
@media (min-width: 768px) {
 
    .mobile-top-bar {
        display: block;
    }
 
    .mobile-top-bar li {
        display: none;
    }
 
    #main-content {
        max-width: 708px;
        margin: 0 auto;
        padding: 0;
        transition: max-width 0.2s ease-in-out;
    }
 
    #side-bar {
        display: block;
        position: fixed;
        top: 0;
        left: -25em;
        width: 17em;
        height: 100%;
        background-color: rgb(184, 134, 134);
        overflow-y: auto;
        z-index: 10;
        padding: 1em 1em 0 1em;
        -webkit-transition: left 0.5s ease-in-out 0.1s;
        -moz-transition: left 0.5s ease-in-out 0.1s;
        -ms-transition: left 0.5s ease-in-out 0.1s;
        -o-transition: left 0.5s ease-in-out 0.1s;
        transition: left 0.5s ease-in-out 0.1s;
    }
 
    #side-bar:after {
        content: "";
        position: absolute;
        top: 0;
        width: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
 
    }
 
    #side-bar:target {
        display: block;
        left: 0;
        width: 17em;
        margin: 0;
        border: 1px solid #dedede;
        z-index: 10;
    }
 
    #side-bar:target + #main-content {
        left: 0;
    }
 
    #side-bar:target .close-menu {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.3) 1px 1px repeat;
        z-index: -1;
    }
}
:root {
    --timeScale: 1;
    --timeDelay: 0s;
}
 
/* Converting middle divider from box-shadow to ::before pseudo-element */
.anom-bar > .bottom-box { box-shadow: none!important; }
.anom-bar > .bottom-box::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 0.5rem;
    background-color: rgb(var(--black-monochrome, 12, 12, 12));
    transform: translateY(-0.74rem);
}
 
/* DIVIDER */
.anom-bar > .bottom-box::before {
    animation-name: divider;
    animation-duration: calc(0.74s * var(--timeScale));
    animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
}
 
/* CLASSIFIED LEVEL BARS */
div.top-center-box  > * {
    animation-name: bar;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); }
 
/* TOP TEXT */
div.top-left-box, div.top-right-box {
    clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%);
}
 
div.top-left-box > *, div.top-right-box > * {
    position: relative;
    animation-name: bottomup;
    animation-duration: calc(0.65s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/*-----------------------------------*/
/*-----------------------------------*/
 
/* CONTAINMENT, DISRUPTION, RISK CLASSES */
div.text-part > * {
    clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation-name: expand2;
    animation-duration: calc(0.5s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.text-part > :nth-child(1) {
    animation-name: expand1;
}
div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); }
 
div.main-class::before, div.main-class::after {
    animation-name: iconslide;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 /* BOTTOM TEXT */
div.main-class > *,  div.disrupt-class > *, div.risk-class > * {
    white-space: nowrap;
    animation-name: flowIn;
    animation-duration: calc(0.42s * var(--timeScale));
    animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/*-----------------------------------*/
/*-----------------------------------*/
 
/* DIAMOND */
div.arrows {
    animation-name: arrowspin;
    animation-duration: calc(0.7s * var(--timeScale));
    animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.quadrants > * {
    animation-name: fade;
    animation-duration: calc(0.3s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.top-icon, div.right-icon, div.left-icon, div.bottom-icon {
    animation-name: nodegrow;
    animation-duration: calc(0.4s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.diamond-part {
    clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%);
    animation-name: diamondBorder;
    animation-duration: calc(0.8s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
    will-change: box-shadow;
}
 
/* MOBILE QUERY */
@media (max-width: 480px ) {
    .anom-bar > .bottom-box::before {
        display:none;
    }
    .anom-bar > .bottom-box {
        box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important;
    }
    div.top-center-box  > * {
        animation-name: bar-mobile;
        animation-duration: calc(0.9s * var(--timeScale));
    }
    div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
 
}
 
/*--- Motion Accessibility ---*/
@media screen and (prefers-reduced-motion: reduce) {
    div.anom-bar-container { --timeScale: 0!important; }
}
 
/*-------------------------*/
 
@keyframes divider {
    from { max-width: 0%;  }
    to { max-width: 100%; }
}
 
@keyframes bar {
    from { max-width: 0%; }
    to { max-width: 100%; }
}
@keyframes bar-mobile {
    from { max-height: 0%; }
    to { max-height: 100%; }
}
 
@keyframes bottomup {
    from { top: 100px; }
    to { top: 0; }
}
 
@keyframes expand1 {
    from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0); }
    to { opacity: 1; clip-path: inset(0); }
}
@keyframes iconslide {
    from { opacity: 0; transform: translateX(-5rem); }
    to { opacity: 1; transform: translateX(0); }
}
 
@keyframes expand2 {
    from { opacity: 0; width: 1%; }
    to { opacity: 1; width: calc(100% - 0.25rem); }
}
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
 
@keyframes flowIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
 
@keyframes arrowspin {
    from { clip-path: circle(0%); transform: rotate(135deg); }
    to { clip-path: circle(75%); transform: rotate(0deg); }
}
@keyframes nodegrow {
    from { transform: scale(0);}
    to {  transform: scale(1);}
}
@keyframes diamondBorder {
    from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
    to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
}

評価: 0+x

アイテム番号: SCP-5109
レベル2
収容クラス:
safe
副次クラス:
{$secondary-class}
撹乱クラス:
dark
リスククラス:
notice

Special Containment Procedures: SCP-5109 must not be spoken. This restriction is waived in the event of an imminent threat to the life of its keeper; it must then be spoken to that keeper's O5 Command contact via one-way radio transmitter. The identities of SCP-5109's present keeper and their O5 contact are classified Level 5: Top Secret.
特別収容プロトコル: SCP-5109は発言されてはなりません。この制限は、保有者の生命に脅威が差し迫った場合には撤回され、その際にはSCP-5109を一方向無線送信機によって保有者のO5司令部連絡先に発言しなければなりません。SCP-5109の現在の保有者の身元およびO5連絡先はレベル5: Top Secretに分類されています。

Audio recording of SCP-5109 is prohibited.
SCP-5109の音声録音は禁止されています。


Description: SCP-5109 is a cognito-linguistic phenomenon, the comprehension and retention of a specific string of forty-one characters from the Latin alphabet and Arabic numeral set.. Alternative designations: linear meme, cognitive isolate. At any given time, precisely one person can properly recognize and conceive of this character string, thus "containing" SCP-5109 in their mind. All other persons will perceive any non-auditory representation of the character string as a jumble of unfamiliar, meaningless symbols (see below), will be unable to concentrate on it for more than a few seconds, and will forget it once their attention lapses.
説明: SCP-5109は、一連のラテンアルファベットとアラビア数字の41文字の特定の文字列の理解・保持という、認識言語的現象です。. 変名: 線形ミーム、認知的隔離。 どのようなときにも、正確に1名の人物がこの文字列を適切に認識・着想することが可能であり、このようにしてその人物の精神にSCP-5109を「収容」します。それ以外の人物は、この文字列の非音声的表現を見知らぬ無意味な記号の集合体(下記参照)として認識し、数秒以上この文字列に集中することができず、注意が途切れるとこの文字列を忘れます。

Mimisi.png

SCP-5109. Iconographic aberrance, if any, is due to associated memetic effect. SCP-5109。図像的異常は、存在した場合関連するミーム効果による。

Any individual in possession of SCP-5109 (hereafter its "keeper") will be unable to forget it until it has been transmitted to a new individual. Transmission is achieved by speaking SCP-5109 aloud, character-by-character, in the presence or telepresence of at least one other sentient being. The first such being to aurally receive SCP-5109 in this fashion will immediately memorize its characters, and the former keeper will forget them entirely. There is no established upper limit to the number of times an individual can possess SCP-5109; Site-43 Identity and Technocryptography Chief Eileen Veiksaar has received and relinquished SCP-5109 some forty-three times over a period of eleven years with no apparent consequence.
SCP-5109を保有する人物(以降「保有者」)は、新たな人物に伝達するまでSCP-5109を忘れることができません。伝達は、少なくとも1体の他の自我を有する存在がいるもしくは遠隔でいる状態で、SCP-5109を声に出して1文字ずつ発言することで達成されます。このような方法でSCP-5109を聴覚的に受け取った最初の存在は、即座にその文字列を記憶して、前保有者は文字列を完全に忘れます。1名の人物がSCP-5109を保有できる回数の上限は確立されていません。サイト-43身元調査・技術暗号セクション長エイリーン・ヴェイクサールは、明白な帰結なく11年の間におよそ43回SCP-5109を受け取って手放しています。

Background knowledge an individual does or does not possess about SCP-5109 is immune to its memetic effects. New keepers will not recognize the character string as anomalous until they are so informed or discover its nature themselves; former keepers do not forget the existence of SCP-5109, merely its essence. This essence cannot be reverse-engineered, and deductive reasoning will not allow the characters to be "guessed." SCP-5109 is only imprinted on a subject's consciousness through aural reception.
SCP-5109に関する保有するもしくはしていない背景知識は、このミーム効果の影響を受けません。新保有者は、そのように伝えられるか自ら性質を発見するまで、この文字列が異常であると認識しません。前保有者はSCP-5109の存在を忘れず、単に内容のみ忘れます。この内容はリバースエンジニアリングできず、演繹的推論ではこの文字列を「予想」することはできません。SCP-5109は聴覚的に受け取ることでのみ対象の意識に刻まれます。

There is no evidence to suggest that SCP-5109 possesses agency or sentience. It does not affect the cognizance of its hosts except where memorization of the associated character string is concerned, and displays no cognizance of its own. Whether its phenomena represent an inherent property of languages using the Latin alphabet, an inherent property of human consciousness, an irreducible universal constant or a purposeful alteration of reality is not known. That the character string possesses a meaning in the English language, [EXPUNGED], does to some extent mitigate against all but the last of these possibilities.
SCP-5109に主体性や感覚性があることを示す証拠は存在しません。SCP-5109はその宿主の認識を、関連する文字列の記憶に関する領域以外に影響を与えず、それ自身の認識を示していません。この現象が、ラテンアルファベットを用いた言語に固有の性質、人間意識に固有の性質、簡約できない不変定数、目的のある現実改変、それらうちのどれかを表しているのかは不明です。この文字列は英語で[削除済]という意味を有しているため、最後以外の可能性はある程度低くなっています。


Addendum: SCP-5109 first came to Foundation attention on 5/08/2009 (see below). Its nature was determined through experimentation; its origin remains unknown.
補遺: SCP-5109は、2009/05/08に初めて財団に知られるところとなりました(下記参照)。その性質は実験によって判断されたものの、起源はいまだに不明です。

The ongoing need to develop reliable security protocols for Foundation research led to a proposal by Chief Veiksaar: experimental use of SCP-5109 in sensitive research projects at Site-43. Chief Veiksaar's proposal was accepted on 01/14/2010. She became the de facto keeper of SCP-5109 when not in use, authorized to loan it out on a case-by-case basis. This practice was discontinued on 04/27/2020, Special Containment Procedures were amended, and Chief Veiksaar ceded SCP-5109 to O5 Command.
財団研究における信頼可能なセキュリティプロトコルを開発する必要性が続いているため、ヴェイクサール セクション長は、サイト-43での機密研究プロジェクトにおけるSCP-5109の実験的使用を提言しました。ヴェイクサール セクション長の提言は2010/01/14に受理されました。彼女はSCP-5109が使用されていないときの事実上の保有者となり、ケースバイケースの基準によってSCP-5109を貸し出す権限が与えられました。この実践は2020/04/27に廃止され、特別収容プロトコルは改正され、ヴェイクサール セクション長はSCP-5109をO5司令部に委譲しました。

O5 Command is not accepting requests for the release of SCP-5109. Rationale can be found in the usage log excerpts retrieved from the Site-43 Network Database (43Net) reproduced below.
O5司令部はSCP-5109を解放する要請を承認していません。理論的根拠は、以下に再現されているサイト-43ネットワークデータベース(43Net)から回収された使用ログの抜粋に見られます。

43NET: SCP-5109 Usage Log [SELECTED]
43NET: SCP-5109使用ログ[選択済]
05/08/2009: During a routine credentials renewal, Dr. K. Elstrom speaks her 43NET password aloud via telephone to Identity and Technocryptography (I&T) technician W. Barkley. Barkley asks Dr. Elstrom to confirm the password by repeating it; she finds herself unable to do so. Dr. Elstrom asks that Barkley instead repeat the password back to her; when he refuses, citing protocol, she becomes extremely agitated and demands to speak to his supervisor.
2009/05/08: 定期資格証明更新の際に、K・エルストロム博士は身元調査・技術暗号(I&T)セクション技師W・バークリーに電話で自身の43NETパスワードを声に出して発言する。バークリーがエルストロム博士にパスワードを復唱して確認するよう求めると、彼女はそうできないことに気が付く。エルストロム博士はバークリーが代わりにパスワードを復唱して彼女に言い返すことを求めると、彼はプロトコルを引用して拒み、彼女は非常に動揺して彼の監督者と話すことを要求する。
05/09/2009: An I&T investigation determines the anomalous nature of the character string and it is transferred from Barkley to Eileen Veiksaar, Chief of I&T. Dr. Elstrom claims, under MARSTON verification protocol, to have no memory of the source of her former password. This claim is verified.
2009/05/09: I&T調査によりこの文字列の異常性質が判断され、文字列はバークリーからI&Tセクション長のエイリーン・ヴェイクサールに移管される。エルストロム博士は、マーストン検証プロトコルのもと以前のパスワードの起源について記憶がないと主張する。この主張は検証される。
05/10/2009 — 01/16/2010: The anomaly is classified SCP-5109. Eight months of study establish the laws governing its transmission. It is released to Chief Veiksaar's custody, and a registration system is set up to handle applications for its use in projects at Site-43.
2009/05/10 — 2010/01/16: このアノマリーはSCP-5109に分類される。8か月の研究により、この伝達を支配する法則が確定する。SCP-5109はヴェイクサール セクション長の管理下に置かれ、サイト-43のプロジェクトにおける使用の申請を処理する登録システムが構築される。
01/28/2010 — 01/29/2010: Dr. T. Bremmel claims SCP-5109 as the password for a secure network database. Site-43 Security and Containment Section (S&C) is alerted to a containment breach scenario in Dr. Bremmel's office the next day. Agents discover a Post-it note on Dr. Bremmel's terminal, containing his login information. At an emergency disciplinary hearing Dr. Bremmel reveals that the password on the note is not SCP-5109, but is instead a keyword pre-emptively flagged with S&C. Dr. Bremmel is detained at his own request, and his removal from Site-43 is announced via 43Net.
2010/1/28 — 2010/01/29: T・ブレンメル博士が機密ネットワークデータベースのパスワードにSCP-5109を要求する。翌日、サイト-43保安・収容Security and Containment(S&C)セクションはブレンメル博士のオフィスにおける収容違反シナリオの警告を受ける。エージェントらはブレンメル博士の端末に彼のログイン情報が記されたポスト・イットのメモを発見する。ブレンメル博士の緊急懲戒審理により、メモのパスワードはSCP-5109ではなく、代わりにS&Cで事前にフラグ付けされたキーワードであることが判明する。ブレンメル博士は本人の要求により拘束され、彼のサイト-43からの退去が43Netで告知される。
02/04/2010: Dr. Bremmel's former research assistant, Dr. S. Mollins, attempts three times to use the login and password from the Post-it note to remotely access Dr. Bremmel's secure database from his own office terminal. Charged with unauthorized access to a secured workspace and attempted credentials theft, Dr. Mollins is removed to Site-06-3 for detention. Dr. Bremmel returns SCP-5109 to Chief Veiksaar, never having used it.
2010/02/04: ブレンメル博士の元研究助手であるS・モーリンズ博士が、3回ポスト・イットのメモからログイン・パスワード入力し、自身ののオフィス端末から遠隔でブレンメル博士の機密データベースにアクセスしようとする。モーリンズ博士は機密作業場への無権限侵入と資格証明窃盗未遂で告発され、拘留のためサイト-06-3に退去する。ブレンメル博士はSCP-5109を一度も使用せずにヴェイクサール セクション長に返す。
Couldn't you have just made up a password for this, Trevor? [Blank, Dr. H.]
このためにパスワードを作りさえすればよかったんじゃないか、トレバー? [ブランク、H博士]
He had to think I'd be out of the way before he tried to steal my work. Flouting password regulations is bad; flouting ConProcs can be fatal. [Bremmel, Dr. T.]
彼は、業績を盗もうとする前に私を排除しなければならないと考えたに違いありません。パスワードの規則を軽視することはまずいことですし、収プロを軽視することは致命的になり得ます。 [ブレンメル、T博士]
05/16/2010 — 05/19/2010: Dr. E. LeClair claims SCP-5109 for use as the password for her tablet computer. Three days later she attempts to violate containment protocols for SCP-1693 at Sector-25. When apprehended, she admits to undertaking private research for the treatment of Alzheimer's Disease. Health and Pathology Section assessment at Site-43 reveals that Dr. LeClair suffers from Mild Cognitive Impairment, proceeding rapidly to mild dementia. I&T reports multiple password reset requests originating from her office over the past month. Dr. LeClair willingly surrenders SCP-5109 to Chief Veiksaar, and requests amnesticization and retirement to intermediate care. Her requests are granted.
2010/05/16 — 2010/05/19: E・ルクレア博士が自身のタブレットコンピューターのパスワードにSCP-5109を要求する。3日後、彼女はセクター-25でSCP-1693の収容プロトコルを違反しようとする。逮捕された際に、彼女はアルツハイマー病治療の個人的研究を企てていたことを認める。サイト-43保健・病理Health and Pathologyセクション評価により、ルクレア博士は軽度認知障害に冒されており、急速に軽度の認知症に進行していることが判明する。I&Tは先月に彼女のオフィスからの複数回のパスワードリセット要求があったことを報告する。ルクレア博士は進んでSCP-5109をヴェイクサール セクション長に譲渡し、記憶処理と中間ケアのための退職を要求する。彼女の要求は承認される。
05/29/2010 — 08/04/2010: SCP-5109 is claimed by Dr. H. Forsythe for use in clinical trials to determine whether its use can cause, or aggravate, cognitive impairment. All results are negative, and SCP-5109 is returned to Chief Veiksaar.
2010/05/29 — 2010/08/04: SCP-5109はH・フォーサイス博士によって、その使用が認識障害をもたらすか、悪化し得るか判断する臨床試験のために要求される。結果は全て陰性であり、SCP-5109はヴェイクサール セクション長に返される。
03/26/2011 — 05/17/2011: Dr. D. Sokolsky claims SCP-5109 for use as a research group FTP password. He instructs his colleagues to telephone him for a new, one-time password before uploading their data each day. He actually recites SCP-5109 to them each time, asking that they repeat it back to him before completing the log-on process. At the conclusion of the research project Dr. Sokolsky creates a new, non-anomalous password for the FTP system and returns SCP-5109 to Chief Veiksaar.
2011/03/26 — 2011/05/17: D・ソコルスキー博士が研究グループにおけるFTPパスワードへの使用にSCP-5109を要求する。彼は同僚らに、毎日データをアップロードする前に自身から電話で新たなワンタイムパスワードを求めるよう指示する。実際には、彼は毎回SCP-5109を暗唱し、彼らがログオン処理を完了する前に自身に言い返すことを求めている。研究プロジェクトの終わりに、ソコルスキー博士はFTPシステムの新たな非異常のパスワードを作成して、SCP-5109をヴェイクサール セクション長に返す。
06/12/2011: Dr. Sokolsky publishes the research group's work as his own at the Site-43 All-Sections Symposium. When his colleagues protest, he challenges their credentials and asks them to prove their group membership by reciting any one of the previous FTP passwords, which they obviously cannot do. He then publishes the results of a second, secret program of research on the security and ethics implications of SCP-5109, detailing the above actions in full, and is immediately promoted to Senior Researcher in Memetics and Countermemetics.
2011/06/12: ソコルスキー博士は、サイト-43全セクションシンポジウムで研究グループの成果を彼自身のものとして発表する。同僚らが抗議すると、彼は同僚らの資格証明を疑い、グループの一員であることを以前のFTPパスワードのどれか1つを暗唱することで証明するよう求める。彼らは明らかにそうすることができない。続いて彼は、SCP-5109のセキュリティや倫理における影響に関する2番目の秘密の研究計画を、上記の行動を全て詳述して発表し、すぐさまミーム・対抗ミームMemetics and Countermemeticsにおける上級研究員に昇進する。
Still a little in awe of this, to be honest. [McInnis, Dr. A.]
実のところ、このことにはまだ少し畏れを抱いている。 [マッキンス、A博士]
08/16/2011 — 09/18/2011: R. Pensak, Chief of Security and Containment for Site-43, claims SCP-5109 for use as a ritual artifacts storage locker code. He is diagnosed with acute laryngitis two days before the artifacts are proven counterfeit, and is unable to return SCP-5109 to Chief Veiksaar for over a month.
2011/08/16 — 2011/09/18: サイト-43保安・収容セクション長であるR・ペンサクが儀式的アーティファクト保管ロッカーのコードへの使用にSCP-5109を要求する。そのアーティファクトが偽造品であることが証明されるも、その2日前に彼は急性喉頭炎と診断され、1か月以上SCP-5109をヴェイクサール セクション長に返すことができない。
01/30/2012 — 02/29/2012: Dr. L. Lillihammer claims SCP-5109 for use as a vocal activation code for an adaptive security program derived from SCP-3355. On 02/29/2012 she attempts to activate the program as usual, but finds that it has already activated itself — having become artificially intelligent — and immediately forgets SCP-5109. She negotiates its return to her (via vocoder) in exchange for promises to build a robotic host for the security program. After fully wiping and disposing of the affected systems and returning SCP-5109 to Chief Veiksaar, Dr. Lillihammer informs Site-43 S&C of these events. A reprimand is issued, but in light of her honesty no further action is taken.
2012/01/30 — 2012/02/29: L・リリハンメル博士がSCP-3355から派生した適応性セキュリティプログラムの口頭起動コードへの使用にSCP-5109を要求する。2012/02/29、彼女は通常通りプログラムを起動しようとするが、すでに自分自身で起動している — 人工知能になっていたため — ことに気が付いて即座にSCP-5109を忘れる。彼女は、セキュリティプログラムのロボットホストの構築を約束する代わりに、SCP-5109の彼女への(ボコーダーによる)返還を交渉する。リリハンメル博士は、影響を受けたシステムを完全に消去・廃棄してSCP-5109をヴェイクサール セクション長に返したのちに、サイト-43S&Cにこれらのイベントを通知する。叱責が行われるものの、彼女の誠実を考慮してさらなる措置は行われない。
11/17/2014 — 11/20/2014: Dr. T. Bremmel claims SCP-5109 for use in an experimental security system. At 2:42 AM on 11/20/2014 he instructs Site-43 S&C to detain his former research assistant, Dr. O. Ostroy, for unauthorized entry and theft of research materials. Agents confront Dr. Ostroy in his living quarters, where he denies Dr. Bremmel's charges. Under enhanced interrogation, however, Dr. Ostroy is proven capable of reciting SCP-5109. Dr. Ostroy is subsequently removed to Site-06-3 for detention, and SCP-5109 is returned to Chief Veiksaar.
2014/11/17 — 2014/11/20: T・ブレンメル博士が実験的セキュリティシステムへの使用にSCP-5109を要求する。2014/11/20 2:42AM、彼はサイト-43S&Cに、自身の元研究助手であるO・オストロイ博士を無権限の侵入と研究資料の窃盗のため拘束するよう指示する。エージェントらが宿舎でオストロイ博士に直面すると、彼はブレンメル博士の告発を否認する。しかし、強化された尋問のもと、オストロイ博士はSCP-5109を暗唱できることが証明される。その後オストロイ博士は拘留のためサイト-06-3に退去し、SCP-5109はヴェイクサール セクション長に返される。
I don't understand this one at all. How did you know he'd broken in, and how did he learn 5109? [Blank, Dr. H]
これに関しては全く理解できない。あなたはどうやって彼が侵入したことを知って、どうやって彼は5109を覚えたんだ? [ブランク、H博士]
I made a recording of 5109 and had the security system play it to the first person who entered without authorization. I knew when it happened because I had a picture of 5109 as the lock screen on my phone. I woke up in the middle of the night for no apparent reason, checked my phone, and realized I couldn't understand the characters anymore. The recording's gibberish now, by the way, and it'll stay gibberish even if I get 5109 again. Go figure. [Bremmel, Dr. T.]
私は5109を録音して、権限なく侵入した最初の人物に対してセキュリティシステムで流したんです。5109の画像を携帯のロック画面にしていたから、いつ起きたかはわかりました。特段理由もなく夜中に起きて携帯をチェックすると、もはや文字列を理解できないことに気づきました。もう録音は意味不明でしたが、ところで、5109をもう一度得たとしても意味不明なままでした。訳がわかりません。 [ブレンメル、T博士]
…it didn't even occur to me that it would work like that. It shouldn't work like that. Why does it work like that? [Blank, Dr. H.]
……そのようにうまく行くとはまるで思いつかなかった。そのようにうまく行くはずがない。なぜそのようにうまく行くんだ? [ブランク、H博士]
We tested this thing for eight months, Harry. The best answer I can give you is: it works like that. [Bremmel, Dr. T.]
私たちは8か月間これを試験しているんですよ、ハリー。私にできる一番の回答は、そのようにうまく行くから、です。 [ブレンメル、T博士]
Then my next question is, should we update the ConProcs? Have the keeper make a recording, just to be safe, and ditch the radio transmitter? [Blank, Dr. H.]
なら次の質問は、我々は収プロを更新すべきか? 保有者に念のため録音させて、無線送信機をやめるか? [ブランク、H博士]
Absolutely not. As the keeper can still transmit 5109 orally unless someone listens to the recording first, that would take us from one containment breach vector to two. [McInnis, Dr. A.]
絶対にダメだ。保有者は先に誰かが録音を聞いていない限り5109を口頭で伝達できる。だからそうすると収容違反ベクターが1つから2つに増える。 [マッキンス、A博士]
…or more. [Blank, Dr. H.]
……あるいはそれ以上か。 [ブランク、H博士]
You're right. We need to update the ConProcs. [McInnis, Dr. A.]
その通りだ。収プロを更新する必要がある。 [マッキンス、A博士]
09/01/2015 — 09/08/2015: Dr. A. Zlatá claims SCP-5109 for use as the password to an information retrieval system. He is subsequently killed when a scheduling mishap results in his presence in Site-43 Acroamatic Abatement Facility AAF-D during a cascade containment breach event on 09/08/2015.
2015/09/01 — 2015/09/08: A・ズラター博士が情報検索システムのパスワードへの使用にSCP-5109を要求する。その後彼は2015/09/08の連鎖的収容違反イベントの間に、スケジューリング事故によりサイト-43玄妙除却施設AAF-Dにいる際に死亡した。
11/19/2015: After 72 days of around-the-clock decryption of Dr. Zlatá's database, I&T personnel are unable to reconstruct SCP-5109.
2015/11/19: 72日間ズラター博士のデータベースを無休で解読したのち、I&T職員はSCP-5109を再建することができない。
We knew the linguistic component wouldn't function without the cognitive component, of course, but it was a useful training exercise nevertheless. [Veiksaar, Chief E.]
言語学的構成要素は認知的構成要素なしには機能しないとはもちろん知ってはいましたが、それでもこれは有益な訓練演習でした。 [ヴェイクサール、Eセクション長]
If only someone had thought to, say, have Adrijan make an audio recording. [Blank, Dr. H.]
誰かがアドリヤンに音声録音をさせてさえいたならばよかったのだが。 [ブランク、H博士]
09/08/2016: The cascade containment breach event which killed Dr. Zlatá recurs, as it has annually since 2002 due to anachronic material being processed in Acroamatic Abatement. Temporal Anomalies Department personnel are able to intercept Dr. Zlatá and retrieve SCP-5109 from him shortly before his second death. SCP-5109 is returned to Chief Veiksaar.
2016/09/08: ズラター博士が死亡した連鎖的収容違反イベントが、玄妙除却で処理された時代錯誤物質のために2002年以降1年ごとに起きたように再発する。時間異常部門職員はズラター博士を途中で捕らえることができ、彼の2度目の死の直前にSCP-5109を回収する。SCP-5109はヴェイクサール セクション長に返される。
09/09/2016: N. Nascimbeni, Janitorial and Maintenance Chief for Site-43, claims SCP-5109 for use as a lock code on Acroamatic Abatement Facility AAF-D. He recites it to himself once upon leaving Chief Veiksaar's office, and immediately forgets it.
2016/09/09: サイト-43清掃・保守セクション長であるN・ナシンベーニが玄妙除却施設AAF-Dのロックコードへの使用にSCP-5109を要求する。彼はヴェイクサール セクション長のオフィスを離れる際に1度SCP-5109をつぶやき、即座に忘れる。
09/09/2019: SCP-5056-A screams a string of characters at SCP-5056-B while the latter is showering. SCP-5056-B recounts the event to A. Torosyan, Janitorial and Maintenance Chief for Site-43, and immediately forgets the characters upon so doing. SCP-5109 is returned to Chief Veiksaar after an interval of thirty-six months.
2019/09/09: SCP-5056-AがSCP-5056-Bに、後者がシャワーを浴びている際にある文字列を叫ぶ。SCP-5056-Bはサイト-43清掃・保守セクション長であるA・トロシヤンにその出来事を詳述し、その際に文字列を即座に忘れる。SCP-5109は36か月の期間を経てヴェイクサール セクション長に返される。
09/10/2019: Use of SCP-5109 within Site-43 is proscribed; Chief Veiksaar retains its custody, but may only transmit it in person while off-site.
2019/09/10: サイト-43内でのSCP-5109の使用が禁止される。ヴェイクサール セクション長はSCP-5109を管理し続けるが、サイト外で直接伝達することのみ可能である。
04/24/2020 — 04/25/2020: Dr. W. Howard claims SCP-5109 for use as a temporary access code for his laboratory at Site-66. A series of explosions destroys Dr. L. Eastover's office and research suite at Site-66 the next day. Dr. Howard is apprehended while trying to escape off-site, and questioned. He claims to be an agent of the Chaos Insurgency GOI, and to have used SCP-5109 as the vocal activation key to five networked explosive devices in Dr. Eastover's office; he delivered the key remotely by telephoning Dr. Eastover's answering machine. He further claims to have surrendered SCP-5109 to the Chaos Insurgency via telephone immediately afterward.
2020/04/24 — 2020/04/25: W・ハワード博士がサイト-66における自身の研究室の一時的アクセスコードへの使用にSCP-5109を要求する。翌日、一連の爆発によりL・イーストーバー博士のオフィスと研究用部屋が破壊される。ハワード博士はサイト外に逃亡しようとしている際に逮捕され、尋問を受ける。彼はカオス・インサージェンシーのGOIのエージェントであり、SCP-5109をイーストーバー博士のオフィスにおける5つの網羅的爆破装置の口頭起動キーに使用したと主張する。彼はキーをイーストーバー博士の留守番電話に伝えることにより遠隔で送達していた。さらに彼は、その直後にSCP-5109を電話でカオス・インサージェンシーに譲渡したと主張する。
04/26/2020: Dr. Eastover's treatment for third-degree burns at Site-66 is successful. He had fallen asleep in his office on 04/25/2020, was awakened by Dr. Howard's call, and was present (under his desk) when the explosive devices were triggered. Dr. Eastover returns SCP-5109 to Chief Veiksaar's custody.
2020/04/26: サイト-66におけるイーストーバー博士の3度熱傷の治療が成功する。彼は2020/04/25にオフィスで眠りに落ち、ハワード博士の電話で起きて、爆破装置が動作した際に(デスクの下に)いた。イーストーバー博士はSCP-5109をヴェイクサール セクション長の管理に返す。
04/27/2020: Chief Veiksaar is ordered to relinquish SCP-5109 to O5 Command, and complies.
2020/04/27: ヴェイクサール セクション長はSCP-5109のO5司令部への放棄を命令され、従う。
01/01/2021: [DATA EXPUNGED]
2021/01/01: [データ削除済]

Addendum: Proposals to decommission SCP-5109 have been rejected, as it is unclear whether terminating its present keeper would permanently destroy the anomaly or cause it to manifest in some other context — potentially outside of containment, or Foundation notice.
補遺: SCP-5056の解体の提言は、現在の保有者の終了によりアノマリーが恒久的に破壊されるか、あるいは別の文脈 — 収容や財団の認知の外部にある可能性が存在する — に出現するか不明であるため、却下されました。



記事ここまで

tag: _cc antimemetic auditory chaos-insurgency concept director-mcinnis doctor-blank doctor-lillihammer infohazard intangible knowledge language memetic memory-affecting on-guard-43 prize-feature safe scp time-after-time-password transmission
タグ: en 反ミーム 聴覚 カオス・インサージェンシー 概念 マッキンス管理官 ブランク博士 リリハンメル博士 情報災害 非実体 知識 言語 ミーム 記憶影響 on-guard-43 賞典-注目記事 safe scp 通信

タグ申請

以下のタグの追加をお願いします。

Taleシリーズ / 連作 > EN

以下はフォーラム投稿用


ソース: SCP-5109 rev.75
著者: HarryBlankHarryBlank
作成日(EN): 2020/06/27


ページコンソール

批評ステータス

カテゴリ

SCP-JP

本投稿の際にscpタグを付与するJPでのオリジナル作品の下書きが該当します。

GoIF-JP

本投稿の際にgoi-formatタグを付与するJPでのオリジナル作品の下書きが該当します。

Tale-JP

本投稿の際にtaleタグを付与するJPでのオリジナル作品の下書きが該当します。

翻訳

翻訳作品の下書きが該当します。

その他

他のカテゴリタグのいずれにも当て嵌まらない下書きが該当します。

言語

EnglishРусский한국어中文FrançaisPolskiEspañolภาษาไทยDeutschItalianoУкраїнськаPortuguêsČesky繁體中文Việtその他日→外国語翻訳

日本支部の記事を他言語版サイトに翻訳投稿する場合の下書きが該当します。

コンテンツマーカー

ジョーク

本投稿の際にジョークタグを付与する下書きが該当します。

アダルト

本投稿の際にアダルトタグを付与する下書きが該当します。

既存記事改稿

本投稿済みの下書きが該当します。

イベント

イベント参加予定の下書きが該当します。

フィーチャー

短編

構文を除き数千字以下の短編・掌編の下書きが該当します。

中編

短編にも長編にも満たない中編の下書きが該当します。

長編

構文を除き数万字以上の長編の下書きが該当します。

事前知識不要

特定の事前知識を求めない下書きが該当します。

フォーマットスクリュー

SCPやGoIFなどのフォーマットが一定の記事種でフォーマットを崩している下書きが該当します。


シリーズ-JP所属

JPのカノンや連作に所属しているか、JPの特定記事の続編の下書きが該当します。

シリーズ-Other所属

JPではないカノンや連作に所属しているか、JPではない特定記事の続編の下書きが該当します。

世界観用語-JP登場

JPのGoIやLoIなどの世界観用語が登場する下書きが該当します。

世界観用語-Other登場

JPではないGoIやLoIなどの世界観用語が登場する下書きが該当します。

ジャンル

アクションSFオカルト/都市伝説感動系ギャグ/コミカルシリアスシュールダーク人間ドラマ/恋愛ホラー/サスペンスメタフィクション歴史

任意

任意A任意B任意C

ERROR

The Witherite's portal does not exist.


エラー: Witheriteのportalページが存在しません。利用ガイドを参照し、portalページを作成してください。


利用ガイド

  1. portal:6370408 (02 May 2020 04:11)
特に明記しない限り、このページのコンテンツは次のライセンスの下にあります: Creative Commons Attribution-ShareAlike 3.0 License