- Run a container
docker run [OPTIONS] IMAGE [COMMAND]
# Example: Run nginx in detached mode with port mapping
docker run -d -p 80:80 nginx
// manifest.json | |
{ | |
"name": "Local Agent Connector", | |
"version": "1.0", | |
"manifest_version": 3, | |
"permissions": [ | |
"nativeMessaging", | |
"tabs" | |
], | |
"background": { |
// DriveByProtector.js | |
class DriveByProtector { | |
constructor() { | |
this.suspiciousPatterns = { | |
fileTypes: /\.(exe|msi|dmg|pkg|deb|bat|cmd|sh|ps1|vbs|jar|dll|scr)$/i, | |
mimeTypes: [ | |
'application/x-msdownload', | |
'application/x-msdos-program', | |
'application/x-executable', | |
'application/x-dosexec', |
// manifest.json | |
{ | |
"manifest_version": 3, | |
"name": "Redirect Detective", | |
"version": "1.0", | |
"description": "Detects and analyzes potentially malicious redirects", | |
"permissions": [ | |
"webNavigation", | |
"webRequest", | |
"storage", |
// 1. Basic interfaces and implementations | |
interface ILogger { | |
log(message: string): void; | |
} | |
interface IEmailSender { | |
send(to: string, message: string): void; | |
} | |
class ConsoleLogger implements ILogger { |
// 1. Interfaces for our dependencies | |
interface ILogger { | |
log(message: string): void; | |
} | |
interface IEmailService { | |
sendEmail(to: string, subject: string, content: string): Promise<boolean>; | |
} | |
interface IUserRepository { |
Create a basic cross-platform command execution application that can be installed on Windows and macOS, capable of executing simple system commands and returning their results.