溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

微信數(shù)據(jù)庫(kù)消息解讀

發(fā)布時(shí)間:2020-06-06 04:26:43 來(lái)源:網(wǎng)絡(luò) 閱讀:555 作者:snowhill 欄目:數(shù)據(jù)庫(kù)


解密參考:

//http://blog.csdn.net/njweiyukun/article/details/54024442
//imei號(hào):手機(jī)按*#06#,CompatibleInfo.cfg 354169060462426 c4cc03c 
//sqlite jdbc:https://bitbucket.org/xerial/sqlite-jdbc/downloads/
import java.io.UnsupportedEncodingException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.security.MessageDigest;
class Ex02_3_3 { 
//md5 加密3
public static String md5(String content) {  
MessageDigest md5 = null;  
try {  
md5 = MessageDigest.getInstance("MD5");  
md5.update(content.getBytes("UTF-8"));  
byte[] encryption = md5.digest();//加密  
StringBuffer sb = new StringBuffer();  
for (int i = 0; i < encryption.length; i++) {  
if (Integer.toHexString(0xff & encryption[i]).length() == 1) {  
sb.append("0").append(Integer.toHexString(0xff & encryption[i]));  
} else {  
sb.append(Integer.toHexString(0xff & encryption[i]));  
}  
}  
return sb.toString();  
} catch (Exception e) {  
e.printStackTrace();  
return null;  
}  
}
//日期打印到毫秒
public static void display() {
System.out.println(new SimpleDateFormat("yyyy/MM/dd KK:mm:ss:SSS").format(new Date()));
}
//注冊(cè)數(shù)據(jù)庫(kù)
public Connection getConnection() throws ClassNotFoundException,IOException, SQLException {
      Class.forName("org.sqlite.JDBC");
      return  DriverManager.getConnection("jdbc:sqlite:enmicromsg.db");
    }
public static void main(String args[]) { 
     // String imei="354169060462426";
Connection conn = null;
String imei=args[0];
 //String uin="1297173361";
String uin=args[1];
             Mynumber a= new Mynumber();  
          //   a.number= 5;
             System.out.println(imei+uin);
String md5 = md5(imei + uin);  
String password = md5.substring(0, 7).toLowerCase(); 
String sql="select count(*) from message';
display();
Statement stmt = conn.createStatement;
ResultSet rs = stmt.executeQuery(sql);
System.out.println(password);
      }
}

運(yùn)行

D:\javasource>java Ex02_3_3 354169060462426  1297173361
3541690604624261297173361
2017/08/13 08:02:02:640
c4cc03c

message查詢:

select datetime(createTime/1000 ,'unixepoch','localtime'), createtime,content from message where talker='ha**ong00'


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI