免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4453 | 回复: 2
打印 上一主题 下一主题

【求支援】想实现svn自助修改密码,用perl脚本[非基于apache认证] [复制链接]

论坛徽章:
1
处女座
日期:2013-09-18 13:13:02
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-09-18 12:26 |只看该作者 |倒序浏览
本帖最后由 luckyao 于 2013-09-18 13:19 编辑

如标题

本地subversion搭建的SVN环境,提交、更新、邮件提醒(post-commit中用svnmailer实现)、log记录等功能都已经OK。

现在我想实现用perl语言写的cgi来修改svn的密码文件(明文存文本)。

用lighttpd做cgi的web服务器,用网络上找来的perl代码写的cgi。

运行效果如图


但是点击修改密码后一直说找不到我要修改的用户。
lighttpd以svn用户权限运行,svn库所有者为svn(密码文件为"svn库名/conf/passwd",所以权限不存在问题。

我的目的是用此cgi去修改passwd文件内容
下面是我在运行的svnpass.cgi,svnpass.ini,passwd
svnpass.zip (3.24 KB, 下载次数: 24)


svnpass.cgi
  1. #!/usr/bin/perl -w

  2. use strict;
  3. use CGI;
  4. my $time        = localtime;
  5. my $remote_id   = $ENV{REMOTE_HOST} || $ENV{REMOTE_ADDR};
  6. my $admin_email = $ENV{SERVER_ADMIN};

  7. my $cgi = new CGI;
  8. my $pwd_not_alldiginal = "密码不能全为数字";
  9. my $pwd_not_allchar = "密码不能全为字符";
  10. my $user_not_exists ="该用户不存在";
  11. my $file_not_found ="文件不存在,请联系管理员";

  12. my $authuserfile;
  13. my $logfile;
  14. my $pwdminlen;
  15. my $title;
  16. my $description;
  17. my $yourname;
  18. my $oldpwd;
  19. my $newpwd1;
  20. my $newpwd2;
  21. my $btn_change;
  22. my $btn_reset;

  23. my $changepwdok;
  24. my $changepwdfailed;
  25. my $oldpwderror;
  26. my $passmustgreater;
  27. my $twopassnotmatched;
  28. my $entername;
  29. my $enterpwd;
  30. my $errorpwd;
  31. my $back;


  32. &IniInfo;

  33. if ($cgi -> param())
  34. {#8
  35. my $User = $cgi->param('UserName');
  36. my $UserPwd = $cgi->param('OldPwd');
  37. my $UserNewPwd =  $cgi->param('NewPwd1');
  38. my $MatchNewPwd =  $cgi->param('NewPwd2');


  39. if (!$User)
  40.      {&Writer_Log("Enter no user name");
  41.        &otherhtml($title,$entername,$back);}
  42. elsif (!$UserPwd )
  43.     {&Writer_Log("Enter no OldPasswd");
  44.      &otherhtml($title,$enterpwd,$back); }
  45. elsif (length($UserNewPwd)<$pwdminlen)
  46.     {&Writer_Log("Password's length must greater than".$pwdminlen);
  47.      &otherhtml($title,$passmustgreater.$pwdminlen,$back);}
  48. elsif ($UserNewPwd =~/^\d+$/)
  49.     {&Writer_Log("New Passwd isn't all diginal");
  50.      &otherhtml($title,$pwd_not_alldiginal,$back);}
  51. elsif ($UserNewPwd =~/^[A-Za-z]+$/)
  52.     {&Writer_Log("New Passwd isn't all char");
  53.      &otherhtml($title,$pwd_not_allchar,$back);}
  54. elsif ($UserNewPwd ne $MatchNewPwd)
  55.     {&Writer_Log("Two new passwords are not matched");
  56.      &otherhtml($title,$twopassnotmatched,$back);}
  57. else
  58. {if($authuserfile)
  59. {#6
  60.   open UserFile, "<$authuserfile" or die "打开文件失败:$!";
  61.   while (<UserFile>)
  62.     {#5
  63.        my $varstr=$_;
  64. #           next if (/^#/ || /^$/ || /^\[/ || /^\s$/);
  65.        if($varstr =~/($User)/)
  66.                 {#3
  67.                     my $eqpos =index($varstr, "=");
  68.                     my $UserName = substr($varstr,0,$eqpos);
  69.                     my $cryptpwd = substr($varstr,$eqpos + 1,);
  70.                   
  71.                     next if($UserName ne $User);
  72.                                    
  73.                     if(crypt($UserPwd,$cryptpwd) eq $cryptpwd)
  74.                     {#a
  75.                      #my $rc = system("htpasswd -b $authuserfile $User $UserNewPwd");
  76.                      my $rc = system("sed -i '/$User/d' $authuserfile && echo '$User = $UserNewPwd' >> $authuserfile && sed -i '/^$/d' ");
  77.                      if ($rc == 0)
  78.                         {#1
  79.                            &Writer_Log( $User."£ºChange Passwd");
  80.                            &otherhtml($title,$changepwdok,$back);
  81.                          }#1
  82.                       else
  83.                          {#2
  84.                           &Writer_Log( $User."£ºChange Passwd Failed");
  85.                           &otherhtml($title,$changepwdfailed,$back);
  86.                          }#2
  87.                       exit;
  88.                     }#a
  89.                     else
  90.                     {#b
  91.                      &Writer_Log("Old Passwd is Incorrect ");
  92.                      &otherhtml($title,$errorpwd,$back);
  93.                     }#b
  94.                     exit;      
  95.                 }#3
  96.        else
  97.                 {#4
  98.                     if(eof)
  99.                     { &Writer_Log($User."£ºno this user");
  100.                       &otherhtml($title,$user_not_exists,$back);
  101.                       exit;
  102.                     }
  103.                     else
  104.                     {next;}
  105.                 }#4   
  106.      }#5
  107.    close UserFile;
  108. }#6
  109. else
  110. {#7
  111.    &Writer_Log($authuserfile.":no found");
  112.    &otherhtml($title,$file_not_found,$back);
  113. }#7
  114. }
  115. }#8
  116. else
  117. {&Index_Html;}

  118. sub IniInfo{
  119. my $inifile = "/opt/data/svn/www/cgi/svnpass.ini";
  120. open CGI_INI_FILE, "<$inifile" or die "打开文件失败:$!";;
  121. while (<CGI_INI_FILE>)
  122. {
  123.   my $eqpos =index($_,'=');
  124.   my $len = length($_);

  125.   if ($_ =~/authuserfile/)
  126.   {$authuserfile= substr($_, $eqpos + 1, $len - $eqpos -2);}
  127.   elsif ($_ =~/logfile/)
  128.   {$logfile= substr($_, $eqpos + 1);}
  129.   elsif ($_ =~/pwdminlen/)
  130.   {$pwdminlen= substr($_, $eqpos + 1);}
  131.   elsif ($_ =~/title/)
  132.   {$title = substr($_, $eqpos + 1);}
  133.   elsif ($_ =~/description/)
  134.   {$description = substr($_, $eqpos + 1);}
  135.   elsif ($_ =~/yourname/)
  136.   {$yourname = substr($_, $eqpos + 1);}
  137.   elsif ($_ =~/oldpwd/)
  138.   {$oldpwd= substr($_, $eqpos + 1);}
  139.   elsif ($_ =~/newpwd1/)
  140.   {$newpwd1= substr($_, $eqpos + 1);}
  141.   elsif ($_ =~/newpwd2/)
  142.   {$newpwd2= substr($_, $eqpos + 1);}
  143.   elsif ($_ =~/btn_change/)
  144.   {$btn_change = substr($_, $eqpos + 1);}
  145.   elsif ($_ =~/btn_reset/)
  146.   {$btn_reset = substr($_, $eqpos + 1);}
  147.   elsif ($_ =~/changepwdok/)
  148.   {$changepwdok = substr($_, $eqpos + 1);}
  149.   elsif ($_ =~/changepwdfailed/)
  150.   {$changepwdfailed = substr($_, $eqpos + 1);}
  151.   elsif ($_ =~/oldpwderror/)
  152.   {$oldpwderror = substr($_, $eqpos + 1);}
  153.   elsif ($_ =~/passmustgreater/)
  154.   {$passmustgreater = substr($_, $eqpos + 1);}
  155.   elsif ($_ =~/twopassnotmatched/)
  156.   {$twopassnotmatched = substr($_, $eqpos + 1);}
  157.   elsif ($_ =~/entername/)
  158.   {$entername = substr($_, $eqpos + 1);}
  159.   elsif ($_ =~/enterpwd/)
  160.   {$enterpwd= substr($_, $eqpos + 1);}
  161.   elsif ($_ =~/errorpwd/)
  162.   {$errorpwd= substr($_, $eqpos + 1);}
  163.   elsif ($_ =~/back/)
  164.   {$back = substr($_, $eqpos + 1);}
  165. }
  166. close CGI_INI_FILE;
  167. }

  168. sub Index_Html
  169. {
  170. print "Content-type: text/html\n\n";
  171. print <<END_OF_PAGE;
  172. <html >
  173. <head>
  174. <title>$title</title>
  175. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  176. </head>
  177. <body>
  178. <center>
  179. <HR>
  180. <font color="#FF0000">注意:新密码位数必需大于$pwdminlen,且为字母与数字组合</font>
  181. <P></p>
  182. </center>
  183. <center><h1>$description</h1>
  184. </center>
  185. <form method="POST" enctype="multipart/form-data"  action="/cgi/svnpass.cgi">
  186. <br>
  187. <TABLE align="center">
  188. <TR><TD class="t_text">$yourname</TD><TD><input type="text" name="UserName"  /></TD></TR>
  189. <TR><TD class="t_text">$oldpwd</TD><TD><input type="password" name="OldPwd"  /></TD></TR>
  190. <TR><TD class="t_text">$newpwd1</TD><TD><input type="password" name="NewPwd1"  /></TD></TR>
  191. <TR><TD class="t_text">$newpwd2</TD><TD><input type="password" name="NewPwd2"  /></TD></TR>
  192. </TABLE>
  193. <br>
  194. <TABLE align="center">
  195. <TR><TD><input type="submit" name="chgpasswd" value="$btn_change"> <input type="reset" value="$btn_reset"></TD></TR>
  196. </TABLE>
  197. </form>
  198. <center>
  199. <HR>
  200. <p>如有问题请与管理员联系E-MAil:<A HREF="mailto:$admin_email">$admin_email</A>.</P>
  201. </center>
  202. </body>
  203. </html>
  204. END_OF_PAGE
  205. }

  206. sub otherhtml{
  207. print "Content-type: text/html\n\n";

  208. print <<END_OF_PAGE;
  209. <html>
  210. <head>
  211. <meta http-equiv="Content-Language" content="zh-cn">
  212. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  213. <title>$_[0]</title>
  214. </head>

  215. <body>
  216. <p align="center"><font size="5">$_[1]</font></p>
  217. <p align="center"><a href="/cgi/svnpass.cgi"><font size="4">$_[2]</font></a></p>

  218. <HR>
  219. <P>如有问题请与管理员联系E-Mail: <A HREF="mailto:$admin_email">$admin_email</A>.</P>
  220. </body>

  221. </html>
  222. END_OF_PAGE
  223. }

  224. sub Writer_Log{
  225. if($logfile)
  226. {
  227.   my $loginfo ="[".$time."] "." [".$remote_id."] "." || ".$_[0];
  228.   open LOGFILE,">>$logfile" or die "Couldn't open LOG FILE for writing: $!";
  229.   print LOGFILE ("$loginfo\n");
  230.   close LOGFILE;
  231. }
  232. }
复制代码
svnpass.ini
  1. [path]
  2. authuserfile=/opt/data/svn/test/conf/passwd
  3. logfile=/var/log/svn/changepwd.log
  4. [setup]
  5. pwdminlen=6
  6. [html]
  7. title=SVN用户密码自助修改
  8. description=SVN用户密码自助修改
  9. yourname=用户名
  10. oldpwd=旧密码
  11. newpwd1=新密码
  12. newpwd2=确认新密码
  13. btn_change=修 改
  14. btn_reset=重 置

  15. changepwdok=成功修改密码
  16. changepwdfailed=修改密码失败
  17. servererror=服务器错误
  18. passmustgreater=新密码位数必须大于
  19. twopassnotmatched=两密码不一致
  20. entername=请输入用户名
  21. enterpwd=密码未输入
  22. errorpwd=你的密码不正确
  23. back=返回
复制代码
passwd
  1. ### This file is an example password file for svnserve.
  2. ### Its format is similar to that of svnserve.conf. As shown in the
  3. ### example below it contains one section labelled [users].
  4. ### The name and password for each user follow, one account per line.

  5. [users]
  6. # harry = harryssecret
  7. # sally = sallyssecret
  8. #


  9. test = 12345678
复制代码
求perl高手指导哪里需要修改!!!非常感谢!

本来还有一个功能更全面的代码,由于代码复杂度太高暂时没有采用。
http://www.teuton.org/~ejm/svnpasswd/

论坛徽章:
1
处女座
日期:2013-09-18 13:13:02
2 [报告]
发表于 2013-09-18 16:20 |只看该作者
没人回复?

论坛徽章:
1
CU十二周年纪念徽章
日期:2013-10-24 15:41:34
3 [报告]
发表于 2013-09-18 16:34 |只看该作者
回复 2# luckyao


    代码好长好长,等放假了说不定会有人回你的,现在都上班呢。。。。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP