Перейти к содержимому
View in the app

A better way to browse. Learn more.

Zloplay community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[Release]UserID , XUID , GUID Grabber

Featured Replies

Опубликовано:

hi every body

that's a simple program to get UserID , XUID , GUID Just Download ;)

 

picture

image.php?di=HSJI

 

Virus Scan link

https://www.virustotal.com/file/0f7dd763965163257abf2faa17dc42da210f4cf1108353002dd468991c6fc42e/analysis/1360762814/

 

source code Visual Basic 2010

Public Class Form1

   Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
       If (Process.GetProcessesByName("iw5m.dat").Length = 0) Then
           MsgBox("Frist Run IW5M", vbInformation)
           Application.Exit()
       Else
           TextBox1.Text = ReadInteger("iw5m.dat", 94876120)
           Timer1.Enabled = True
       End If
   End Sub

   Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
       If (Process.GetProcessesByName("iw5m.dat").Length = 0) Then
           Timer1.Enabled = False
           MsgBox("IW5M Closed and Application Must be Closed", vbInformation)
           Application.Exit()
       Else
           TextBox2.Text = "1100001000" + Hex(ReadInteger("iw5m.dat", 94876120))
           Dim saeed As Long
           saeed = UnHex(TextBox2.Text)
           TextBox3.Text = saeed
       End If

   End Sub

   Public Function UnHex(ByVal sHex As String) As Long
       UnHex = Val("&H" & sHex)
   End Function

   Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
       MsgBox("Created By Sa3id " + vbNewLine + "Coded in VB", vbInformation)
   End Sub
End Class

 

Memory Writer (ReadWritingMemory.vb) source

