Skip to content

Instantly share code, notes, and snippets.

View assertivist's full-sized avatar

andy assertivist

View GitHub Profile
@assertivist
assertivist / SFTP Client.js
Created May 24, 2018 20:24 — forked from paulsena/SFTP Client.js
ServiceNow SFTP / SSH Javascript Client
var Sftp = Class.create();
Sftp.prototype = {
initialize: function() {
gs.print("Setting up SSH client.");
this.dataSourceID = '';
this.hostname = '';
this.port = 22;
this.username = '';
this.password = '';