Security research, field notes, and practical experiments

Writing

Independent technical notes by Willis Vandevanter.

Recent writing

  1. Simple Ruby Exec with Open and Pipe

    I was researching something else and thought this was a cool way to execute a command through the open method in ruby:

    1
    
    open("|[CMD]")
    

    The key is starting the open with pipe. For example,

    1
    
    open("|ls")
    

    Or to exec and print the …