summaryrefslogtreecommitdiff
path: root/other/ssharp/TODO
diff options
context:
space:
mode:
authorSkyperTHC2026-03-03 06:28:55 +0000
committerSkyperTHC2026-03-03 06:28:55 +0000
commit5d3573ef7a109ee70416fe94db098fe6a769a798 (patch)
treedc2d5b294c9db8ab2db7433511f94e1c4bb8b698 /other/ssharp/TODO
parentc6c59dc73cc4586357f93ab38ecf459e98675cc5 (diff)
packetstorm sync
Diffstat (limited to 'other/ssharp/TODO')
-rw-r--r--other/ssharp/TODO91
1 files changed, 91 insertions, 0 deletions
diff --git a/other/ssharp/TODO b/other/ssharp/TODO
new file mode 100644
index 0000000..bf336c5
--- /dev/null
+++ b/other/ssharp/TODO
@@ -0,0 +1,91 @@
1Programming:
2- Grep for 'XXX' comments and fix
3
4- Link order is incorrect for some systems using Kerberos 4 and AFS. Result
5 is multiple inclusion of DES symbols. Holger Trapp
6 <holger.trapp@hrz.tu-chemnitz.de> reports that changing the configure
7 generated link order from:
8 -lresolv -lkrb -lz -lnsl -lutil -lkafs -lkrb -ldes -lcrypto
9 to:
10 -lresolv -lkrb -lz -lnsl -lutil -lcrypto -lkafs -lkrb -ldes
11 fixing the problem.
12
13- Integrate contrib/mdoc2man.pl so platforms which only have the troff
14 'an' macros can have readable manpages.
15
16- Write a test program that calls stat() to search for EGD/PRNGd socket
17 rather than use the (non-portable) "test -S".
18
19- Replacement for setproctitle() - HP-UX support only currently
20
21- Handle changing passwords for the non-PAM expired password case
22
23- Improve PAM support (a pam_lastlog module will cause sshd to exit)
24 and maybe support alternate forms of authenications like OPIE via
25 pam?
26
27- Rework PAM ChallengeResponseAuthentication
28 - Use kbdint request packet with 0 prompts for informational messages
29 - Use different PAM service name for kbdint vs regular auth (suggest from
30 Solar Designer)
31 - Ability to select which ChallengeResponseAuthentications may be used
32 and order to try them in e.g. "ChallengeResponseAuthentication skey, pam"
33
34- Complete Tru64 SIA support
35
36- Finish integrating kernel-level auditing code for IRIX and SOLARIS
37 (Gilbert.r.loomis@saic.com)
38
39- sftp-server: Rework to step down to 32bit ints if the platform
40 lacks 'long long' == 64bit (Notable SCO w/ SCO compiler)
41
42- Linux hangs for 20 seconds when you do "sleep 20&exit". All current
43 solutions break scp or leaves processes hanging around after the ssh
44 connection has ended. It seems to be linked to two things. One
45 select() under Linux is not as nice as others, and two the children
46 of the shell are not killed on exiting the shell. Redhat have an excellent
47 description of this in their RPM package.
48
49- Build an automated test suite
50
51- Verify that It's safe to enable NGROUPS_MAX under NeXTStep for
52 groupaccess features. (mouring@eviladmin.org)
53
54- 64-bit builds on HP-UX 11.X (stevesk@pobox.com):
55 - utmp/wtmp get corrupted (something in loginrec?)
56 - no 64-bit vhangup(); ptmx systems shouldn't need this
57 - can't build with PAM (no 64-bit libpam yet)
58
59Documentation:
60- More and better
61
62- Install FAQ?
63
64- General FAQ on S/Key, TIS, RSA, RSA2, DSA, etc and suggestions on when it
65 would be best to use them.
66
67- Create a Documentation/ directory?
68
69Clean up configure/makefiles:
70- Clean up configure.in - There are a few double #defined variables
71 left to do. HAVE_LOGIN is one of them. Consider NOT looking for
72 information in wtmpx or utmpx or any of that stuff if it's not detected
73 from the start
74
75- Fails to compile when cross compile.
76 (vinschen@redhat.com)
77
78- Replace the whole u_intXX_t evilness in acconfig.h with something better???
79
80- Consider splitting the u_intXX_t test for sys/bitype.h into seperate test
81 to allow people to (right/wrongfully) link against Bind directly.
82
83Packaging:
84- Solaris: Update packaging scripts and build new sysv startup scripts
85 Ideally the package metadata should be generated by autoconf.
86 (gilbert.r.loomis@saic.com)
87
88- HP-UX: Provide DEPOT package scripts.
89 (gilbert.r.loomis@saic.com)
90
91$Id: TODO,v 1.1.1.1 2001/09/19 14:44:59 stealth Exp $