1234567891011121314151617181920212223242526272829303132333435 |
- const con = (url) => {
- document.querySelector("body").innerHTML = `<strong>Carregando...</strong>`
-
- const wtf = (m) => {
- fetch(m)
- console.log(`Conecting to ${m}...`)
- }
-
- let listD = ["https://github.com",
- "https://jul10l1r4.github.io/",
- "https://twitter.com",
- "https://www.instagram.com/",
- "https://wowjs.uk/",
- "https://notabug.org/",
- "https://discordapp.com/",
- "https://leadlovers.com/account/login?ReturnURL=/machine"]
-
- let result = listD.map(wtf)
-
- if(result){
-
- fetch(url).then((d1) => {
-
- return d1.text()
- }).then((d2) => {
-
- document.querySelector("body").innerHTML = `<h1>Ok</h1>`
-
- window.location = url
- return true
- })
- }else{
- document.querySelector("body").innerHTML = `Houve um erro em sua segurança, que estranho...`
- }
- }
|