Descan SFTP


 
Thread Tools Search this Thread
Special Forums Cybersecurity Descan SFTP
# 1  
Old 09-10-2016
Descan SFTP

I was asked to change the run.sh script to add 2 properties:
Code:
“-DMH2.IB.DE.AUTO.START=false”
“-D JMSListener.Q.DECHECK.IMG.start=false”

what does adding this two properties do?

Last edited by vbe; 09-29-2016 at 04:38 PM.. Reason: reverted to original
# 2  
Old 09-12-2016
Where/what is run.sh and what has this to do with SFTP? This looks more like some java code to me.


Robin
# 3  
Old 09-12-2016
yes.. it's looks like parameters passed for your java application

Code:
-Dproperty=value
Set a system property value. If value is a string that contains spaces, you must enclose the string in double quotes:
        java -Dfoo="some string" SomeClass

java - the Java application launcher
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Needed SFTP script from windows to UNIX server and from UNIX to windows server(reverse SFTP)

hi guys, i need a script to sftp the file from windows to unix server ....(before that i have to check whether the file exists in the windows server or not and again i have to reverse sftp the files from unix to windows server..... regards, Vasa Saikumar. (13 Replies)
Discussion started by: hemanthsaikumar
13 Replies

2. Shell Programming and Scripting

Sftp : not able to print the echo statements after the sftp transfer

I had the below sftp script working perfectly but the problem is I am not able to send the echo statements . #!/bin/sh echo "Starting to sftp..." sftp admin@myip << END_SCRIPT cd /remotepath/ lcd /localpath/ mget myfiles*.csv bye END_SCRIPT echo "Sftp successfully." echo echo... (11 Replies)
Discussion started by: scriptscript
11 Replies

3. Red Hat

Chroot sftp users, remote sftp login shows wrong timestamp on files

Hello, I have a weird issue, I have RHEL 5.7 running with openssh5.2 where sftpgroup OS group is chroot. I see the difference difference in timestamp on files, when I login via ssh and SFTP, I see four hour difference, is something missing in my configuration. #pwd... (8 Replies)
Discussion started by: bobby320
8 Replies

4. Shell Programming and Scripting

SFTP

How to use SFTP to get the files on unix server from anoter unix server without sending the password. This is below script wrote ------------------------------------ #!/bin/ksh #!/usr/local/bin/expect sftp -oPort=<PORt_number> <Ipaddress> <<EOF expect "password:" send <password> cd... (2 Replies)
Discussion started by: ripudaman.singh
2 Replies

5. Shell Programming and Scripting

SFTP-how to log individual sftp command error while executing shell script

Hi, I have situation where i need to automate transferring 10000+ files using sftp. while read line do if ; then echo "-mput /home/student/Desktop/folder/$line/* /cygdrive/e/folder/$line/">>sftpCommand.txt fi done< files.txt sftp -b sftpCommand.txt stu@192.168.2.1 The above... (1 Reply)
Discussion started by: noobrobot
1 Replies

6. UNIX for Dummies Questions & Answers

SFTP help please

Hi, I have been using the ftp command "nlist . localfile.txt" in my batch scripts to bring back a listing of the remote directory and add it to localfile.txt I now need to do an sftp batch script. I can't find any way of bringing back a list of remote files and adding it to a local file. Does... (5 Replies)
Discussion started by: Bab00shka
5 Replies

7. Shell Programming and Scripting

sftp

I am trying to find a test secure ftp (sftp) site that my script can login and download files automatically. I like to test my Expert script with a test sftp site only. By the way, anyone has a script that works?. (2 Replies)
Discussion started by: ZG9
2 Replies

8. AIX

SFTP Failed---Request for subsystem 'sftp' failed on channel 0

Hi, While I am trying SFTP my machine to another unix machine , it was working fine till 10 min back. But now i am getting the below error "Request for subsystem 'sftp' failed on channel 0" Could you please someone help me to solve or analyise the root cause... Cheers:b:, Mahiban (0 Replies)
Discussion started by: mahiban
0 Replies

9. Solaris

sftp

hi sftp is not working: -bash-3.00# sftp zeus Connecting to zeus... /etc/ssh/ssh_config: line 32: Bad configuration option: PermitRootLogin /etc/ssh/ssh_config: line 33: Bad configuration option: Subsystem /etc/ssh/ssh_config: terminating, 2 bad configuration options Connection closed ... (1 Reply)
Discussion started by: melanie_pfefer
1 Replies

10. OS X (Apple)

sftp

can anyone suggest somewhere i might learn how to set up sftp and ssh on os x tiger? I dont find any literature on it other then suggestions of thirdparty programs to do this for you.:confused: (3 Replies)
Discussion started by: RahJiggah
3 Replies
Login or Register to Ask a Question