Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Objective-C Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Objective-C) Using sudo in an SSH Shell Session

Demonstrates how to run a command as sudo in a shell session.

Note: This example requires Chilkat v9.5.0.65 or greater.

Chilkat Objective-C Library Downloads

MAC OS X (Cocoa) Libs

iOS Libs

#import <CkoSsh.h>
#import <CkoStringBuilder.h>

// This example assumes Chilkat SSH/SFTP to have been previously unlocked.
// See Unlock SSH for sample code.

CkoSsh *ssh = [[CkoSsh alloc] init];

int port = 22;
BOOL success = [ssh Connect: @"the-ssh-server.com" port: [NSNumber numberWithInt: port]];
if (success != YES) {
    NSLog(@"%@",ssh.LastErrorText);
    return;
}

// Authenticate using login/password:
success = [ssh AuthenticatePw: @"theSshLogin" password: @"theSshPassword"];
if (success != YES) {
    NSLog(@"%@",ssh.LastErrorText);
    return;
}

// Start a shell session.
// (The QuickShell method was added in Chilkat v9.5.0.65)
int channelNum = [[ssh QuickShell] intValue];
if (channelNum < 0) {
    NSLog(@"%@",ssh.LastErrorText);
    return;
}

// Construct a StringBuilder with our command ("ls") run with "sudo"
// Note: The line-endings are potentially important.  Some SSH servers may
// require either LF or CRLF line endings.  (Unix/Linux/OSX servers typically
// use bare-LF line endings.  Windows servers likely use CRLF line endings.)

// Using "sudo -S" causes the sudo prompt to be written to stderr,
// and the password is read from stdin (i.e. from the echo command ouput).
// The sudo commands -p option allows us to set the prompt, and we can set it to
// the empty string, thus eliminating the prompt from the stderr completely.
// This allows us to run the command as root (super-user) with no prompt.
CkoStringBuilder *sbCommands = [[CkoStringBuilder alloc] init];
[sbCommands Append: @"echo \"theSshPassword\" | sudo -S -p \"\" ls\n"];

// Add another command to echo a marker string that
// we'll use in ChannelReceiveUntilMatch below.
// The use of single quotes around 'IS' is a trick so that the output
// of the command is "THIS IS THE END OF THE SCRIPT", but the terminal echo
// includes the single quotes.  This allows us to read until we see the actual
// output of the last command.
[sbCommands Append: @"echo THIS 'IS' THE END OF THE SCRIPT\n"];

// Send the commands..
success = [ssh ChannelSendString: [NSNumber numberWithInt: channelNum] strData: [sbCommands GetAsString] charset: @"ansi"];
if (success != YES) {
    NSLog(@"%@",ssh.LastErrorText);
    return;
}

// Send an EOF to indicate no more commands will be sent.
// For brevity, we're not checking the return values of each method call.
// Your code should check the success/failure of each call.
success = [ssh ChannelSendEof: [NSNumber numberWithInt: channelNum]];

// Receive output up to our marker.
success = [ssh ChannelReceiveUntilMatch: [NSNumber numberWithInt: channelNum] matchPattern: @"THIS IS THE END OF THE SCRIPT" charset: @"ansi" caseSensitive: YES];

// Close the channel.
// It is important to close the channel only after receiving the desired output.
success = [ssh ChannelSendClose: [NSNumber numberWithInt: channelNum]];

// Get any remaining output..
success = [ssh ChannelReceiveToClose: [NSNumber numberWithInt: channelNum]];

// Get the complete output for all the commands in the session.
NSLog(@"%@",@"--- output ----");
NSLog(@"%@",[ssh GetReceivedText: [NSNumber numberWithInt: channelNum] charset: @"ansi"]);
 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.