摘要:
https://codeload.github.com/xingfly/SBlog/zip/master 1、记得导入数据库并修改 数据库的配置。 2、使用jetty运行 pom 添加jetty <plugin> <groupId>org.mortbay.jetty</groupId> <artif 阅读全文
摘要:
(?=.*abc)(?=.*xxx)^.*$ 阅读全文
摘要:
通过天天模拟器,代理抓取安卓app数据包。也可以抓取https。 1、下载天天模拟器,官方下载即可,下载安装。 2、启动天天模拟器,设置代理,点击上方wlan设置图标,打开wlan设置,如下: 3、鼠标点击已连接的ssid不放,长点击。点修改网络,打开设置,显示高级选项:然后设置代理为本地物理机的i 阅读全文
摘要:
// 设置定时器检测状态Timer timer = new Timer("timer");TimerTask timerTask = new TimerTask() { @Override public void run() { }};timer.schedule(timerTask, 0, 300 阅读全文
摘要:
id_resultTable.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE); 阅读全文
摘要:
String conf = System.getProperty("user.home") + File.separator + "a.properties"; FileInputStream fis = new FileInputStream(conf);prop.load(fis);fis.cl 阅读全文
摘要:
package saikeScan.utils;import javax.crypto.*;import javax.crypto.spec.SecretKeySpec;import java.security.InvalidKeyException;import java.security.NoS 阅读全文
摘要:
nmap -sU -p161 --open -iL ip.txt 阅读全文