__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# -*- test-case-name: twisted.test.test_twistd -*-
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
import os
import sys
from twisted import copyright
from twisted.application import app, internet, service
from twisted.python import log
class ServerOptions(app.ServerOptions):
synopsis = "Usage: twistd [options]"
optFlags = [
["nodaemon", "n", "(for backwards compatibility)."],
]
def opt_version(self):
"""
Print version information and exit.
"""
print(
f"twistd (the Twisted Windows runner) {copyright.version}",
file=self.stdout,
)
print(copyright.copyright, file=self.stdout)
sys.exit()
class WindowsApplicationRunner(app.ApplicationRunner):
"""
An ApplicationRunner which avoids unix-specific things. No
forking, no PID files, no privileges.
"""
def preApplication(self):
"""
Do pre-application-creation setup.
"""
self.oldstdout = sys.stdout
self.oldstderr = sys.stderr
os.chdir(self.config["rundir"])
def postApplication(self):
"""
Start the application and run the reactor.
"""
service.IService(self.application).privilegedStartService()
app.startApplication(self.application, not self.config["no_save"])
app.startApplication(internet.TimerService(0.1, lambda: None), 0)
self.startReactor(None, self.oldstdout, self.oldstderr)
log.msg("Server Shut Down.")
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| newsfragments | Folder | 0755 |
|
|
| test | Folder | 0755 |
|
|
| __init__.py | File | 261 B | 0644 |
|
| _twistd_unix.py | File | 15.65 KB | 0644 |
|
| _twistw.py | File | 1.5 KB | 0644 |
|
| htmlizer.py | File | 1.78 KB | 0644 |
|
| trial.py | File | 20.63 KB | 0644 |
|
| twistd.py | File | 877 B | 0644 |
|