All Projects → antonscheffer → as_sftp

antonscheffer / as_sftp

Licence: MIT license
A plsql SFTP client package

Programming Languages

PLSQL
303 projects

Labels

Projects that are alternatives of or similar to as sftp

synchly
Automate database backups with customizable recurring schedules.
Stars: ✭ 27 (-22.86%)
Mutual labels:  sftp
raptor
The definitive EasyEngine installer with fully functional backup-restore and SFTP functionalities included
Stars: ✭ 26 (-25.71%)
Mutual labels:  sftp
chicon-rs
A file abstraction system for Rust
Stars: ✭ 55 (+57.14%)
Mutual labels:  sftp
proftpd-mod proxy
FTP proxy support for ProFTPD
Stars: ✭ 35 (+0%)
Mutual labels:  sftp
Bash-Backup-Script
A small script to upload backup tar to an external storage service
Stars: ✭ 21 (-40%)
Mutual labels:  sftp
pluGET
📦 Powerful Package manager which updates plugins & server software for minecraft servers
Stars: ✭ 87 (+148.57%)
Mutual labels:  sftp
Transferetto
Small PowerShell module with FTPS/SFTP functionality
Stars: ✭ 33 (-5.71%)
Mutual labels:  sftp
ssh
golang ssh lib simple for use
Stars: ✭ 15 (-57.14%)
Mutual labels:  sftp
grafana-csv-plugin
CSV datasource for Grafana 6.x.x / 7.x.x
Stars: ✭ 33 (-5.71%)
Mutual labels:  sftp
AndroidSSH
Simple SSH and SFTP client for Android
Stars: ✭ 95 (+171.43%)
Mutual labels:  sftp
autoscreen
Automated screen capture utility
Stars: ✭ 76 (+117.14%)
Mutual labels:  sftp
terraform-aws-sftp
This terraform module is used to create sftp on AWS for S3.
Stars: ✭ 20 (-42.86%)
Mutual labels:  sftp
ansible-sftp
SFTP server role for Ansible
Stars: ✭ 108 (+208.57%)
Mutual labels:  sftp
ssh-web-console
Connect to your linux machine via ssh in your browser.
Stars: ✭ 198 (+465.71%)
Mutual labels:  sftp
dartssh2
SSH and SFTP client written in pure Dart, aiming to be feature-rich as well as easy to use.
Stars: ✭ 63 (+80%)
Mutual labels:  sftp
ssgo
A SSH-based command line tool for operating remote hosts.
Stars: ✭ 32 (-8.57%)
Mutual labels:  sftp
Remote-File-Manager
Server Based GUI File Manager
Stars: ✭ 55 (+57.14%)
Mutual labels:  sftp
acid-store
A library for secure, deduplicated, transactional, and verifiable data storage
Stars: ✭ 48 (+37.14%)
Mutual labels:  sftp
pro.webssh.net
iOS / iPadOS / macOS SSH Client
Stars: ✭ 108 (+208.57%)
Mutual labels:  sftp
sftp-gateway
This repository contains a docker image configured to use the SSH File Transfer Protocol (SFTP) to transfer all its files to Cloud Blob Storage Services. This image can be deployed on a Kubernetes cluster with Helm.
Stars: ✭ 18 (-48.57%)
Mutual labels:  sftp

as_sftp

A plsql SFTP client package

Requirements:
grant execute on utl_tcp to <user>
grant execute on dbms_crypto to <user>

ACL to reach the SFTP-server
Depending on your database version

  • 12.1 or higher
begin  
  dbms_network_acl_admin.append_host_ace  
    ( host       => 'localhost' -- name/ip-adress of SFTP-server   
    , lower_port => 22          -- this is the default port used for SFTP, change or extend range if needed  
    , upper_port => 22  
    , ace        => xs$ace_type( privilege_list => xs$name_list('connect')  
                               , principal_name => 'HR' -- use your Oracle user  
                               , principal_type => xs_acl.ptype_db  
                               )  
   );  
  commit;  
end;
  • 11.2
begin  
  dbms_network_acl_admin.create_acl  
    ( acl          => 'as_sftp.xml'  
    , description  => 'Allow connections using UTL_TCP'  
    , principal    => 'HR'  -- use your Oracle user  
    , is_grant     => true  
    , privilege    => 'connect'  
    );  
  dbms_network_acl_admin.add_privilege  
    ( acl         => 'as_sftp.xml'  
    , principal    => 'HR'  -- use your Oracle user  
    , is_grant    => true  
    , privilege   => 'connect'  
    );  
  dbms_network_acl_admin.assign_acl  
    ( acl         => 'as_sftp.xml'  
    , host        => 'localhost' -- name/ip-adress of SFTP-server   
    , lower_port => 22          -- this is the default port used for SFTP, change or extend range if needed  
    , upper_port  => 22  
    );  
  commit;  
end;
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].