-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: tomsun28 <[email protected]> Co-authored-by: YuLuo <[email protected]> Co-authored-by: tomsun28 <[email protected]> Co-authored-by: aias00 <[email protected]>
- Loading branch information
1 parent
19955fa
commit 7bb049f
Showing
2 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
collector/src/main/java/org/apache/hertzbeat/collector/collect/jmx/JmxClassLoader.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.hertzbeat.collector.collect.jmx; | ||
|
||
import lombok.extern.slf4j.Slf4j; | ||
|
||
/** | ||
* custom class loader config for JMX | ||
*/ | ||
@Slf4j | ||
public class JmxClassLoader extends ClassLoader { | ||
|
||
private static final String[] WHITE_PRE_LIST = new String[]{ | ||
"java.", | ||
"javax.management.", | ||
"org.apache.hertzbeat.", | ||
"org.springframework.util.", | ||
"com.sun.", | ||
"sun.", | ||
"org.slf4j.", | ||
"jdk.", | ||
"org.w3c.dom." | ||
}; | ||
|
||
public JmxClassLoader(ClassLoader parent) { | ||
super(parent); | ||
} | ||
|
||
@Override | ||
protected Class<?> loadClass(String name, boolean resolve) throws ClassNotFoundException { | ||
for (String whitePre : WHITE_PRE_LIST) { | ||
if (name.startsWith(whitePre)) { | ||
return super.loadClass(name, resolve); | ||
} | ||
} | ||
log.error("Security vulnerability detection in JMX collect: Forbidden class: {}", name); | ||
throw new ClassNotFoundException("Forbidden unsafe collection request content"); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters