Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add getMethod #716

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions rasp/jvm/JVMProbe/src/main/java/com/security/smith/SmithProbe.java
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,26 @@ public Object getSmithProbeProxy() {
return smithProxy;
}

public Map<String, Boolean> getSwitchConfig() {
return this.switchConfig;
}

public Map<Pair<Integer, Integer>, Filter> getFilter() {
return this.filters;
}

public Rule_Mgr getRuleMgr() {
return this.rulemgr;
}

public Rule_Config getRuleConfig() {
return this.ruleconfig;
}

public SmithProbeProxy getSmithProxy() {
return this.smithProxy;
}

public void setClassLoader(Object classLoaderObj) {
xClassLoaderObj = classLoaderObj;
}
Expand All @@ -237,6 +257,10 @@ public String getProbePath() {

}

public Set<String>[][] getHookTypes() {
return hookTypes;
}

public void init() {
AttachInfo.info();
SmithLogger.loggerProberInit();
Expand Down
Loading