Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
github.com/onbings/ftpsclient
Another Ftp client package for the go language with secure support.
Package FtpsClient implements a basic ftp(s) client which can be used to connect
an application to a ftp server. Only a small subset of the full FTP/FTPS specification
is supported
It is based on the work made by:
- jlaffaye github.com/jlaffaye/ftp
- smallfish github.com/smallfish/ftp
- Marco Beierer github.com/webguerilla/ftps
And has some other feature such as:
- Refactored with onbings coding covention
- Add secure/unsecure mode
- Add timeout support
- Add rx and tx buffer sizing support
- Add generic Ftp control send command function (SendFtpCtrlCommand) to be able to send SITE,
NOOP,... ftp command)
- Fix a number of problems in LIST command parsing
go get github.com/onbings/ftpsclient
package main
import (
"fmt"
"log"
"github.com/onbings/ftpsclient"
)
func main() {
var FtpsClientParam_X ftpsclient.FtpsClientParam
FtpsClientParam_X.Id_U32 = 123
FtpsClientParam_X.LoginName_S = "mc"
FtpsClientParam_X.LoginPassword_S = "a"
FtpsClientParam_X.InitialDirectory_S = "/Seq"
FtpsClientParam_X.SecureFtp_B = false
FtpsClientParam_X.TargetHost_S = "127.0.0.1"
FtpsClientParam_X.TargetPort_U16 = 21
FtpsClientParam_X.Debug_B = false
FtpsClientParam_X.TlsConfig_X.InsecureSkipVerify = true
FtpsClientParam_X.ConnectTimeout_S64 = 2000
FtpsClientParam_X.CtrlTimeout_S64 = 1000
FtpsClientParam_X.DataTimeout_S64 = 5000
FtpsClientParam_X.CtrlReadBufferSize_U32 = 0
FtpsClientParam_X.CtrlWriteBufferSize_U32 = 0
FtpsClientParam_X.DataReadBufferSize_U32 = 0x100000
FtpsClientParam_X.DataWriteBufferSize_U32 = 0x100000
FtpsClientPtr_X := ftpsclient.NewFtpsClient(&FtpsClientParam_X)
if FtpsClientPtr_X != nil {
Err := FtpsClientPtr_X.Connect()
if Err == nil {
DirEntryArray_X, Err := FtpsClientPtr_X.List()
if Err == nil {
for _, DirEntry_X := range DirEntryArray_X {
fmt.Printf("(%d): %s.%s %d bytes %s\n", DirEntry_X.Type_E, DirEntry_X.Name_S, DirEntry_X.Ext_S, DirEntry_X.Size_U64, DirEntry_X.Time_X)
}
ReplyCode_i, ReplyMessage_S, Err := FtpsClientPtr_X.SendFtpCtrlCommand("FEAT", 211)
fmt.Printf("feat %d %s\n", ReplyCode_i, ReplyMessage_S)
Err = FtpsClientPtr_X.Disconnect()
}
}
}
}
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.