FediScanner

#ssh

← Back

The last time I played Zork, I made sure to note down all the screen text. Questions/answers, possible branching paths, names of intermediate saves, etc. A rather long text file that takes time to update while progressing in the game.. But it allowed me to really advance. Maybe I should even draw a map as well.

In any case, it completely changed the way I play this kind of game, making these explorations much more immersive. And above all, being able to pick up where I left off months after the last save without being completely lost.

From my text file progression:
// >south
// Mirror Room
// You are in a large square room with tall ceilings. On the south wall is an enormous mirror which fills the entire wall. There are exits on the other three sides on the room.
// >examine mirror
// There is an ugly person staring back at you.

🤣

Tonight I'm going to load an intermediate save and explore various branching paths.. and of course, update my notes.

-- BBS version of the game on End of The Line BBS

I plan to start a game using CPM later, and progress quickly to my last save using my notes. The CPM version with a CRT monitor is fantastic!

#zork #zork1#adventure #adventuregames #textgame #text #story #infocom #game #gaming #videogames #videogaming #MSDOS #DOSGaming #CPM #BBS #ssh #telnet #ansi #crt #retrogaming #retrocomputing #retrocomputers #oldcomputers

Show Original PostReport

Fake Corepack Site Distributes Infostealer and Proxyware to Developers

A fraudulent website impersonating Corepack, the Node.js package manager tool, is distributing malware to developers. The attackers exploit timing around Corepack's removal from Node.js bundling, targeting developers searching for installation instructions. The site offers Windows executables that deliver OpenShield infostealer and proxyware, enrolling victim machines in bandwidth-sharing networks without consent. The payload steals browser credentials, SSH keys, establishes persistence, and routes third-party traffic through compromised systems. An alternative download path delivers adware and trojan components disguised as OperaGX installer. The site features AI-generated content with obvious errors, including confusing Yarn package manager with textile crafts. The domain has been reported to registrars for takedown after community members identified the threat.

Pulse ID: 6a646bc49938f4fb7a0a02f2
Pulse Link: otx.alienvault.com/pulse/6a646
Pulse Author: AlienVault
Created: 2026-07-25 07:54:44

Be advised, this data is unverified and should be considered preliminary. Always do further verification.

#Browser #CyberSecurity #InfoSec #InfoStealer #Mac #Malware #Nodejs #OTX #OpenThreatExchange #Proxy #RAT #SSH #Trojan #Windows #bot #developers #AlienVault

Show Original PostReport

踏み台を何段も超えるときは -J をカンマ区切りで書けます。

ssh -J bastion1,bastion2 target で、多段の踏み台を順に経由して奥へ。config に ProxyJump で書いておけば、コマンド側は短いまま多段接続できます。

#SSH #開発効率化

Show Original PostReport

鍵にはパスフレーズを付けて、ssh-agent に預けています。

パスフレーズ無しの鍵は、漏れたら即アウト。付けたうえで ssh-agent に一度読ませれば、以降は都度入力せずに使える。安全と手間の落としどころが、ここにあります。

#SSH #開発効率化

Show Original PostReport

同じホストへの2回目以降が一瞬になる ControlMaster、地味に効きます。

ControlMaster auto / ControlPath / ControlPersist を設定すると、接続を使い回す。複数セッションを開くときの待ちが消えて、体感がかなり軽くなります。

#SSH #開発効率化

Show Original PostReport

おはようございます。

ssh のフラグ地獄は ~/.ssh/config で終わります。Host myserver に HostName/User/Port を書いておけば、ssh myserver だけで繋がる。ホストごとに設定を持てるので、毎回長いコマンドを打つ必要がなくなります。

#SSH #開発効率化

Show Original PostReport

Synology DSM 7 SSH Commands

Empty All Recycle Bins synowebapi --exec api=SYNO.Core.RecycleBin method=start Or: synowebapi --exec-fastwebapi api=SYNO.Core.RecycleBin method=start version=1 Clear All Notifications in Web UI (Might not be visible in the Web UI until it refreshes the list of notifications.) synowebapi --exec api=SYNO.Core.DSMNotify method=notify clean=all action=apply runner= If you omit the runner parameter, it will clear the notifications for the user admin.

blog.mbirth.uk/2026/07/24/syno

Show Original PostReport