⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 convert-sha1.pl

📁 linux网络服务器工具
💻 PL
字号:
#!/usr/bin/perl -wuse strict;# This is public domain code.  Do whatever you want with it.# It was originally included in Clinton Wong's Apache 1.3.6 SHA1/ldif# patch distribution as sample code for converting accounts from# ldif format (as used by Netscape web servers) to Apache password format.my $uid='';my $passwd='';while (my $line = <>) {  chomp $line;  if ( $line =~ /uid:\s*(.+)/) { $uid = $1 }  if ( $line =~ /userpassword:\s*(\{\w+\}.+)/) {    $passwd = $1;    $passwd =~ s/^\{crypt\}//i;  # Apache stores crypt without a magic string  }  if (length($line)==0) {    if (length $uid and length $passwd) {      print $uid, ':', $passwd, "\n";    } # output if we have something to print    $uid = '';    $passwd = '';  } # if newline} # while something to read# handle last entry if there isn't a newline before EOF    if (length $uid and length $passwd) {  print $uid, ':', $passwd, "\n";}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -