change ip getting
This commit is contained in:
31
routes/ip.js
Normal file
31
routes/ip.js
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
const { app } = require("../index.js")
|
||||||
|
|
||||||
|
app.get("/ip", (rreq,rres) => {
|
||||||
|
rres.send(`
|
||||||
|
<style>body { background-color: #000; color: #fff; display: grid; place-items: center;}</style>
|
||||||
|
<pre>
|
||||||
|
▐▀▄ ▄▀▌ ▄▄▄▄▄▄▄
|
||||||
|
▌▒▒▀▄▄▄▄▄▀▒▒▐▄▀▀▒██▒██▒▀▀▄
|
||||||
|
▐▒▒▒▒▀▒▀▒▀▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▀▄
|
||||||
|
▌▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▄▒▒▒▒▒▒▒▒▒▒▒▒▀▄
|
||||||
|
▀█▒▒▒█▌▒▒█▒▒▐█▒▒▒▀▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▌
|
||||||
|
▀▌▒▒▒▒▒▒▀▒▀▒▒▒▒▒▒▀▀▒▒▒▒▒▒▒▒▒▒▒▒▒▒▐ ▄▄
|
||||||
|
▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▌▄█▒█
|
||||||
|
▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒█▒█▀
|
||||||
|
▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒█▀
|
||||||
|
▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▌
|
||||||
|
▌▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▐
|
||||||
|
▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▌
|
||||||
|
▌▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▐
|
||||||
|
▐▄▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▄▌
|
||||||
|
▀▄▄▀▀▀▀▀▄▄▀▀▀▀▀▀▀▄▄▀▀▀▀▀▄▄▀
|
||||||
|
|
||||||
|
CF-Connecting-IP: ${rreq.get("cf-connecting-ip")}
|
||||||
|
</pre>`)
|
||||||
|
})
|
||||||
|
|
||||||
|
app.get("/iplain", (rreq,rres) => {
|
||||||
|
rres.send(rreq.get("cf-connecting-ip"))
|
||||||
|
})
|
||||||
|
|
||||||
|
module.exports = {app}
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
const { app } = require("../index.js")
|
|
||||||
|
|
||||||
app.get("/pusheen", (rreq,rres) => {
|
|
||||||
rres.send(`
|
|
||||||
<pre>
|
|
||||||
Your IP: ${rreq.ip}
|
|
||||||
|
|
||||||
▐▀▄ ▄▀▌ ▄▄▄▄▄▄▄
|
|
||||||
▌▒▒▀▄▄▄▄▄▀▒▒▐▄▀▀▒██▒██▒▀▀▄
|
|
||||||
▐▒▒▒▒▀▒▀▒▀▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▀▄
|
|
||||||
▌▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▄▒▒▒▒▒▒▒▒▒▒▒▒▀▄
|
|
||||||
▀█▒▒▒█▌▒▒█▒▒▐█▒▒▒▀▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▌
|
|
||||||
▀▌▒▒▒▒▒▒▀▒▀▒▒▒▒▒▒▀▀▒▒▒▒▒▒▒▒▒▒▒▒▒▒▐ ▄▄
|
|
||||||
▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▌▄█▒█
|
|
||||||
▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒█▒█▀
|
|
||||||
▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒█▀
|
|
||||||
▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▌
|
|
||||||
▌▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▐
|
|
||||||
▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▌
|
|
||||||
▌▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▐
|
|
||||||
▐▄▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▄▌
|
|
||||||
▀▄▄▀▀▀▀▀▄▄▀▀▀▀▀▀▀▄▄▀▀▀▀▀▄▄▀
|
|
||||||
</pre>`)
|
|
||||||
})
|
|
||||||
|
|
||||||
module.exports = {app}
|
|
||||||
Reference in New Issue
Block a user