一句Powershell调用mimikatz抓密码

mimikatz可以抓取系统内的明文密码,但是平时我们测试的时候需要把mimikatz的几个文件上传到目标系统上面,然后再手工执行几个命令才能搞定,今天无意访问一个大神的博客,发现其实可以利用powershell一句话搞定,是国外大神的方法。

国外大神clymb3r写的一个powershell脚本将mimikatz注入到内存调用logonPasswords获取密码,使用起来相当轻便。

以管理员权限启动CMD执行下以命 Continue reading "一句Powershell调用mimikatz抓密码"

DZ(Discuz!)外部HTML调用 会员登录框 代码

代码如下,请自行修改:

代码如下,请自行修改:

<!--论坛登录-->
<table width="998" align="center" cellspacing="0" bgcolor="#F1F5FF">
<form method="post" name="login" action="http://网站地址/bbs/logging.php?

action=login&loginsubmit=true">
<input type="hidden" name="formhash" value="9e4cfebf">
<input type="hidden" name="referer" value="http://网站地址/bbs/index.php">
<tr>
<td width="13%"><span>
<input type="radio" name="loginfield" value="username" checked

onclick="document.login.username.focus();">
<span>用户名</span>
<input type="radio" name="loginfield" value="uid"

onclick="document.login.username.focus();">
<span>UID</span></span></td>
<td width="13%">
<span>
<input type="text" name="username" size="15" maxlength="40" tabindex="2">
</span></td>
<td width="4%"><span>密码</span></td>
<td width="21%"><span>
  <input type="password" name="password" size="25" tabindex="3" />
</span></td>
<td width="6%"><div><div><input

class="STYLE1" type="submit" name="loginsubmit" value="登录">
</div></div></td>
<td width="6%"><span> <a href="http://网站地

址/bbs/register.php">立即注册</a></span></td>
<td width="37%"><span> <a href="http://网站地

址/bbs/member.php?action=lostpasswd">忘记密码</a></span></td>
</tr>
</form>
</table>
<!--论坛登录-->