Initial commit

This commit is contained in:
Gabriel Tofvesson 2017-05-16 00:04:11 +02:00
commit 4dde8dbd21
5 changed files with 159 additions and 0 deletions

22
.idea/misc.xml generated Normal file
View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
<component name="masterDetails">
<states>
<state key="ProjectJDKs.UI">
<settings>
<last-edited>1.8</last-edited>
<splitter-proportions>
<option name="proportions">
<list>
<option value="0.2" />
</list>
</option>
</splitter-proportions>
</settings>
</state>
</states>
</component>
</project>

8
.idea/modules.xml generated Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/JSafe.iml" filepath="$PROJECT_DIR$/JSafe.iml" />
</modules>
</component>
</project>

11
JSafe.iml Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -0,0 +1,86 @@
package net.tofvesson.jsafe;
import javax.tools.JavaCompiler;
import javax.tools.ToolProvider;
import java.io.*;
import java.net.URL;
@SuppressWarnings("ALL")
public class JSafe {
// Special values in class
public static final String CLASSNAME = "&LOADEDCLASS;";
public static final String AMPERSAND = "&amp;";
Process p;
public JSafe(String code, String... args){
Process sand = null;
try {
File f = File.createTempFile("exec", ".java");
code = code.replace(CLASSNAME, f.getName().substring(0, f.getName().length()-5)).replace(AMPERSAND, "&");
OutputStream o = new FileOutputStream(f);
o.write(code.getBytes());
o.close();
JavaCompiler j = ToolProvider.getSystemJavaCompiler();
StringBuilder sb = new StringBuilder();
for(String s : args) sb.append(s).append(' ');
if(sb.length()>0) sb.setLength(sb.length()-1);
if(j.run(null, null, null, f.getAbsolutePath())==0){
f.delete();
File f2 = new File(f.getAbsolutePath().substring(0, f.getAbsolutePath().length()-4)+"class");
File f1 = new File(f2.getAbsolutePath().substring(0, f2.getAbsolutePath().length()-f2.getName().length()));
sand = Runtime.getRuntime().exec("java "+f2.getName().substring(0, f2.getName().length()-6), new String[]{}, f1.getAbsoluteFile());
p = sand;
if(p!=null){
Thread t = new Thread(() -> {
try{
InputStream i = p.getInputStream();
Thread.sleep(200);
while(p.isAlive() || i.available()>0){
if(i.available()>0) System.out.write(i.read());
else Thread.sleep(1);
}
f2.delete();
}catch(Exception e){ e.printStackTrace(); }
});
t.start();
}
}
} catch (IOException e) {
e.printStackTrace();
//} catch (InterruptedException e) {
e.printStackTrace();
} finally{ if(sand==null) p = null; }
}
/*
f.delete();
f = new File(f.getAbsolutePath());
SandboxClassLoader loader = new SandboxClassLoader(null, "net.tofvesson.jsafe.JSafe");
ArrayList<Byte> a = new ArrayList<>();
byte[] b = new byte[4096];
int i;
while()
*/
class SandboxClassLoader extends ClassLoader{
protected final String[] blacklist;
protected final String[] packageBlacklist;
public SandboxClassLoader(String[] packageBlacklist, String... blacklist){
this.packageBlacklist = packageBlacklist==null?new String[]{}:packageBlacklist;
this.blacklist = blacklist;
}
@Override
protected Class<?> loadClass(String name, boolean resolve) throws ClassNotFoundException {
return super.loadClass(name, resolve);
}
@Override
protected Package definePackage(String name, String specTitle, String specVersion, String specVendor, String implTitle, String implVersion, String implVendor, URL sealBase) throws IllegalArgumentException {
return super.definePackage(name, specTitle, specVersion, specVendor, implTitle, implVersion, implVendor, sealBase);
}
}
}

View File

@ -0,0 +1,32 @@
package net.tofvesson.jsafe.command;
import net.tofvesson.jsafe.JSafe;
import java.io.IOException;
import java.io.OutputStream;
public class ProcessInteractor {
public ProcessInteractor(JSafe sandbox){
}
final class CommandStream extends OutputStream {
final String enc;
final char commandCode, notCommand;
boolean commandMode = false;
public CommandStream(char commandCode){
this.commandCode = commandCode;
notCommand = commandCode=='&'?'#':'&';
enc = notCommand+"cmd;";
}
@Override
public void write(int b) throws IOException {
}
}
}