Thursday, October 21, 2021

JAVA security for SQL SERVER 2005

 In my case i had a sql server using the 3DES_EDE_CBC algorithm, this is disabled by default on jdk 1.8 , so checking the

/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/jre/lib/security/java.security

And eliminating the algorithm from:

jdk.tls.disabledAlgorithms=                                                                                                                                 SSLv3, RC4, DES, MD5withRSA, DH keySize < 1024, \ EC keySize < 224, 3DES_EDE_CBC, anon, NULL

Worked for me.



Change to

jdk.tls.disabledAlgorithms=

                   SSLv3, RC4, DES, MD5withRSA, DH keySize < 1024, \ EC keySize < 224, anon, NULL


Monday, October 4, 2021

Easy free ftpserver windows for tranfer file between vm to host

#for download software

https://www.sentex.ca/~mwandel/ftpdmin/

#example for run FTP server

ftpdmin.exe c:\me

#command upload

busybox ftpput 192.168.0.86 block.txt

#command download

busybox ftpget 192.168.0.86 block.txt