Module ReadWritingMemory
   Private Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Integer, ByVal bInheritHandle As Integer, ByVal dwProcessId As Integer) As Integer

   Private Declare Function WriteProcessMemory1 Lib "kernel32" Alias "WriteProcessMemory" (ByVal hProcess As Integer, ByVal lpBaseAddress As Integer, ByRef lpBuffer As Integer, ByVal nSize As Integer, ByRef lpNumberOfBytesWritten As Integer) As Integer
   Private Declare Function WriteProcessMemory2 Lib "kernel32" Alias "WriteProcessMemory" (ByVal hProcess As Integer, ByVal lpBaseAddress As Integer, ByRef lpBuffer As Single, ByVal nSize As Integer, ByRef lpNumberOfBytesWritten As Integer) As Single
   Private Declare Function WriteProcessMemory3 Lib "kernel32" Alias "WriteProcessMemory" (ByVal hProcess As Integer, ByVal lpBaseAddress As Integer, ByRef lpBuffer As Long, ByVal nSize As Integer, ByRef lpNumberOfBytesWritten As Integer) As Long

   Private Declare Function ReadProcessMemory1 Lib "kernel32" Alias "ReadProcessMemory" (ByVal hProcess As Integer, ByVal lpBaseAddress As Integer, ByRef lpBuffer As Integer, ByVal nSize As Integer, ByRef lpNumberOfBytesWritten As Integer) As Integer
   Private Declare Function ReadProcessMemory2 Lib "kernel32" Alias "ReadProcessMemory" (ByVal hProcess As Integer, ByVal lpBaseAddress As Integer, ByRef lpBuffer As Single, ByVal nSize As Integer, ByRef lpNumberOfBytesWritten As Integer) As Single
   Private Declare Function ReadProcessMemory3 Lib "kernel32" Alias "ReadProcessMemory" (ByVal hProcess As Integer, ByVal lpBaseAddress As Integer, ByRef lpBuffer As Long, ByVal nSize As Integer, ByRef lpNumberOfBytesWritten As Integer) As Long

   Const PROCESS_ALL_ACCESS = &H1F0FF

   Public Function WriteDMAInteger(ByVal Process As String, ByVal Address As Integer, ByVal Offsets As Integer(), ByVal Value As Integer, ByVal Level As Integer, Optional ByVal nsize As Integer = 4) As Boolean
       Try
           Dim lvl As Integer = Address
           For i As Integer = 1 To Level
               lvl = ReadInteger(Process, lvl, nsize) + Offsets(i - 1)
           Next
           WriteInteger(Process, lvl, Value, nsize)
           Return True
       Catch ex As Exception
           Return False
       End Try
   End Function

   Public Function ReadDMAInteger(ByVal Process As String, ByVal Address As Integer, ByVal Offsets As Integer(), ByVal Level As Integer, Optional ByVal nsize As Integer = 4) As Integer
       Try
           Dim lvl As Integer = Address
           For i As Integer = 1 To Level
               lvl = ReadInteger(Process, lvl, nsize) + Offsets(i - 1)
           Next
           Dim vBuffer As Integer
           vBuffer = ReadInteger(Process, lvl, nsize)
           Return vBuffer
       Catch ex As Exception

       End Try
   End Function

   Public Function WriteDMAFloat(ByVal Process As String, ByVal Address As Integer, ByVal Offsets As Integer(), ByVal Value As Single, ByVal Level As Integer, Optional ByVal nsize As Integer = 4) As Boolean
       Try
           Dim lvl As Integer = Address
           For i As Integer = 1 To Level
               lvl = ReadFloat(Process, lvl, nsize) + Offsets(i - 1)
           Next
           WriteFloat(Process, lvl, Value, nsize)
           Return True
       Catch ex As Exception
           Return False
       End Try
   End Function

   Public Function ReadDMAFloat(ByVal Process As String, ByVal Address As Integer, ByVal Offsets As Integer(), ByVal Level As Integer, Optional ByVal nsize As Integer = 4) As Single
       Try
           Dim lvl As Integer = Address
           For i As Integer = 1 To Level
               lvl = ReadFloat(Process, lvl, nsize) + Offsets(i - 1)
           Next
           Dim vBuffer As Single
           vBuffer = ReadFloat(Process, lvl, nsize)
           Return vBuffer
       Catch ex As Exception

       End Try
   End Function

   Public Function WriteDMALong(ByVal Process As String, ByVal Address As Integer, ByVal Offsets As Integer(), ByVal Value As Long, ByVal Level As Integer, Optional ByVal nsize As Integer = 4) As Boolean
       Try
           Dim lvl As Integer = Address
           For i As Integer = 1 To Level
               lvl = ReadLong(Process, lvl, nsize) + Offsets(i - 1)
           Next
           WriteLong(Process, lvl, Value, nsize)
           Return True
       Catch ex As Exception
           Return False
       End Try
   End Function

   Public Function ReadDMALong(ByVal Process As String, ByVal Address As Integer, ByVal Offsets As Integer(), ByVal Level As Integer, Optional ByVal nsize As Integer = 4) As Long
       Try
           Dim lvl As Integer = Address
           For i As Integer = 1 To Level
               lvl = ReadLong(Process, lvl, nsize) + Offsets(i - 1)
           Next
           Dim vBuffer As Long
           vBuffer = ReadLong(Process, lvl, nsize)
           Return vBuffer
       Catch ex As Exception

       End Try
   End Function

   Public Sub WriteNOPs(ByVal ProcessName As String, ByVal Address As Long, ByVal NOPNum As Integer)
       Dim C As Integer
       Dim B As Integer
       If ProcessName.EndsWith(".exe") Then
           ProcessName = ProcessName.Replace(".exe", "")
       End If
       Dim MyP As Process() = Process.GetProcessesByName(ProcessName)
       If MyP.Length = 0 Then
           MessageBox.Show(ProcessName & " isn't open!")
           Exit Sub
       End If
       Dim hProcess As IntPtr = OpenProcess(PROCESS_ALL_ACCESS, 0, MyP(0).Id)
       If hProcess = IntPtr.Zero Then
           MessageBox.Show("Failed to open " & ProcessName & "!")
           Exit Sub
       End If

       B = 0
       For C = 1 To NOPNum
           Call WriteProcessMemory1(hProcess, Address + B, &H90, 1, 0&)
           B = B + 1
       Next C
   End Sub

   Public Sub WriteXBytes(ByVal ProcessName As String, ByVal Address As Long, ByVal Value As String)
       If ProcessName.EndsWith(".exe") Then
           ProcessName = ProcessName.Replace(".exe", "")
       End If
       Dim MyP As Process() = Process.GetProcessesByName(ProcessName)
       If MyP.Length = 0 Then
           MessageBox.Show(ProcessName & " isn't open!")
           Exit Sub
       End If
       Dim hProcess As IntPtr = OpenProcess(PROCESS_ALL_ACCESS, 0, MyP(0).Id)
       If hProcess = IntPtr.Zero Then
           MessageBox.Show("Failed to open " & ProcessName & "!")
           Exit Sub
       End If

       Dim C As Integer
       Dim B As Integer
       Dim D As Integer
       Dim V As Byte

       B = 0
       D = 1
       For C = 1 To Math.Round((Len(Value) / 2))
           V = Val("&H" & Mid$(Value, D, 2))
           Call WriteProcessMemory1(hProcess, Address + B, V, 1, 0&)
           B = B + 1
           D = D + 2
       Next C

   End Sub

   Public Sub WriteInteger(ByVal ProcessName As String, ByVal Address As Integer, ByVal Value As Integer, Optional ByVal nsize As Integer = 4)
       If ProcessName.EndsWith(".exe") Then
           ProcessName = ProcessName.Replace(".exe", "")
       End If
       Dim MyP As Process() = Process.GetProcessesByName(ProcessName)
       If MyP.Length = 0 Then
           MessageBox.Show(ProcessName & " isn't open!")
           Exit Sub
       End If
       Dim hProcess As IntPtr = OpenProcess(PROCESS_ALL_ACCESS, 0, MyP(0).Id)
       If hProcess = IntPtr.Zero Then
           MessageBox.Show("Failed to open " & ProcessName & "!")
           Exit Sub
       End If

       Dim hAddress, vBuffer As Integer
       hAddress = Address
       vBuffer = Value
       WriteProcessMemory1(hProcess, hAddress, CInt(vBuffer), nsize, 0)
   End Sub

   Public Sub WriteFloat(ByVal ProcessName As String, ByVal Address As Integer, ByVal Value As Single, Optional ByVal nsize As Integer = 4)
       If ProcessName.EndsWith(".exe") Then
           ProcessName = ProcessName.Replace(".exe", "")
       End If
       Dim MyP As Process() = Process.GetProcessesByName(ProcessName)
       If MyP.Length = 0 Then
           MessageBox.Show(ProcessName & " isn't open!")
           Exit Sub
       End If
       Dim hProcess As IntPtr = OpenProcess(PROCESS_ALL_ACCESS, 0, MyP(0).Id)
       If hProcess = IntPtr.Zero Then
           MessageBox.Show("Failed to open " & ProcessName & "!")
           Exit Sub
       End If

       Dim hAddress As Integer
       Dim vBuffer As Single

       hAddress = Address
       vBuffer = Value
       WriteProcessMemory2(hProcess, hAddress, vBuffer, nsize, 0)
   End Sub

   Public Sub WriteLong(ByVal ProcessName As String, ByVal Address As Integer, ByVal Value As Long, Optional ByVal nsize As Integer = 4)
       If ProcessName.EndsWith(".exe") Then
           ProcessName = ProcessName.Replace(".exe", "")
       End If
       Dim MyP As Process() = Process.GetProcessesByName(ProcessName)
       If MyP.Length = 0 Then
           MessageBox.Show(ProcessName & " isn't open!")
           Exit Sub
       End If
       Dim hProcess As IntPtr = OpenProcess(PROCESS_ALL_ACCESS, 0, MyP(0).Id)
       If hProcess = IntPtr.Zero Then
           MessageBox.Show("Failed to open " & ProcessName & "!")
           Exit Sub
       End If

       Dim hAddress As Integer
       Dim vBuffer As Long

       hAddress = Address
       vBuffer = Value
       WriteProcessMemory3(hProcess, hAddress, vBuffer, nsize, 0)
   End Sub

   Public Function ReadInteger(ByVal ProcessName As String, ByVal Address As Integer, Optional ByVal nsize As Integer = 4) As Integer
       If ProcessName.EndsWith(".exe") Then
           ProcessName = ProcessName.Replace(".exe", "")
       End If
       Dim MyP As Process() = Process.GetProcessesByName(ProcessName)
       If MyP.Length = 0 Then
           MessageBox.Show(ProcessName & " isn't open!")
           Exit Function
       End If
       Dim hProcess As IntPtr = OpenProcess(PROCESS_ALL_ACCESS, 0, MyP(0).Id)
       If hProcess = IntPtr.Zero Then
           MessageBox.Show("Failed to open " & ProcessName & "!")
           Exit Function
       End If

       Dim hAddress, vBuffer As Integer
       hAddress = Address
       ReadProcessMemory1(hProcess, hAddress, vBuffer, nsize, 0)
       Return vBuffer
   End Function

   Public Function ReadFloat(ByVal ProcessName As String, ByVal Address As Integer, Optional ByVal nsize As Integer = 4) As Single
       If ProcessName.EndsWith(".exe") Then
           ProcessName = ProcessName.Replace(".exe", "")
       End If
       Dim MyP As Process() = Process.GetProcessesByName(ProcessName)
       If MyP.Length = 0 Then
           MessageBox.Show(ProcessName & " isn't open!")
           Exit Function
       End If
       Dim hProcess As IntPtr = OpenProcess(PROCESS_ALL_ACCESS, 0, MyP(0).Id)
       If hProcess = IntPtr.Zero Then
           MessageBox.Show("Failed to open " & ProcessName & "!")
           Exit Function
       End If

       Dim hAddress As Integer
       Dim vBuffer As Single

       hAddress = Address
       ReadProcessMemory2(hProcess, hAddress, vBuffer, nsize, 0)
       Return vBuffer
   End Function

   Public Function ReadLong(ByVal ProcessName As String, ByVal Address As Integer, Optional ByVal nsize As Integer = 4) As Long
       If ProcessName.EndsWith(".exe") Then
           ProcessName = ProcessName.Replace(".exe", "")
       End If
       Dim MyP As Process() = Process.GetProcessesByName(ProcessName)
       If MyP.Length = 0 Then
           MessageBox.Show(ProcessName & " isn't open!")
           Exit Function
       End If
       Dim hProcess As IntPtr = OpenProcess(PROCESS_ALL_ACCESS, 0, MyP(0).Id)
       If hProcess = IntPtr.Zero Then
           MessageBox.Show("Failed to open " & ProcessName & "!")
           Exit Function
       End If

       Dim hAddress As Integer
       Dim vBuffer As Long

       hAddress = Address
       ReadProcessMemory3(hProcess, hAddress, vBuffer, nsize, 0)
       Return vBuffer
   End Function

