Tagged Questions
1
vote
0answers
21 views
Encrypt in SQLServer 2005, Decrypt from Java
I'm trying to find a way to encrypt a column in SQLServer 2005, with an algorithm easily decryptable from Java.
From this:
http://msdn.microsoft.com/en-us/library/ms190357.aspx I see Encryption by ...
1
vote
0answers
19 views
Selenium WebDriver for Java Applet based websites
I have a website which uses a Java applet. I am trying to automate it using Cucumber & Selenium WebDriver. However, every time I run the website in browser, I get a java security alert (see ...
0
votes
0answers
39 views
What to prefer for a password algorithm? [closed]
What is a good password algorithm for Java? Any reason not to use bcrypt? I heard that you should use a spec paswword algorithm and not a straight fast hash function since a password algorithm should ...
1
vote
1answer
17 views
Query version info from jsf application
I just stumbled upon a paper on JSF security containing the following statement:
In Suns RI JSF implementation, the
"com.sun.faces.disableVersionTracking"
conguration parameter is defined ...
0
votes
0answers
31 views
keystore getEntry returns null second time
In my request doPost I have the following code.
File file = new File("C:\\temp\\HelloWorld.P12");
is = new FileInputStream(file);
String password = "helloworld";
...
0
votes
0answers
13 views
jarsigner from jdk1.6 prints warning when signing jar. jdk1.4 doesn't
If I use jarsigner from jdk1.6 to sign a jar file, the following warning is printed:
Warning:
The signer certificate has expired.
If I use the same command to sign a jar file, but use jdk1.4 ...
16
votes
1answer
176 views
Is it possible to store secrets on the stack in java?
In Java the old way of storing a secret, such as a password, was to use char[] as you could overwrite its data when you were done with it. However this has since been shown to be insecure as the ...
0
votes
1answer
14 views
requesting a .java.policy file from URL security risk
My client wants to use an applet to do drag and drop file transfers from the browser. We have everything working for the most part, but the .java.policy file granting the applet file system access ...
0
votes
1answer
41 views
Encrypting exchanged data in a RESTful
I have created a Restfull web-service in java that is consumed by an android application. The work is almost done.
Now I feel the need to secure my web-service. I don't want to send a login and ...
0
votes
1answer
33 views
Java Applet is not running in a browser
I am trying to run my applet in a browser, chrome/IE but I get the following message:
Your security settings have blocked a local application from running
Due to Oracle, changing security level in ...
-2
votes
2answers
29 views
Java Generate Unique Surrogate alphanumeric key based on text
I wanted to generate a unique key based on few columns(one of them is the search word....so the length can very long). The volume of records is around 6 million. I have used MD5 and generated a ...
0
votes
1answer
21 views
Java SSL Safety
I have a client-server model that uses SSL on every connection. I have used Java and the common libraries to program this. I have two questions regarding the SSL safety:
1) Is it considered safe to ...
0
votes
0answers
39 views
Secure Java to MySQL database methods for sandbox applets
I'm making a java applet that will be embedded in a browser unsigned. I've successfully allowed my applet to read from a mysql database thanks to DOM xml parsing. How I did this was using php to get ...
-2
votes
0answers
15 views
Best practices to access Intranet services from DMZ [closed]
I'm building an FTP file upload service and requirement is that FTP handler is located in DMZ, but received files should end up on internal storage on Intranet. For that we have second service running ...
5
votes
4answers
146 views
What properties are guaranteed by constructors in Java?
I used to think that, intuitively speaking, a constructor in Java is the thing that makes an object, and that nothing can touch that object until its constructor returns. However, I have been proven ...
1
vote
1answer
30 views
Java: Is this good use of BCrypt?
I would like to know if my current implementation of BCrypt is correct, I am aware that I am not using BCrypt.checkpw() which may lead to an issue so that is the main reason I verify it here.
...
0
votes
1answer
37 views
How to protect .txt files in android from users?
I have an android app which has a .txt file stored in the assets folder and the sd card. I do not want the user to be able to read or edit the contents of the file. How to make sure that no one can ...
1
vote
2answers
55 views
What is the best way to expose only few tables from a database?
We have a database with just query capabilities and access to read/write data. There is another team that OFTEN needs to look at a few tables based on few parameters. We dont(will never) have the ...
0
votes
3answers
34 views
AccessControlException: access denied - FilePermission
I am using JRE7. I have signed the jar file using jarsigner. But still I get the exception
java.security.AccessControlException: access denied ("java.io.FilePermission"
"C:\Program ...
1
vote
2answers
46 views
Protect information in Android
Problem Description
I am writing application for Android. Application must do following:
Connect to the server using following URL:
...
-1
votes
1answer
38 views
Signed applet jar still fails for some commands
I used this code to insert data to my restful web service using restful client application as follow
NewJerseyClient client = new NewJerseyClient();
Prints p = new Prints();
...
0
votes
0answers
24 views
Keytool.exe and jarsigner.exe issues
I have finished a small game in Java and I want to upload it online. I have an HTML file that loads it properly, as well as the code being fine. However, I can't use the function
File file = new ...
0
votes
1answer
28 views
Let the csrf token expire in the user session after 15 minutes or remove it directly?
Today i've added crsf protection in my webapplication.
When a html for is printed i generated random token and put it in a hidden field and in user session.
When form is submitted i read hidden ...
0
votes
4answers
53 views
Secure username and password in Android
Problem Description
I am writing application which must connect to the server and download some data from the server. The URL of the file witch must be downloaded is formatted as follow:
...
0
votes
0answers
53 views
Disadvantages of connecting a Swing application directly to a Database
What are the disadvantages of connecting a Swing application directly to a Database?
I am developing a Java desktop client and have limited experience on the server-side. I'm aware that the 'best ...
0
votes
0answers
31 views
Applet - Both signed and unsigned code warning message only with 1.6.0_45
I'm working with legacy code where the login is performed through an applet (as I've commented it is legacy code ;D). We've been working with several JRE versions (1.6.0_29, 30 and 43) and all have ...
0
votes
1answer
40 views
key exchange algorithm with optional parties
I need to generate a secret key (or password) with agreement of multiple parties out of which some parties are optional.
For example, Mr. A, B, C & D are members who can do agreement and out of ...
1
vote
0answers
34 views
Facebook Realtime API and Access Token persistance
I have an webapp which has a facebook log in and once a user logs in I store the user's access token in my db. I also have subscribed for user feed using realtime api. So when ever user adds a status ...
0
votes
0answers
24 views
Applets, HTTPS and Windows Domain
I'm experiencing a trouble with Applet authentication over HTTPS.
It seems that when I try to log in using Windows authentication account,
like domain \ username, applet will remove the domain and ...
0
votes
0answers
32 views
Secure communication between 2 (or more) computers [closed]
I am looking for some information, how to create private and safe communication between group of computers on home LAN site. For example, in my Java program, I want to send short text information ...
0
votes
1answer
32 views
Bypass Basic authentication to solr from my website with tomcat
I have my website which is in the same server than sorl.
I would like that solr will allow queries just from my website, and not from external ips, of course for security reasons.
So then my webpage ...
1
vote
2answers
69 views
REST authentication - Digital signature?
I am trying to secure my REST API developed using Spring MVC.
On google search I came across this link.
Is this the best approach ? Does it uses Digital Certificates ? Or Digital Certificates used ...
0
votes
0answers
15 views
Extend SSLEngine to add support of TLS Extensions
I am using SSLEngine to provide secured authentication using UDP as transport (RADIUS) protocol. Now Java by default does not support many extensions except Renegotiation Indication Extension ...
1
vote
0answers
33 views
Signed JNLP results in more security dialogs
I have an Eclipse RCP application that is deployed via WebStart. We have not been signing our top level JNLP and as a result launching the client results in the following dialog with the yellow ...
2
votes
1answer
38 views
About Java Access Specifier Binding
In an interview, they asked me:
When Java Access Specifier (Public, Default, Protected, Private) is bind to the Java code? Early Binding or Late Binding??
I said: Early Binding.
Then they said:
We ...
0
votes
1answer
31 views
integrate spring security 3.1 with existing app
I want to integrate spring security in my application.
The users'information is saved in an Oracle DB where the passwords are encoded with md5.
I tried this at first but it didn't work :
<bean ...
0
votes
1answer
37 views
Invoke webservice using HTTPS in Java
My webserice provider provides HTTPS services and I need to consume them. I'm using JAX-WS and invoking the webservice with given HTTPS URL, The response is coming as expected, but when I see the logs ...
5
votes
0answers
145 views
Microsoft ISA Server Authentication in Android
I have an application in Android, in which I were reading files from the remote server, code for reading file is given below;
URI uri = null;
try {
uri = new ...
0
votes
1answer
60 views
Signed applet with valid CA still showing up as unknown publisher
Well, I tried reading pretty much all articles but I haven't found any hint.
After receiving my official certificates from StartSSL I am still unable to launch my applet without UNKNOWN publisher ...
1
vote
0answers
45 views
File.exists() security exception
I'm trying to write an applet for a website that needs access to a system on the LAN, so using a network path (\\THEBOX\DIR\SUBDIR). I'm checking if the directory exists before using it:
try {
...
2
votes
1answer
70 views
New WebStart Behavior with Java 7 Update 21
I’ve been working on this off and on for a couple of weeks and non-stop since yesterday with just a couple of developers. Opening up this discussion to everyone in hopes someone has some ideas.
We ...
1
vote
1answer
31 views
How can I add policy file to the jar applet which is embedded in html file
I have this HTML:
<html>
<title>The Hello, World Applet</title>
<hr>
<applet code=javaapplication4.test.class
archive="JavaApplication4.jar"
width=600 ...
1
vote
1answer
44 views
How to check if “Java is outdated” bar is visible on Google Chrome?
My website has a java applet that must run for complete functionallity. The problem is that some users have an outdated Java version, which makes Chrome show that annoying bar on top along with not ...
0
votes
2answers
67 views
java is insecure message when running some applets
I have Java 1.7 installed. We have a web site with two applets. When one of them is loaded I receive the following dialog. When the other is loaded I don't. Why is it that some applets cause this ...
-1
votes
0answers
29 views
JavaEE 6 Security Frameworks? [closed]
We're big users of JBoss Seam 2.3 in our shop, but are looking to migrate completely over to JavaEE 6 for new development, now that Seam 2.x will not be receiving any more major new functions. One of ...
0
votes
2answers
37 views
java.security.AccessControlException: access denied (“java.awt.AWTPermission” “accessClipboard”)
When I load my applet I get the Exception
java.security.AccessControlException: access denied ("java.awt.AWTPermission" "accessClipboard").
Have googled for couple of hours and have seen the ...
0
votes
1answer
38 views
How to make data from applet secure?
I created a Java applet that will perform some computing on client side and return data to the server. But I'm afraid that client can send me some wrong data.
So my question is: how I can guarantee ...
-1
votes
1answer
26 views
Splitting Packet Data from client to server [closed]
Is it possible to sniff datagram that goes from client to server , get that data and modify that data.If it is possible could please let me know the way to do it.
Please let me the way i can ...
0
votes
0answers
33 views
jnlp file containing a set of signed and unsigned jars
I have a set of jars that I build and signed on the build machine and deploy to our servers.
There is one other jar that is created dynamically on the server itself and I have no way of signing it. ...
0
votes
0answers
49 views
How to make REST API private on Tomcat? [closed]
I have a RESTful API deployed on Tomcat 7. This is supposed to be private since we only have a PHP-based website that uses this API. What is a good way to protect it?
Is restricting access to Tomcat ...






