SFTP? Can someone explain how this works??

scm160

Board Regular
Joined
Mar 4, 2016
Messages
97
Hi Guys,

Can someone explain how this code works??? I'm in the process of reverse engineering code for a project I'm working on. Some of the proprietary links/users have been deliberately changed:).

Just need to understand what's going on here and why exactly a user would use File Transfer Protocol. There's more procedures to this module but I took out a snippet just for starters.

Code:
Public Sub SFTPGet(fname As String)
    Const cstrSftp As String = """mylink.com/pscp.exe"""
    Dim strCommand As String
    Dim pUser As String
    Dim pKey As String
    Dim pHost As String
    Dim pFile As String
    Dim pLocalPath As String

    pUser = "user1"
    pKey = """" & BILLING_FOLDER & "some_private.ppk"""
    pFile = "someplace/data" & fname
    pLocalPath = """" & sInputFileFolder & "."""

    strCommand = cstrSftp & " -sftp -l " & pUser & " -i " & pKey & " " & pFile & " " & pLocalPath

    Shell strCommand
End Sub
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
basically if you look at StrCommand you can see each element from above, being assembled together with the & sign, and then the string is used in the shell command so (roughly)
strCommand = cstrSftp & " -sftp -l " & pUser & " -i " & pKey & " " & pFile & " " & pLocalPath
strCommand = mylink.com/pscp.exe -sftp -l user1 -i " BILLING_FOLDER & "some_private.ppk someplace/data fname sInputFileFolder
 
Upvote 0

Forum statistics

Threads
1,215,564
Messages
6,125,575
Members
449,237
Latest member
Chase S

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top