File size: 553 Bytes
f5baa4d 0341aa2 f5baa4d ec71901 f5baa4d ec71901 837f896 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/bin/bash
# Author : Bing
# Script follows here:
# Define a function to load a web page using chromium browser
load_page() {
# The first argument is the web page url
url=$1
# Open the url in a new tab of chromium browser
chromium --new-tab $url --window-position=0,0 --window-size=1280,1024
}
# Generate a random UUID using /proc/sys/kernel/random/uuid
UUID=$(cat /proc/sys/kernel/random/uuid)
# Load the first web page with the random UUID
load_page "https://copilot.microsoft.com/turing/captcha/challenge?q=&iframeid=local-gen-$UUID&h=1" |