Help for this page

Select Code to Download


  1. or download this
    sh-3.2$ env x='() { :;}; echo vulnerable' sh -c "echo this is a test"
    vulnerable
    this is a test
    ...
    test
    sh-3.2$ env x='() { :;}; echo vulnerable' perl -e 'print `echo test`'
    test
    
  2. or download this
    sh-3.2$ env x='() { :;}; echo vulnerable' perl -e 'print `echo test;`'
    vulnerable
    test
    ...
    test
    sh-3.2$ env x='() { :;}; echo vulnerable' perl -e 'system qw(echo test
    +;)'
    test;