elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Security Series.XSS. [Cross Site Scripting]


  Mostrar Mensajes
Páginas: [1]
1  Comunicaciones / Android / Cheatdroid android en: 20 Marzo 2019, 15:53 pm
Hola Buenos días a todos.
Mi pregunta es como parchear aplicaciones de app-purchase en las apk.
No me refiero a lucky patcher, me refiero con poner  por ejemplo si la apk tiene opción hazte pro o unlock pro con cheatdroid parchear.
Es lioso me refiero o nose explicarme mejor para vosotros, ejemplo cheatdroid y la en las preferencias unlock pro (boolean true) para hacerla pro.
Es como ios la aplicación de flex puedes hacer lo mismo, poner boolean true o false.
No se si me explicado bien.
2  Seguridad Informática / Bugs y Exploits / Vulnerablidad en Crime SDPY en: 30 Julio 2017, 16:39 pm
buenas tengo en mi web creada para pruebas y me dice  que tengo una vulnerablidad en crime sdpy .
mi pregunta como puedo explotarla si tengo entendido es algo cookies  o http.
Alguien me puede ayudar plis
3  Foros Generales / Foro Libre / AYUDARME A TRADUCIR UN JUGO EN DE ANDROID JAPANES en: 18 Julio 2013, 18:43 pm
HOLA TENGO TODO LO QUE QUE NECESITO LO PROGRAMAS
PERO ME SALE STRING XML EN JAPONES .
YO QUIERO TRADUCIR EL JUEGO COMPLETO
EL JUEGO QUE QUIERO TRADUCIR ES Dragon Ball Tap Battle ESTA JAPONES
CON APKTOOL SOLO ME SALE DOS VALUES UNO ES NORMAL EL OTRO VALUES -JA
COMO TRADUCIR EL JUEGO .
POR QUE CLASS.DEX HAY SE PUEDE TRADUCIR EL JUEGO
O POR LA CARPETA RES---->RAW NO SE COMO HACERLO
ME AYUDAN GRACIAS
SI LO CONSEGIMOS TRADUCIRLO OFRESCO AYUDA PARA TRADUCIR JUEGOS ANDROID
4  Programación / Ingeniería Inversa / ERROR COM LA EMULAR ANDROID PARA PC en: 18 Enero 2013, 17:58 pm
ola a todos ,no consigo emular android para pc
tengo un windows 7 64bts. se que da todo rato con la pantalla negro
sale los botones de android,era para aprender ingeneria de android
ayudarme
os dejo un vidio

otro por si esta mal el link http://www.youtube.com/watch?v=b3lEN6iSIR8&feature=youtu.be
5  Programación / Ingeniería Inversa / Ola a todos mundo de hacker : He disminuido el peso de una APK en: 15 Enero 2013, 23:17 pm
ola a todos
mi pregunta he echo un ripeo de un juego android de apk
pero el problema que dice !Error a leer los paquetes ,el ripeo fue como de juegos de pc
pero nada..... ;-) no funca
y pido ayuda al ingeneria inversa a android
gracias



(Editado por karmany: He puesto el título en minúsculas. Mensaje reportado.)
6  Programación / Ingeniería Inversa / Re: Modificar imagen de cheat engine? en: 12 Octubre 2012, 02:12 am
como lo haceis
decirmelo por favor me vuelvo loco
intentado con editar el cheat engine
7  Programación / Programación Visual Basic / Re: Ayudarme con mi Hack de conter strike 1.6 en: 24 Julio 2012, 09:27 am




me gustaria mejorar para vosotros
gracias decirme el error
8  Programación / Programación Visual Basic / Re: Ayudarme con mi Hack de conter strike 1.6 en: 24 Julio 2012, 09:06 am
perdona el codigo es
modulo:
Código:
Public Const PROCESS_ALL_ACCESS = &H1F0FFF

Dim f1holder As Integer

Dim timer_pos As Long

'API Declaration

Public Declare Function GetWindowThreadProcessId Lib "user32" (ByVal hwnd As Long, lpdwProcessId As Long) As Long

Public Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long

Public Declare Function WriteProcessMemory Lib "kernel32" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long

Public Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long

Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal Classname As String, ByVal WindowName As String) As Long

Public Declare Function GetKeyPress Lib "user32" Alias "GetAsyncKeyState" (ByVal key As Long) As Integer

Public Declare Function ReadProcessMem Lib "kernel32" Alias "ReadProcessMemory" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, ByRef lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long

Public Function WriteAByte(gamewindowtext As String, address As Long, value As Byte)

Dim hwnd As Long

Dim pid As Long

Dim phandle As Long

hwnd = FindWindow(vbNullString, gamewindowtext)

If (hwnd = 0) Then

MsgBox "The Game Is Not Working", vbCritical, "Error"

End

Exit Function

End If

GetWindowThreadProcessId hwnd, pid

phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)

If (phandle = 0) Then

MsgBox "Can't get ProcessId", vbCritical, "Error"

Exit Function

End If

WriteProcessMemory phandle, address, value, 1, 0&

CloseHandle hProcess

End Function

Public Function WriteAnInt(gamewindowtext As String, address As Long, value As Integer)

Dim hwnd As Long

Dim pid As Long

Dim phandle As Long

