Skip to content

Commit

Permalink
Fix remote code execution vulnerability
Browse files Browse the repository at this point in the history
Disable EVAL command as it is open to remote code execution vulnerability slashmili#85
  • Loading branch information
slashmili committed Feb 23, 2017
1 parent abf9d8c commit 45f2c96
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ Helium (2.X.X)
v 2.6.0
add g:alchemist_compile_basepath option #78

v 2.5.1
- Fix remote code execution vulnerability

v 2.5.0
- show documentation for erlang modules #49
- stop alchemist server being 10 min idle
Expand Down
4 changes: 2 additions & 2 deletions alchemist-server/lib/helpers/process_commands.exs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ defmodule Alchemist.Helpers.ProcessCommands do
API.Docl.request(args)
["INFO", args] ->
API.Info.request(args)
["EVAL", args] ->
API.Eval.request(args)
#["EVAL", args] ->
#API.Eval.request(args)
["DEFL", args] ->
API.Defl.request(args)
["PING"] ->
Expand Down

0 comments on commit 45f2c96

Please sign in to comment.