💾 Archived View for gopher.zcrayfish.soy › 0 › irc › w3.sh captured on 2022-07-16 at 14:18:18.
⬅️ Previous capture (2022-03-01)
-=-=-=-=-=-=-
#! /bin/ksh #Set your hostname after this variable fqdn=gopher.zcrayfish.soy cr=$(printf '\r') crlf=$(printf '\r\n') null=$(printf '') error400 () { printf "%s\15\12" "HTTP/1.0 400 Bad Request" \ "Content-Type: text/plain; charset=us-ascii" \ "Allow: GET" \ "Date: $date" \ "Server: gopher to http gateway at $fqdn" \ "Connection: close" \ "" \ "HTTP/1.0 400 Bad Request" \ "Request could not be understood - bad syntax" \ "" \ "gopher to http gateway at $fqdn" exit } error404 () { printf "%s\15\12" "HTTP/1.0 404 Not Found" \ "Content-Type: text/plain; charset=us-ascii" \ "Date: $date" \ "Server: gopher to http gateway at $fqdn" \ "Connection: close" \ "" \ "HTTP/1.0 404 Not Found" \ "'$obj' doesn't exist!" \ "This resource cannot be located." \ "" \ "gopher to http gateway at $fqdn" } error501 () { printf "%s\15\12" "HTTP/1.0 501 Not Implemented" \ "Content-Type: text/plain; charset=us-ascii" \ "Allow: GET" \ "Date: $date" \ "Server: gopher to http gateway at $fqdn" \ "Connection: close" \ "" \ "HTTP/1.0 501 Not Implemented" \ "This error has accoured for one of the following reasons:" \ " *This server only implements the GET method (e.g. your browser sent a HEAD or PUT)" \ " *This server, while acting as a gateway or proxy, does not support CSO queries." \ "" \ "gopher to http gateway at $fqdn" exit } # Gather request read -t 30 -r cmd obj proto badclient #Did we time out... If so just exit, HTTP 1.0 does not have a timeout code test "$?" != "0" && exit # See if request is a GET, if not, throw it away test "$cmd" != 'GET' && error501 && exit # Likewise ignore invalid gets too. test ! -z "$badclient" && error400 && exit # If it all looks good, find out what they want filename="$(printf "%s" "$obj" | sed -e 's/%2c/,/' -e 's/%20/ /')" # Gather headers, assume headers are done when we see CRLF or weird crap while /bin/true; do read -t 300 -r header headervalue test "$header" = "$cr" && break test "$header" = "$crlf" && break test "$header" = "$null" && break header="$(printf "$header" | sed -e 's/://')" eval $header=$headervalue #[ "$header" ==