Averiguar Password
Que tal grupo buen día, alguien sabe como averiguar un password de un usuario en oracle, revisé la tabla dba_users pero el password aparece como encriptado,
Grcias.
Grcias.
Saludos:
Aqui te mando un script que le llamo Hack_User jejeje
rem Alters given user's password to "WELCOME", and creates script to revert password to
rem original setting
rem
set heading off
set verify off
set feedback off
prompt
accept username char prompt 'Enter username to hack into: '
prompt
prompt Creating revert.sql in the current working directory
prompt
set termout off
spool revert.sql
select 'alter user &&username identified by values '||
''''||
password||
''''||
';'
from sys.dba_users
where username = upper('&&username')
/
spool off
set termout on
prompt
prompt Altering user password to 'welcome'
prompt
set termout off
alter user &&username
identified by welcome
/
set termout on
prompt
prompt *************************************************
prompt The file revert.sql is in the current working
prompt directory. Run it to reset the password.
prompt *************************************************
prompt
prompt
NOTA: SOLO CAMBIA LAS VARIABLES QUE DICEN &&username POR LA DE TU USER JEJEJE PERO EN FIN CREO QUE YA LO SABES Y EL PASS SERIA EL DE WELCOME O SI CAMBIA OK CUALQUIER COSA ME ESCRIBES A MI MAIL.
Aqui te mando un script que le llamo Hack_User jejeje
rem Alters given user's password to "WELCOME", and creates script to revert password to
rem original setting
rem
set heading off
set verify off
set feedback off
prompt
accept username char prompt 'Enter username to hack into: '
prompt
prompt Creating revert.sql in the current working directory
prompt
set termout off
spool revert.sql
select 'alter user &&username identified by values '||
''''||
password||
''''||
';'
from sys.dba_users
where username = upper('&&username')
/
spool off
set termout on
prompt
prompt Altering user password to 'welcome'
prompt
set termout off
alter user &&username
identified by welcome
/
set termout on
prompt
prompt *************************************************
prompt The file revert.sql is in the current working
prompt directory. Run it to reset the password.
prompt *************************************************
prompt
prompt
NOTA: SOLO CAMBIA LAS VARIABLES QUE DICEN &&username POR LA DE TU USER JEJEJE PERO EN FIN CREO QUE YA LO SABES Y EL PASS SERIA EL DE WELCOME O SI CAMBIA OK CUALQUIER COSA ME ESCRIBES A MI MAIL.
