Jump to content

Devil May Cry 4 small trainer


anath3ma

Recommended Posts

well i have decide to make a game trainer winth python

and i will post a sample

 

 

[glow=gray,2,300]from ctypes import *

import sys

import os

import win32process

import win32con

def neroEx():

hWnd = windll.user32.FindWindowA(0, 'Devil May Cry 4')

if (hWnd > 0):

print '*********************************************************'

print 'Game Found!'

print 'Lets Find The ProcessId'

Pid = win32process.GetWindowThreadProcessId(hWnd)

print 'Open The Process'

for i in Pid:

hAndle = windll.kernel32.OpenProcess(win32con.PROCESS_ALL_ACCESS,0,i)

if (hAndle > 0):

print 'Ok We Got Handle :',hAndle

print 'Trying To Inject The Arbitary Code ->'

try:

windll.kernel32.WriteProcessMemory(hAndle,[glow=red,2,300]0x7ea4a8[/glow],[glow=red,2,300]0x90[/glow],4,0)

windll.kernel32.WriteProcessMemory(hAndle,[glow=red,2,300]0x7ea4a9[/glow],[glow=red,2,300]0x90[/glow],4,0)

windll.kernel32.WriteProcessMemory(hAndle,[glow=red,2,300]0x7ea4a10[/glow],[glow=red,2,300]0x90[/glow],4,0)

print 'Arbitary Code Sucessfull INjected !'

print '*********************************************************'

except:

print 'I Cant Inject The Code'

 

def loadLibs():

os.system('color 0A')

os.system('cls')

print '*********************************************************'

print '(1) Loading Libs ->'

kernel32 = windll.kernel32

print windll.kernel32 , 'Kernel Lib'

user32 = windll.user32

print windll.user32,'User32 Lib'

print '*********************************************************'

 

[glow=purple,2,300]loadLibs()[/glow]

print '*********************************************************'

print 'Devil May Cry Arbitary Code Injection'

print 'Created By Dark1nJeCt1on'

print 'With Pure Python',sys.version

print '*********************************************************'

[glow=purple,2,300]neroEx()[/glow][/glow]

 

well this will let u use nero Ex gauge unlimited

this is just a sample of code i dont wanna post it all cos its an open source and i dont someone copy my work

anyway try it!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...