oracle : the password has expried to unlimited Hint

Conn as sysdba $ sqlplus /nolog SQL> conn /as sysdba Change password first! SQL> ALTER USER [USERID] IDENTIFIED by [PASSWORD]; Check password life time SQL> select * from dba_profiles where profile='DEFAULT' and resource_name='PASSWORD_LIFE_TIME'; PROFILE        RESOURCE_NAME RESOURCE ------------------------------ -------------------------------- -------- LIMIT ---------------------------------------- DEFAULT        PASSWORD_LIFE_TIME PASSWORD 180 Set password life time to […]

Read More

centos7: cvs server Hint

yum install cvs xinetd adduser cvs passwd cvs su -l cvs $ cvs -d /home/cvs/testDir init $ vi /home/cvs/testDir/CVSROOT/passwd cvsuserid1:$1$ss$unix_passwd.:cvs cvsuserid2:$1$ss$xxxxxxxxxxg.:cvs passwd must be unix crypted like /etc/shadow otherwide... make Unix passwd by perl Hint not tested #!/usr/bin/perl crypt.pl srand (time()); my $randletter = "(int (rand (26)) + (int (rand (1) + .5) % 2 […]

Read More

apache : block image direct url request Hint

.htaccess ====================== <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_REFERER} !^http://(www.)?owllab.com.*$ [NC] RewriteRule .(jpg|jpeg|png|gif)$ - [NC,F] </IfModule> ====================== or more simple solution! ====================== <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST}@@%{HTTP_REFERER} !([^.@].(?:(?:co|or|gv|ac).)?[a-z]{2,7})@@https?://.(\1)/.* RewriteRule .*.(jpe?g|png|gif|txt|pdf|zip) - [NC,F] </IfModule> ====================== Response Status Code: 403 Forbidden PHP test for regex ====================== <? //$tmp = "www.domain.com@@http://domain.com/dir1/test.php?pg=main&q=qqq"; $tmp = $_SERVER['HTTP_HOST']."@@".$_SERVER['HTTP_REFERER']; echo $tmp; echo "<br>"; echo […]

Read More