sqlmap的简单用法

扫描漏洞:sqlmap -u 网址 –dbs –current-user 拆表名:sqlmap -u 网址 –tables 拆列:sqlmap -u 网址 -T 表名 –columns 获取列的字段:sqlmap -u 网址 -T 表名 -C 列名,若...

2015-12-01 · 1 分钟 · 149 字 · hacper

设置vim默认启用语法高亮

在根目录的 /etc/ 下面,找到vimrc的文件,打开vimrc,添加语句: :syntax on

2015-11-15 · 1 分钟 · 41 字 · hacper

WordPress 更改文章密码保护后显示的提示内容

1 2 3 4 5 6 7 8 9 10 11 12 /** * WordPress 更改文章密码保护后显示的提示内容 * http://www.wpdaxue.com/change-password-protected-text.html */ function password_protected_change( $content ) { global $post; if ( ! empty( $post->post_password ) && stripslashes( $_COOKIE['wp-postpass_'.COOKIEHASH] ) != $post->post_password ) { $output = ' <form action="' . get_option( 'siteurl' ) . '/wp-pass.php" method="post"> '.\_\_( &#...

2015-06-13 · 1 分钟 · 177 字 · hacper