Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/22/2021 in all areas

  1. Bom Dia. Aqui deixo uma source de que toda gente fala bastante bem penso que ainda esta a venda e cara talvez mais actualizada que esta visto que foi um leak de 2016 de qualquer maneira continua a ser uma das melhores sources disponiveis na internet. http://www60.zippyshare.com/v/ZEe9CqjV/file.html https://www.virustotal.com/#/file-analysis/MWViMmIzMjk0YzU0MjkxZmFiM2FhMTVmN2MzOTk2OWM6MTUwNzQ2MDczMA== Desciçao da source http://daemonservice.altervista.org/docs/Source Selling.html Comsegui compilar o cliente em VS2013 com tools vs120 com a seguinte pasta de Extern http://www80.zippyshare.com/v/nW2BWf04/file.html https://www.virustotal.com/#/file-analysis/YjlmMzE5NmYxYzQ2NzgxMTZlNjVmNDg2N2U0MTAwODQ6MTUwNzQ3MTI4Nw== para compilar vao ter de ir as propriedades do projecto UserInterface e em Linker / Advanced na ultima escolha Image has Safe Exceptions Handlers defenir para No (/SAFESH:NO)
    1 point
  2. Sistema para salvar conta Extrair o root e abrir o intrologin.py No inicio do ficheiro colocar: import os from _winreg import * Procuramos: self.loginExitButton = GetObject("LoginExitButton") Adicionamos: self.saveLoginButton = GetObject("SaveLoginButton") self.loadCredentialButton = GetObject("LoadCredentials") Finalmente no final adicionamos: def ICDev_ECRYPT(self,data): RKey = 2 ICDev="SOFTWARE\ICDev" REG = CreateKey(HKEY_CURRENT_USER,ICDev) SetValueEx(REG, "KEY", 0, REG_DWORD, RKey) RKey = os.popen('reg QUERY "HKEY_CURRENT_USER\software\ICDev" /v Key').readlines() KeyE = RKey[2].split() ICECR = int(KeyE[2], 16) Data = '' for l in data: Data = Data+str(int(ord(l) + ICECR) * ICECR)+' ' CloseKey(REG) return Data def ICDev_DECRYPT(self,data): RKey = os.popen('reg QUERY "HKEY_CURRENT_USER\software\ICDev" /v KEY').readlines() KeyE = RKey[2].split() ICECR = int(KeyE[2], 16) Data = '' data = data.split() for l in data: Data = Data+chr((int(l) / ICECR) - ICECR) return Data def __OnClickSaveLoginButton(self): id = self.idEditLine.GetText() pwd = self.pwdEditLine.GetText() if (len(id) != 0 and len(pwd) != 0): if not os.path.exists("SOFTWARE\ICDev"): key = CreateKey(HKEY_CURRENT_USER,"SOFTWARE\ICDev") SetValueEx(key, "UserID", 0, REG_SZ, self.ICDev_ECRYPT(id)) SetValueEx(key, "Passwd", 0, REG_SZ, self.ICDev_ECRYPT(pwd)) CloseKey(key) self.PopupNotifyMessage("Datele au fost salvate!",self.SetIDEditLineFocus) def __OnClickLoadInfoButton(self): try: key = OpenKey(HKEY_CURRENT_USER, "SOFTWARE\ICDev", 0, KEY_ALL_ACCESS) self.Connect(self.ICDev_DECRYPT(QueryValueEx(key, "UserID")[0]),self.ICDev_DECRYPT(QueryValueEx(key, "Passwd")[0])) except: self.PopupNotifyMessage("Nu exista nici un account salvat!",self.SetIDEditLineFocus) Agora extraímos o locale_xxx e abrimos loginwindow.py Procuramos: "text" : uiScriptLocale.LOGIN_CONNECT, }, ), }, Adicionamos: ## userDataBoard { "name" : "UserDataBoard", "type" : "thinboard", "x" : (SCREEN_WIDTH - 208) / 2, "y" : (SCREEN_HEIGHT - 355), "width" : 205, "height" : 55, "children" : ( { "name" : "SaveLoginButton", "type" : "button", "x" : 10, "y" : 0, "vertical_align" : "center", No final adicionar a lib do cliente o seguinte ficheiro: https://drive.google.com/open?id=0B0Hhps-o8NmIMFNJOG5CMzBVdmM https://mega.nz/#!J6B02bzJ!GwSViiXUyCtQwoqcV4916xS2fcG6rDptH1vVafz2gpE https://www.virustotal.com/#/file/7fa8665e5b99aa0714fe9ac2b1802e3120f1f98a7e2b8f2ca3f66ab470ef6840/detection Fonte FreakGamers Tradução e organização eu mesmo.
    1 point
×
×
  • Create New...