hwnd = FindWindow(vbNullString, gamewindowtext)

If (hwnd = 0) Then

MsgBox "The Game Is Not Working", vbCritical, "Error"

End

End If

GetWindowThreadProcessId hwnd, pid

phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)

If (phandle = 0) Then

MsgBox "Can't get ProcessId", vbCritical, "Error"

Exit Function

End If

WriteProcessMemory phandle, address, value, 2, 0&

CloseHandle hProcess

End Function

Public Function WriteALong(gamewindowtext As String, address As Long, value As Long)

Dim hwnd As Long

Dim pid As Long

Dim phandle As Long

hwnd = FindWindow(vbNullString, gamewindowtext)

If (hwnd = 0) Then

MsgBox "The Game Is Not Working", vbCritical, "Error"

End

Exit Function

End If

GetWindowThreadProcessId hwnd, pid

phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)

If (phandle = 0) Then

MsgBox "Can't get ProcessId", vbCritical, "Error"

Exit Function

End If

WriteProcessMemory phandle, address, value, 4, 0&

CloseHandle hProcess

End Function

Public Function ReadAByte(gamewindowtext As String, address As Long, valbuffer As Byte)

Dim hwnd As Long

Dim pid As Long

Dim phandle As Long

hwnd = FindWindow(vbNullString, gamewindowtext)

If (hwnd = 0) Then

MsgBox "The Game Is Not Working", vbCritical, "Error"

End

Exit Function

End If

GetWindowThreadProcessId hwnd, pid

phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)

If (phandle = 0) Then

MsgBox "Can't get ProcessId", vbCritical, "Error"

Exit Function

End If

ReadProcessMem phandle, address, valbuffer, 1, 0&

CloseHandle hProcess

End Function

Public Function ReadAnInt(gamewindowtext As String, address As Long, valbuffer As Integer)

Dim hwnd As Long

Dim pid As Long

Dim phandle As Long

hwnd = FindWindow(vbNullString, gamewindowtext)

If (hwnd = 0) Then

MsgBox "The Game Is Not Working", vbCritical, "Error"

End

Exit Function

End If

GetWindowThreadProcessId hwnd, pid

phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)

If (phandle = 0) Then

MsgBox "Can't get ProcessId", vbCritical, "Error"

Exit Function

End If

ReadProcessMem phandle, address, valbuffer, 2, 0&

CloseHandle hProcess

End Function

Public Function ReadALong(gamewindowtext As String, address As Long, valbuffer As Long)

Dim hwnd As Long

Dim pid As Long

Dim phandle As Long

hwnd = FindWindow(vbNullString, gamewindowtext)

If (hwnd = 0) Then

MsgBox "The Game Is Not Working", vbCritical, "Error"

End

Exit Function

End If

GetWindowThreadProcessId hwnd, pid

phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)

If (phandle = 0) Then

MsgBox "Can't get ProcessId", vbCritical, "Error"

Exit Function

End If

ReadProcessMem phandle, address, valbuffer, 4, 0&

CloseHandle hProcess

End Function

Public Function ReadAFloat(gamewindowtext As String, address As Long, valbuffer As Single)

Dim hWnd As Long

Dim pid As Long

Dim phandle As Long

hWnd = FindWindow(vbNullString, gamewindowtext)

If (hWnd = 0) Then

MsgBox "The Game Is Not Working", vbCritical, "Error"

End

Exit Function

End If

GetWindowThreadProcessId hWnd, pid

phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)

If (phandle = 0) Then

MsgBox "Can't get ProcessId", vbCritical, "Error"

Exit Function

End If

ReadProcessMem phandle, address, valbuffer, 4, 0&

CloseHandle hProcess

End Function

 

Public Function WriteAFloat(gamewindowtext As String, address As Long, value As Single)

Dim hWnd As Long

Dim pid As Long

Dim phandle As Long

hWnd = FindWindow(vbNullString, gamewindowtext)

If (hWnd = 0) Then

MsgBox "The Game Is Not Working", vbCritical, "Error"

End

Exit Function

End If

GetWindowThreadProcessId hWnd, pid

phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)

If (phandle = 0) Then

MsgBox "Can't get ProcessId", vbCritical, "Error"

Exit Function

End If

WriteProcessMemory phandle, address, value, 4, 0&

CloseHandle hProcess

End Function

---------------------
codigo: from
Private Sub Form_Load()
'Codigos By Weeken
Form1.Caption = ("ProyectWeeken.tk | Trainer")
End Sub
-----------------------------------
timer:
Private Sub Timer1_Timer()
'Codigos By Weeken
If Timer1.Interval = 0 Then Timer1.Interval = 1
Interval = 0
Call WriteAlong("<<Aplicacion>>", &H<<Adress>> ,<<Valores>>)
End Sub
----------------------
checkbox:
Private Sub Check1_Click()
'Codigos By Weeken
Timer1.Interval = 1
Timer1.Enabled = True
End Sub
9  Programación / Programación Visual Basic / Ayudarme con mi Hack de conter strike 1.6 en: 24 Julio 2012, 02:06 am
 :D :o ;-)
lo creado yo en vb 6
pero  me sale la  ***** de error


ayudarme esto deseperado
gracias
Páginas: [1]
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines