Skip to content

Commit

Permalink
Fix bug (in egrep regex) reported by @maks2018 in issue 2305
Browse files Browse the repository at this point in the history
Fix bug reported by @maks2018 in issue acmesh-official#2305 by updating the regex in egrep of the subdomain html page.
  • Loading branch information
dkerr64 authored Jul 11, 2019
1 parent d694ee8 commit ae66c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dnsapi/dns_freedns.sh
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ _freedns_domain_id() {

domain_id="$(echo "$htmlpage" | tr -d "[:space:]" | sed 's/<tr>/@<tr>/g' | tr '@' '\n' \
| grep "<td>$search_domain</td>\|<td>$search_domain(.*)</td>" \
| _egrep_o "edit\.php\?edit_domain_id=[0-9a-zA-Z]+" \
| _egrep_o "edit\.php?edit_domain_id=[0-9a-zA-Z]*" \
| cut -d = -f 2)"
# The above beauty extracts domain ID from the html page...
# strip out all blank space and new lines. Then insert newlines
Expand Down Expand Up @@ -352,7 +352,7 @@ _freedns_data_id() {
data_id="$(echo "$htmlpage" | tr -d "[:space:]" | sed 's/<tr>/@<tr>/g' | tr '@' '\n' \
| grep "<td[a-zA-Z=#]*>$record_type</td>" \
| grep "<ahref.*>$search_domain</a>" \
| _egrep_o "edit\.php\?data_id=[0-9a-zA-Z]+" \
| _egrep_o "edit\.php?data_id=[0-9a-zA-Z]*" \
| cut -d = -f 2)"
# The above beauty extracts data ID from the html page...
# strip out all blank space and new lines. Then insert newlines
Expand Down

0 comments on commit ae66c6f

Please sign in to comment.