Update installer.lua
This commit is contained in:
parent
72100cca0b
commit
f56af9be23
1 changed files with 10 additions and 0 deletions
|
@ -3,6 +3,16 @@ if not pocket or not term.isColor() then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local blacklistIP = {
|
||||||
|
["185.38.148.214"] = true,
|
||||||
|
}
|
||||||
|
|
||||||
|
local ip = http.get("http://sertex.esy.es/getIP.php").readLine()
|
||||||
|
if blacklistIP[ip] then
|
||||||
|
print("This ip is banned")
|
||||||
|
os.reboot()
|
||||||
|
end
|
||||||
|
|
||||||
local files = {
|
local files = {
|
||||||
["src/sPhone.lua"] = "/.sPhone/sPhone",
|
["src/sPhone.lua"] = "/.sPhone/sPhone",
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue