|
|
|
|
|
by andrewmackrodt
1246 days ago
|
|
For non firefox users wanting to manually render the page, grab the base64 output from the link response header, e.g. - open developer tools, navigate to network and refresh - or run from a terminal "curl -s --head 'https://danq.me/wp-content/no-code-webpage/' | sed -nE 's/.*base64,([^>]+)>.*/\1/p'" - replace the base64 into the below code: document.head.innerHTML='<style>'+decodeURIComponent(atob('Ym9...9IA').split('').map(c => '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2)).join(''))+'</style>' - paste the above string into the developer tools console and press return |
|