End Module

 

[attachment=0]UserID,Xuid,GUID.rar[/attachment]

Опубликовано:

Give Credits to , Jorndel When using his Memory Class -_-

Опубликовано:
remove pls

Why?

Is it yours or are you just jealous? :D

 

lol he think Win32.SuspectCrc is important problem :D

Опубликовано:
you do realize that guid == xuid, right?

 

also

>visual basic

I cant even

 

yes GUID == XUID But Guid used in Infinity script

GUID(Decimal)

XUID(Hex)

Опубликовано:
remove pls

Why?

Is it yours or are you just jealous? :D

 

lol he think Win32.SuspectCrc is important problem :D

._.

 

You're an idiot.

 

:| thanks for calling me idiot

Опубликовано:
you do realize that guid == xuid, right?

 

also

>visual basic

I cant even

 

yes GUID == XUID But Guid used in Infinity script

GUID(Decimal)

XUID(Hex)

They're the same fucking thing. And if you think its a good idea to write out GUID's as a decimal then you are clearly have no experience with any real coding.

Опубликовано:

Nice program :-)

 

and yes Guid and xuid are the same , but this tool is made specifically for Admin Plugin & Infinity Admin Mode which use the Decimal XUID and Call It GUID :-)

 

 

Nearly forgot , Thanks Sa3id for the program and mostly for the SourceCode :)

Опубликовано:

Thank you. !!

  • 3 weeks later...
Опубликовано:
can give full source code this got so many error and i am using visual c# 2010 express :D

 

it's Visual Basic not C#.net

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Гость
Ответить в тему...

Сейчас на странице 0

  • Нет пользователей, просматривающих эту страницу

Важная информация

Используя этот сайт, вы соглашаетесь Условия использования.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.