Linux node5458.myfcloud.com 6.10.2-x86_64-linode165 #1 SMP PREEMPT_DYNAMIC Tue Jul 30 15:03:21 EDT 2024 x86_64
Apache
: 45.79.123.194 | : 3.12.154.150
16 Domain
7.4.33
addify5
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
cyrus-sasl-devel-2.1.26 /
[ HOME SHELL ]
Name
Size
Permission
Action
draft-burdis-cat-srp-sasl-xx.t...
89.7
KB
-rw-r--r--
draft-ietf-sasl-anon-xx.txt
17.24
KB
-rw-r--r--
draft-ietf-sasl-crammd5-xx.txt
14.75
KB
-rw-r--r--
draft-ietf-sasl-gssapi-xx.txt
22.19
KB
-rw-r--r--
draft-ietf-sasl-plain-xx.txt
16.94
KB
-rw-r--r--
draft-ietf-sasl-rfc2222bis-xx....
47.13
KB
-rw-r--r--
draft-ietf-sasl-rfc2831bis-xx....
74.72
KB
-rw-r--r--
draft-ietf-sasl-saslprep-xx.tx...
11.2
KB
-rw-r--r--
draft-murchison-sasl-login-xx....
11.66
KB
-rw-r--r--
draft-newman-sasl-c-api-xx.txt
52.63
KB
-rw-r--r--
draft-newman-sasl-passdss-xx.t...
41.55
KB
-rw-r--r--
rfc1321.txt
34.4
KB
-rw-r--r--
rfc1939.txt
45.92
KB
-rw-r--r--
rfc2104.txt
21.77
KB
-rw-r--r--
rfc2195.txt
10.22
KB
-rw-r--r--
rfc2222.txt
34.19
KB
-rw-r--r--
rfc2243.txt
19.27
KB
-rw-r--r--
rfc2245.txt
9.74
KB
-rw-r--r--
rfc2289.txt
55.17
KB
-rw-r--r--
rfc2444.txt
13.09
KB
-rw-r--r--
rfc2595.txt
31.68
KB
-rw-r--r--
rfc2831.txt
56.76
KB
-rw-r--r--
rfc2945.txt
17.42
KB
-rw-r--r--
rfc3174.txt
34.69
KB
-rw-r--r--
testing.txt
3.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : testing.txt
** This document is mainly useful for people doing libsasl development or users having a lot of difficulty getting libsasl to work. Testing the CMU SASL Library with the included sample applications ################################################################## The CMU SASL library comes with two small sample programs: sample-client and sample-server. Each of these programs dump base-64 SASL iterations to STDOUT, and read the next iteration from STDIN. Lines preceded by "C: " are from the client, and from "S: " are from the server. This makes it fairly straightforward to test mechanisms; simply run the sample-client on the "client" machine, and sample-server on the "server" machine. Both programs take a -m MECH command line argument; this can be used to force the mechanism used in the exchange. KERBEROS_V4 requires that the IP addresses of both client and server be set, along with the service name, and the server's fully-qualified hostname; these are done through more command line arguments. Example: Here's the client side of an exchange. The mechanism selection code chooses KERBEROS_V4; negotiation takes place, and the client is authenticated. This is being run on the machine SPOOKY.ANDREW.CMU.EDU (128.2.121.162), pretending to be talking to an "rcmd" service running on port 23 (note the semicolons in the IP address. There is a strong chance these will need to be escaped for proper interpretation by the shell): > ./sample-client -i local=128.2.121.162;23,remote=128.2.121.162;23 -s rcmd -n SPOOKY.ANDREW.CMU.EDU Waiting for mechanism list from server... S: UExBSU4gQU5PTllNT1VTIEtFUkJFUk9TX1Y0IERJR0VTVC1NRDUgQ1JBTS1NRDUgAAAAAED5EEA= Choosing best mechanism from: PLAIN ANONYMOUS KERBEROS_V4 DIGEST-MD5 CRAM-MD5 Using mechanism KERBEROS_V4 Preparing initial. Sending initial response... C: S0VSQkVST1NfVjQA Waiting for server reply... S: hVQFjA== Sending response... C: BAYCQU5EUkVXLkNNVS5FRFUAOCDnIsZLQRdjLHXvzPNgpURYVj1iMqBIcTRaMpEQ8vWeYnfB+mTCVEa2URpkVgpzS1161MAX7ERzFV/EfGKlrAhGJCdN56mQ3eL2PzJlK7Z9ctKv4gKErcmV Waiting for server reply... S: BgcvFb63CLs= Sending response... C: ohBT+Jqab9zmDzclN7GSTw== Negotiation complete > Here's the server side of the same dialog: > ./sample-server -s rcmd -i local=128.2.121.162;23,remote=128.2.121.162;23 Generating client mechanism list... Sending list of 5 mechanism(s) S: UExBSU4gQU5PTllNT1VTIEtFUkJFUk9TX1Y0IERJR0VTVC1NRDUgQ1JBTS1NRDUgAAAAAED5EEA= Waiting for client mechanism... C: S0VSQkVST1NfVjQA Sending response... S: hVQFjA== Waiting for client reply... C: BAYCQU5EUkVXLkNNVS5FRFUAOCDnIsZLQRdjLHXvzPNgpURYVj1iMqBIcTRaMpEQ8vWeYnfB+mTCVEa2URpkVgpzS1161MAX7ERzFV/EfGKlrAhGJCdN56mQ3eL2PzJlK7Z9ctKv4gKErcmV Sending response... S: BgcvFb63CLs= Waiting for client reply... C: ohBT+Jqab9zmDzclN7GSTw== Negotiation complete Username: rob Realm: ANDREW.CMU.EDU SSF: 56 > Running the Testsuite application ################################# The Testsuite application in the utils directory trys out all the functionality of libsasl against itself. When you run the application it displays some requirments for running, such as being able to read and write to the sasldb file. If this program is set up correctly and still fails we'd like to hear about it at cyrus-bugs@andrew.cmu.edu.
Close