flag as inappropriate
Create your own!
$ python2 barbie.py 6jrXj1w
#!/usr/bin/env python2
import urllib, urllib2, sys, random
imgur = sys.argv[1]
host = "computer-engineer-barbie.herokuapp.com"
url = "http://" + host + "/save_page"
while True:
csrf = str(random.randint(0, 10000000))
post = {
'csrfmiddlewaretoken': csrf,
'imgur_id': imgur,
'page_id': 4,
'new_text': 'idk'
}
headers = {
'Host': host,
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0',
'Cookie': 'csrftoken='+csrf
}
req = urllib2.Request(url, urllib.urlencode(post), headers)
opener = urllib2.build_opener()
print opener.open(req).read()