This file is indexed.

/usr/share/plowshare/modules/upload_cd.sh is in plowshare-modules 0~git20171112.e94a905-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
# Plowshare upload.cd module
# by idleloop <idleloop@yahoo.com>, v1.2, Feb 2016
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Plowshare is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Plowshare.  If not, see <http://www.gnu.org/licenses/>.

MODULE_UPLOAD_CD_REGEXP_URL='http://\(www\.\)\?upload\.cd/[[:alnum:]]\+'

MODULE_UPLOAD_CD_DOWNLOAD_OPTIONS=""
MODULE_UPLOAD_CD_DOWNLOAD_RESUME=yes
MODULE_UPLOAD_CD_DOWNLOAD_FINAL_LINK_NEEDS_COOKIE=unused
MODULE_UPLOAD_CD_DOWNLOAD_SUCCESSIVE_INTERVAL=

MODULE_UPLOAD_CD_PROBE_OPTIONS=""

# Output a upload.cd file download URL
# $1: cookie file (unused here)
# $2: upload.cd url
# stdout: real file download link
upload_cd_download() {
    local -r COOKIE_FILE=$1
    local -r URL=$2
    local -r BASE_URL='http://upload.cd'
    local -r TIMER_URL='http://upload.cd/download/startTimer'
    local -r CHECK_TIMER_URL='http://upload.cd/download/checkTimer'
    local PAGE FILE_URL FILE_NAME FORM_HTML FORM_FILEID FORM_USID FORM_METHOD FORM_ACTION FILE_SID WAIT_TIME

    # no login support
    #if [ -n "$AUTH_FREE" ]; then
    #    upload.cd_login "$AUTH_FREE" "$COOKIE_FILE" "$BASE_URL" || return
    #    PAGE=$(curl -L -b "$COOKIE_FILE" -c "$COOKIE_FILE" "$URL") || return
    #else
        PAGE=$(curl -L -b "COOKIE_FILE" -c "$COOKIE_FILE" "$URL") || return
    #fi

    if match 'was not found' "$PAGE"; then
        return $ERR_LINK_DEAD
    fi

    # check for forced delay
    if match 'You have to wait' "$PAGE"; then
        local HOURS MINS SECS
        HOURS=$(echo "$PAGE" | \
            parse_quiet 'You have to wait' ' \([[:digit:]]\+\) hours\?')
        MINS=$(echo "$PAGE" | \
            parse_quiet 'You have to wait' ' \([[:digit:]]\+\) minutes\?')
        SECS=$(echo "$PAGE" | \
            parse_quiet 'You have to wait' ', \([[:digit:]]\+\) seconds\?')            
        log_error 'Forced delay between downloads.'
        echo $(( HOURS * 60 * 60 + MINS * 60 + SECS ))
        return $ERR_LINK_TEMP_UNAVAILABLE    
    fi

    FILE_NAME=$(parse_tag '<h3.\+</div>' h3 <<< "$PAGE") || return

    FORM_HTML=$(grep_form_by_order "$PAGE" 1) || return
    FORM_FILEID=$(parse_form_input_by_name 'fileid' <<< "$FORM_HTML") || return
    FORM_USID=$(parse_form_input_by_name_quiet 'usid' <<< "$FORM_HTML") || return
    FORM_METHOD=$(parse_form_input_by_name 'premium_dl' <<< "$FORM_HTML") || return
    FORM_ACTION=$(parse_form_action <<< "$FORM_HTML") || return

    # intermediate petition "1" to start timer on both sides:
    PAGE=$(curl -b "$COOKIE_FILE" -c "$COOKIE_FILE" -H "Referer: $URL" \
                                  --data-urlencode "fid=$FORM_FILEID" \
        "$TIMER_URL") || return

    # parse wait time
    WAIT_TIME=$(echo "$PAGE" | \
        parse 'seconds' '"seconds":[[:space:]]\?\([[:digit:]]\+\)[[:space:]]\?,') || return
    # parse compulsory SID
    FILE_SID=$(echo "$PAGE" | \
        parse 'sid' '"sid":[[:space:]]\?"\([^\"]\+\)"') || return

    if [ -n "$WAIT_TIME" ]; then
        wait $(( WAIT_TIME + 1 )) || return
    fi

    # intermediate petition "2" to stop timer on both sides:
    PAGE=$(curl -b "$COOKIE_FILE" -c "$COOKIE_FILE" -H "Referer: $URL" \
                                  -H "Origin: $BASE_URL" \
                                  -H "X-Requested-With: XMLHttpRequest" \
                                  --data-urlencode "sid=$FILE_SID" \
        "$CHECK_TIMER_URL") || return

    if match 'Your request is invalid.' "$PAGE"; then
        log_error 'Request refused.'
        return $ERR_FATAL
    fi

    # after the intermediate petitions for obtaining sid/usid ,
    # request download
    PAGE=$(curl -b "$COOKIE_FILE" -c "$COOKIE_FILE" -H "Referer: $URL" \
                                  --data-urlencode "fileid=$FORM_FILEID" \
                                  --data-urlencode "usid=$FILE_SID" \
                                  --data-urlencode "referer=" \
                                  --data-urlencode "premium_dl=$FORM_METHOD" \
        "$BASE_URL$FORM_ACTION") || return

    # check for and handle CAPTCHA (if any)
    # Note: emulate 'grep_form_by_id_quiet'
    FORM_HTML=$(grep_form_by_order "$PAGE" 1 2>/dev/null)

    if [ -n "$FORM_HTML" ]; then
        local RESP WORD ID CAPTCHA_DATA

        if match 'recaptcha_widget' "$FORM_HTML"; then
            log_debug 'reCaptcha found'
            local CHALL
            local -r PUBKEY='6Ldl-eESAAAAAC2KU1qbUj5JfdvU1_Voaqj9Rbcj'

            RESP=$(recaptcha_process $PUBKEY) || return
            { read WORD; read CHALL; read ID; } <<< "$RESP"

            CAPTCHA_DATA="-d recaptcha_challenge_field=$CHALL -d recaptcha_response_field=$WORD"

        else
            log_error 'Unexpected content/captcha type. Site updated?'
            return $ERR_FATAL
        fi

        log_debug "Captcha data: $CAPTCHA_DATA"

        PAGE=$(curl -b "$COOKIE_FILE" -c "$COOKIE_FILE" $CAPTCHA_DATA \
                                   -H "Referer: $BASE_URL$FORM_ACTION" \
                                   -d "fileid=$FORM_FILEID" \
            "$BASE_URL$FORM_ACTION") || return

        # Get error message, if any
        ERR=$(parse_tag_quiet '<div class="errorMessage"' 'div' <<< "$PAGE")

        if [ -n "$ERR" ]; then
            if match 'The verification code is incorrect' "$ERR"; then
                log_error 'Wrong captcha'
                captcha_nack "$ID"
                return $ERR_CAPTCHA
            fi

            log_debug 'Correct captcha'
            captcha_ack "$ID"
            log_error "Unexpected remote error: $ERR"
            return $ERR_FATAL
        fi

        log_debug 'Correct captcha'
        captcha_ack "$ID"

    else
        log_error 'Unexpected content. Site updated?'
        return $ERR_FATAL
    fi

    parse_attr 'download-btn' href <<< "$PAGE"
}

# Probe a download URL
# $1: cookie file (unused here)
# $2: upload.cd url
# $3: requested capability list
upload_cd_probe() {
    local -r REQ_IN=$3
    local PAGE REQ_OUT FILE_SIZE

    PAGE=$(curl --location "$URL") || return

    # The file link that you requested is not valid (anymore).
    if match 'was not found' "$PAGE"; then
        return $ERR_LINK_DEAD
    fi    

    REQ_OUT=c

    if [[ $REQ_IN = *f* ]]; then
        parse_tag '<h3.\+</div>' h3 <<< "$PAGE" && REQ_OUT="${REQ_OUT}f"
    fi

    if [[ $REQ_IN = *s* ]]; then
        FILE_SIZE=$(echo "$PAGE" | 
            parse '<h3.\+</div>' \
            '<p>\([0-9\.]\+[[:space:]]\?[KkMG]\?B\)</p>' ) &&
            translate_size "${FILE_SIZE/,/}" && REQ_OUT="${REQ_OUT}s"
    fi

    if [[ $REQ_IN = *i* ]]; then
        parse_form_input_by_name 'fileid' <<< "$PAGE" && REQ_OUT="${REQ_OUT}i"
    fi

    echo $REQ_OUT
}