Advertisement
vipmodproff

sᴇʀᴠᴇʀ ᴠɪᴘ x ᴛᴇᴀᴍ ᴘᴀɴᴇʟ

Jul 27th, 2022 (edited)
642
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.32 KB | None | 0 0
  1. LoginURL= "http://overwhelmed-powder.000webhostapp.com/Login.php"
  2.  
  3. function split(s, delimiter)  result = {}; for match in (s..delimiter):gmatch("(.-)"..delimiter) do table.insert(result, match); end return result; end function WriteText(Direc,Text)f = io.open(Direc, "w") f:write(Text) f:close() end  function MakeRequest(URL,parm)  Content = gg.makeRequest(URL,nil,parm).content load('Dfile  = '.."string.char(table.unpack(".. "{"..Content:gsub(string.char(tonumber("40",16))..string.char(tonumber("45",16))..string.char(tonumber("6e",16))..string.char(tonumber("63",16))..string.char(tonumber("72",16))..string.char(tonumber("79",16))..string.char(tonumber("70",16))..string.char(tonumber("74",16))..string.char(tonumber("65",16))..string.char(tonumber("64",16))..string.char(tonumber("20",16))..string.char(tonumber("72",16))..string.char(tonumber("65",16))..string.char(tonumber("73",16))..string.char(tonumber("70",16))..string.char(tonumber("6f",16))..string.char(tonumber("6e",16))..string.char(tonumber("73",16))..string.char(tonumber("65",16))..string.char(tonumber("20",16))..string.char(tonumber("42",16))..string.char(tonumber("79",16))..string.char(tonumber("20",16))..string.char(tonumber("44",16))..string.char(tonumber("61",16))..string.char(tonumber("72",16))..string.char(tonumber("6b",16))..string.char(tonumber("69",16))..string.char(tonumber("6e",16))..string.char(tonumber("67",16))..string.char(tonumber("43",16))..string.char(tonumber("68",16))..string.char(tonumber("65",16))..string.char(tonumber("61",16))..string.char(tonumber("74",16))..string.char(tonumber("65",16))..string.char(tonumber("72",16))..string.char(tonumber("2c",16)),""):gsub(",","~ 255,").."~ 255}".."))")() return Dfile  end
  4. local open = io.open  local function read_file(path)  local file = open(path, "rb") if not file then return nil end  local content = file:read ("*a") file:close() return content end
  5. function JSONStringify(Json)  JsonText = "" for x=2,#Json,2  do  if x == 2 then  JsonText = "{"..'"'..Json[x-1]..'":'..'"'..Json[x]..'"'  else JsonText =JsonText..',"'..Json[x-1]..'":'..'"'..Json[x]..'"'  end if x == #Json then JsonText = JsonText.."}" end end return JsonText end
  6.  
  7.  
  8. function Main()
  9.  
  10. if read_file(gg.EXT_STORAGE.."/Login.conf") ~= nil and string.len(read_file(gg.EXT_STORAGE.."/Login.conf"))  > 2 then
  11. Choice = gg.choice({"↪Enter","📛Exit Account"})
  12. if not Choice then
  13. return
  14. end
  15. if Choice == 1 then
  16. __ = read_file(gg.EXT_STORAGE.."/Login.conf")
  17. ResponseContent = MakeRequest(LoginURL,__)
  18. Data = split(ResponseContent,"{SeParator}{SeParator}{Separator}")
  19. gg.alert(Data[1])
  20. load(Data[2])()
  21. return;
  22. else
  23. WriteText(gg.EXT_STORAGE.."/Login.conf","")
  24. end
  25. end
  26. Prompt = gg.prompt({"👤ᴜsᴇʀɴᴀᴍᴇ","🔐ᴘᴀssᴡᴏʀᴅ","❌ᴇxɪᴛ"},nil,{"text","text","checkbox"})
  27.     if not Prompt then
  28.     return
  29.     end
  30.     if Prompt[3] then
  31.     return
  32.     end
  33.  
  34. TempLogin = JSONStringify({"Username",Prompt[1],"Password",Prompt[2]})
  35.  
  36. ResponseContent = MakeRequest(LoginURL,TempLogin)
  37. Data = split(ResponseContent,"{SeParator}{SeParator}{Separator}")
  38. if #Data >1 then
  39. if read_file(gg.EXT_STORAGE.."/Login.conf") == nil or string.len(read_file(gg.EXT_STORAGE.."/Login.conf")) < 2  then
  40. WriteText(gg.EXT_STORAGE.."/Login.conf",TempLogin)
  41. end
  42. gg.alert(Data[1])
  43. if not Data[2] then
  44. Main()
  45. end
  46. load(Data[2])()
  47. else
  48. load(Data[1])()
  49. Main()
  50. end
  51. end
  52.  
  53. Main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement