Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

JNLP without web start...

843802Sep 10 2001 — edited Sep 10 2001
Hi,

I would like to use JNLP as it I like the method of specifying an application's configuration, eg jars, properties and native libraries. It's more controlled and versionable than having to use a command line 3 metres long.

However, we use Marimba Castanet and I want to stick with that, so no need for Web Start. My question then is does the JNLP or another package have an API that will allow me to start a java application using a .jnlp file without going through web start?

Also I need my application to have unfettered securiry access without signing the jars, just as it does at the moment where the application is started from the command line.

Thanks, jamie

Comments

Osama_Mustafa
actually it will take long time to decrypt it


if you have sys admin password change the password using

alter user HR identified by <your new password>
rajeysh
Mr Babakishiyev wrote:
Hi

I forgot my HR user password.
I connected database sys as sysbda .
connect sys as sysdba / my password;

Then
SQL> select username, password from dba_users;
HR 83307CF5EF89EAE2

How can I decrypt this password?

Thanks
you can change the password of hr

alter user hr identified by new_password;

you cannot decrypt the hr password.
dba-india
Default password for HR will be HR.
If there is application configured for that HR schema then just don't change the HR password from database end, if you do so the application might not work. There will be a procedure to change the password at database end if it is also encoded in the application somewhere for connectivity. It should be changed in both database and application side.

But if I am not over exhagerating and if this is just a test system and HR is not used in any frontend application then just change it with 'alter user HR identified by <new password here>; statement. And moreover you cannot decrypt passwords just like that.
MrBabakishiyev
Ok I understand, but is it impossible decrypt password?
Don't have any chance ?

Thanks
srikanth2384
Mr Babakishiyev wrote:
Ok I understand, but is it impossible decrypt password?
Don't have any chance ?

Thanks
No.
Lubiez Jean-Valentin
Hello,

How can I decrypt this password?
In fact the password stored in Oracle Database is not only Encrypted but Hashed by an internal algorithm.

So, there's no way to decrypt it.

Else, you may find on Google some tools to "crack" passwords but, most of them use a Dictionary. So if you set a strong password these tools won't be very efficient.

You'll have much more informations (and tools) from the famous site of Pete Finnigan:

http://www.petefinnigan.com/


Hope this help.
Best regards,
Jean-Valentin
dba-india
Database uses DAS, RSA, AES, etc complex algorithm to encrypt the passwords, so its not possible to decrypt it.

But I suspect that you are planning to do some hacking.
rajeysh
Mr Babakishiyev wrote:
Ok I understand, but is it impossible decrypt password?
Don't have any chance ?

Thanks
for your information
but dont misuse it .. you can alter the user password and again you can reset the old password using old hash value.
SQL> create user test identified by test;

User created.

SQL> grant connect,resource to test;

Grant succeeded.

SQL> select username,password from dba_users where username='TEST';

USERNAME                       PASSWORD
------------------------------ ------------------------------
TEST                           7A0F2B316C212D67

SQL> conn test/test;
Connected.
SQL> conn sys/oracle as sysdba;
Connected.
SQL> alter user test identified by newpwd;

User altered.

SQL> conn test/test;
ERROR:
ORA-01017: invalid username/password; logon denied


Warning: You are no longer connected to ORACLE.
SQL> conn test/newpwd;
Connected.
SQL> show user
USER is "TEST"
SQL> conn sys/oracle as sysdba;
Connected.

SQL> alter user test identified by values  '7A0F2B316C212D67';

User altered.

SQL> conn test/newpwd;
ERROR:
ORA-01017: invalid username/password; logon denied


Warning: You are no longer connected to ORACLE.
SQL> conn test/test;
Connected.
SQL> show user;
USER is "TEST"
SQL>
MrBabakishiyev
Thanks everyone for helping.
Sir I don't want to hack.


Best regards,
Rufatet Babakishiev
1 - 9
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Oct 8 2001
Added on Sep 10 2001
4 comments
189 views