Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
6ea3f921
Commit
6ea3f921
authored
Jun 21, 1995
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added notes about security
parent
54175f7c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
Demo/pdist/README
Demo/pdist/README
+16
-0
No files found.
Demo/pdist/README
View file @
6ea3f921
Filesystem, RCS and CVS client and server classes
=================================================
*** See the security warning at the end of this file! ***
This directory contains various modules and classes that support
remote file system operations.
...
...
@@ -23,6 +25,8 @@ RCSProxy.py RCS interface classes
client.py Client class
server.py Server class
security.py Security mix-in class (not very secure I think)
cmdfw.py CommandFrameWork class
(used by rcvs, should be used by rrcs as well)
...
...
@@ -82,3 +86,15 @@ instantiate a client.
The modules client and server should probably be renamed to Client and
Server in order to match the class names.
*** Security warning: this version requires that you have a file
$HOME/.python_keyfile at the server and client side containing two comma-
separated numbers. The security system at the moment makes no guarantees
of actuallng being secure -- however it requires that the key file
exists and contains the same numbers at both ends for this to work.
(You can specify an alternative keyfile in $PYTHON_KEYFILE).
Have a look at the Security class in security.py for details;
basically, if the key file contains (x, y), then the security server
class chooses a random number z (the challenge) in the range 10..100000
and the client must be able to produce pow(z, x, y) (i.e. z**x mod y).
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment