This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Stripe CTF Solutions | |
Author: Idan Warsawski | |
Here's a small description of how I did each level: | |
Level 01: | |
system("date"); | |
Realias date to another pogram that will run "cat /home/level02/.password" | |
I used a simple shell script: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Sip < Formula | |
homepage 'http://www.riverbankcomputing.co.uk/software/sip' | |
url 'http://download.sf.net/project/pyqt/sip/sip-4.15.3/sip-4.15.3.tar.gz' | |
sha1 'ef9916d36fedfd3cfa7161b5fd402f274ea0c99e' | |
head 'http://www.riverbankcomputing.co.uk/hg/sip', :using => :hg | |
depends_on :python => :recommended |