Giter VIP home page Giter VIP logo

go-judge's People

Contributors

vn-ki avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

backup1

go-judge's Issues

Make compiled binary folder a `Judge` parameter

The binary folder (.compiled_bin) is hard coded. This should be a a parameter of Judge and should be configurable like {source_file} and {compiled_program}.

go-judge/cpp.go

Lines 9 to 12 in 87c5126

compileCmd: "g++",
compileArgs: []string{"{source_file}"},
runCmd: ".compiled_bin/{compiled_program}", // TODO: Don't hardcode compiled folder
runArgs: []string{},

Ref (place where {compiled_program} is replaced):

go-judge/judge_run.go

Lines 105 to 111 in 87c5126

func (judge *Judge) replaceRunCommands() {
judge.runCmd = judge.replaceCommands(judge.runCmd)
for idx, val := range judge.runArgs {
judge.runArgs[idx] = judge.replaceCommands(val)
}
}

The programs should be run in a sandbox

We now, make a directory with execute access to put the binaries and run them. This is dangerous (for web servers) as malicious code can be run.

Ideally every program run should be sandboxed.

Maybe take a look at pshved/timeout.

Relevent code:

go-judge/judge_run.go

Lines 17 to 19 in 87c5126

// XXX This is dangerous and should not be used on a webserver
// TODO: Run the program in a sandbox
_ = os.Mkdir(".compiled_bin", 0777)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.