Tagged Questions
9
votes
1answer
168 views
Java/Tomcat hacked [closed]
I have had a few files show up on my tomcat server lately that are obviously hacker attempts. I support an older application that uses struts and ibatis along with various other fameworks. Three files ...
-2
votes
1answer
55 views
What are unique information avaiable in computer [closed]
In general every one know unique items is MAC (Physical Address), but i saw some software which change computer physical address.
Our products are used by N number of customers, now i want to know ...
1
vote
0answers
32 views
Hacking to make ReflectionFactory work (Repackaging)
I know that GAE is a very restrictive platform; and it restricts access to classes like the sun.reflect.ReflectionFactory
However, many library rely on these packages but is not allowed in the GAE ...
5
votes
1answer
269 views
Mechanical safe-cracking using Android audio and orientation sensors
I’m writing an app that helps lock-smiths with safe manipulation, mainly by creating the charts they need on the fly. When trying to gain entry to a safe via manipulation, a detailed analysis of the ...
6
votes
2answers
457 views
Custom encrypt GSM calls
Is it possible to catch voice audio stream with java (JME or Android), custom encrypt it and then send it as regular stream via regular GSM call? And off course decrypt cipher on other phone. Is ...
0
votes
4answers
266 views
How to pass input to a web page using a automated script
How to pass input to a php web page using a automated script ,i.e. i just want to know how pass arguments to text fields using a script. like passing input to username and password field of a web page ...
0
votes
0answers
138 views
pentesting java applet
Does anyone have an idea about how to pentest a java applet. I mean if there is a website that is written in php .. we try to pentest the site against sql injection, XSS and CSRF, but how can I ...
1
vote
2answers
71 views
execute() in Expression class
The latest security breach in Java7, where a applet can execute untrusted code on users machine. More information is available at ...
2
votes
1answer
179 views
How to detect java string inside a .so file?
I'm recompiling a java program, and I've got a following method:
public static native String getMyString(String s);
getMyString is implemented inside mylibrary.so, and looks like follows:
; ...
0
votes
2answers
239 views
Inserting magic number into class files
I have a jar in which all of the class files have their magic number and type removed, I am not very knowledgeable about this specific area. What would be the best way to go about adding back in ...
2
votes
3answers
75 views
can access to standard java libraries be blocked by prohibiting import statements and java.* strings?
suppose I want to allow people run simple console java programs on my server without ability to access the file system, the network or other IO except via my own highly restricted API. But, I don't ...
3
votes
5answers
951 views
Is it possible to accurately determine the IP address of a client in java servlet
I want to configure a machine in my network to accept all calls from a specific machine without authentication. For this I am planning to use the IP address of the client machine as the required trust ...
1
vote
1answer
176 views
How to retrieve Spring context loaded in Tomcat from outside application
I'm trying to do the following:
Imagine you have a Java EE application running on Tomcat using Spring as the IoC engine.
I have another jar in the application that has full access to all the ...
0
votes
1answer
89 views
Modifying variables of a Java Applet
I am interested in working on a multiplayer game in Java. I am concerned about hackers modifying game data and right now I'm interested in running my game in an Applet and connecting to my MySQL ...
0
votes
3answers
189 views
Is it possible to serialize a java class object to a class file?
I am trying to reverse engineer a java class that is loaded by custom class loader.
I tried to store the binary content, and later tried to decompile, but decompiler complained it as not a typical ...
0
votes
1answer
596 views
Penetration testing on Spring Security
What docs or links are there that would describe passed bug that turned in to vulnerabilities of spring security and how does one go about trying to hack into the framework?
I'm mainly interested in ...
4
votes
1answer
2k views
Spring Security cookies after user logs in and Session Hijacking
As far as I understand, when the user logs in Spring Security invalidate the Session and creates a new one. So if I come from http with a clear sessionID cookie Spring Security should set a new ...
0
votes
2answers
276 views
how to add multible bytes together?
I'm trying to write a ROM file patcher and I came to this in the documentation:
The next three bytes are the place in the destination file
(the file to be patched) where a change is to be made.
The ...
1
vote
3answers
350 views
How do I prevent people from hacking my applet?
Manipulating an applet is as easy as entering
javascript:document.getElementsByTagName("applet")[0].publicMethod();
into the address bar. How can I protect my applet from such manipulation?
3
votes
4answers
220 views
How to make an unit test always pass?
Let's assume someone has to write a solution to a problem and I have to test his solution with some tests. Is it possible (maybe with reflections or something) his program to pass all my tests, but to ...
3
votes
2answers
1k views
java ternary hack
So I'm not going for maintainability or elegance here.. looking for a way to cut down on the total tokens in a method just for fun. The method is comprised of a long nested if-else construct and I've ...
0
votes
2answers
250 views
way to make a function aware who called it
in java is it possible to make a method aware of who called it (without changing parameters) and then return something else?
public class MyClassA {
public static final String someStirng = "this ...
6
votes
5answers
1k views
Can someone steal a password from a Java application?
Suppose there is a String variable that holds a plain text password.
Is there any possibility of reading this password using a memory dump. (Suppose using cheat engine.) I am puzzled with this JVM ...
2
votes
7answers
1k views
Retrieve bytecode from in-memory to prevent hacking
How can I retrieve the bytecode and make a hash to see if someone has manipulated my bytecode in-memory or on file?
EDIT:
Does signing the binaries protect the code from being modified and executed? ...