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.60
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
#!/opt/alt/python27/bin/python # -*- python -*- # # guido's version, from rcsbump,v 1.2 1995/06/22 21:27:27 bwarsaw Exp # # Python script for bumping up an RCS major revision number. import sys import re import rcslib import string WITHLOCK = 1 majorrev_re = re.compile('^[0-9]+') dir = rcslib.RCS() if sys.argv[1:]: files = sys.argv[1:] else: files = dir.listfiles() for file in files: # get the major revnumber of the file headbranch = dir.info(file)['head'] majorrev_re.match(headbranch) majorrev = string.atoi(majorrev_re.group(0)) + 1 if not dir.islocked(file): dir.checkout(file, WITHLOCK) msg = "Bumping major revision number (to %d)" % majorrev dir.checkin((file, "%s.0" % majorrev), msg, "-f")