Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.37
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python27 /
lib64 /
python2.7 /
Demo /
pdist /
Delete
Unzip
Name
Size
Permission
Date
Action
FSProxy.py
7.64
KB
-rwxr-xr-x
2025-01-08 14:12
RCSProxy.py
4.62
KB
-rwxr-xr-x
2025-01-08 14:12
README
4.16
KB
-rwxr-xr-x
2025-01-08 14:12
client.py
4.6
KB
-rwxr-xr-x
2025-01-08 14:12
cmdfw.py
4.53
KB
-rwxr-xr-x
2025-01-08 14:12
cmptree.py
5.64
KB
-rwxr-xr-x
2025-01-08 14:12
cvslib.py
9.94
KB
-rwxr-xr-x
2025-01-08 14:12
cvslock.py
6.61
KB
-rwxr-xr-x
2025-01-08 14:12
mac.py
352
B
-rwxr-xr-x
2025-01-08 14:12
makechangelog.py
2.93
KB
-rwxr-xr-x
2025-01-08 14:12
rcsbump
754
B
-rwxr-xr-x
2025-01-08 14:12
rcsclient.py
1.76
KB
-rwxr-xr-x
2025-01-08 14:12
rcslib.py
10.08
KB
-rwxr-xr-x
2025-01-08 14:12
rcvs
126
B
-rwxr-xr-x
2025-01-08 14:12
rcvs.py
13.33
KB
-rwxr-xr-x
2025-01-08 14:12
rrcs
126
B
-rwxr-xr-x
2025-01-08 14:12
rrcs.py
3.91
KB
-rwxr-xr-x
2025-01-08 14:12
security.py
1.07
KB
-rwxr-xr-x
2025-01-08 14:12
server.py
4.47
KB
-rwxr-xr-x
2025-01-08 14:12
sumtree.py
518
B
-rwxr-xr-x
2025-01-08 14:12
Save
Rename
"""Customize this file to change the default client etc. (In general, it is probably be better to make local operation the default and to require something like an RCSSERVER environment variable to enable remote operation.) """ import string import os # These defaults don't belong here -- they should be taken from the # environment or from a hidden file in the current directory HOST = 'voorn.cwi.nl' PORT = 4127 VERBOSE = 1 LOCAL = 0 import client class RCSProxyClient(client.SecureClient): def __init__(self, address, verbose = client.VERBOSE): client.SecureClient.__init__(self, address, verbose) def openrcsclient(opts = []): "open an RCSProxy client based on a list of options returned by getopt" import RCSProxy host = HOST port = PORT verbose = VERBOSE local = LOCAL directory = None for o, a in opts: if o == '-h': host = a if ':' in host: i = string.find(host, ':') host, p = host[:i], host[i+1:] if p: port = string.atoi(p) if o == '-p': port = string.atoi(a) if o == '-d': directory = a if o == '-v': verbose = verbose + 1 if o == '-q': verbose = 0 if o == '-L': local = 1 if local: import RCSProxy x = RCSProxy.RCSProxyLocal() else: address = (host, port) x = RCSProxyClient(address, verbose) if not directory: try: directory = open(os.path.join("CVS", "Repository")).readline() except IOError: pass else: if directory[-1] == '\n': directory = directory[:-1] if directory: x.cd(directory) return x