Jump to content

anath3ma

Members
  • Posts

    597
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by anath3ma

  1. yes this crash its 1 restart but other crashes not
  2. packet explorer its same with packet analyzer just google it
  3. i have explain what u must do if u do it wrong then this dont gonna work thats all
  4. system crash u shall know it as bsod blue screen of death :P:P
  5. no m8 its not this lawl if u send this exploit and the other accept it the contact take blue screen not this error but this is the blue screen
  6. u can take it as information share nost of links useless
  7. google it packet analyzer
  8. indeed but milw0rm got exploits and not serials like the most of this sites and btw why this post is not allowed to be posted ?
  9. the best site for me is milw0rm
  10. DELETE!!!!!!!!!!!!!!!!!!!!!!!!!!
  11. omfg min perasi gineka apo forum...
  12. priest mage pala-wrrior-random pala another1 rogue warlock Druid Shaman-Ele Shaman-Ench thats all i think. give the credits to me if u are posting to another forum this links thnx
  13. wtf guyz why u ask if any one have test it download it and test it anyway this program read / write process memory and can do dllinjection
  14. katarxin ine toso efkolo na katanoithei gia to pos doulevi afti i mlkia xrisimopiodas ocx ton windows mswinsock.ocx kani connect se opia diefthinsi dosoume meta me to inet.ocx boroume na xrisimopoisoume proxy sto programa mas meta me ligo kodika boroume na isagoume apo ena txt as poume lekseis klidia kathos exoume kai tin epilogi random generator pou tha parei xronia giati ena tetio programa ine gia ta skoupidia afta
  15. i think u can change ur vote number with fire-bug firefox addon if vote=1 change the one with 10 so 1 vote = 10 votes maybe work just try it ooo nazghoul u are leet....
  16. if u are using greek windows edit this line WinWnd = FindWindow(vbNullString, "Öëßðåñ-3Ä ãéá Windows - Space Cadet") with ur pinball window name very simple
  17. to make this trainer we need to know something about vb6 code and api first of all we need declares what we shall use: [glow=red,2,300]Private Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long[/glow] with this open a process to have access on it [glow=red,2,300]Private Declare Function GetWindowThreadProcessId Lib "user32" (ByVal hwnd As Long, lpdwProcessId As Long) As Long[/glow] with this we take pID of the current game [glow=red,2,300]Private 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[/glow] with this we write values in memory of the proc [glow=red,2,300]Private Declare Function ReadProcessMemory Lib "kernel32" (ByVal hProcess As Long, ByVal lpBaseAddress As Long, ByVal lpBuffer As Long, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long[/glow] with this code read values from proc and finaly with this [glow=red,2,300]Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long [/glow] test if the game run searching windows we can make a project like if findwindow=0 then unload me thats all about declares now lets move to code i have make a code for a pinball trainer cos im borring to make a another one here i copy paste it Private Declare Function ReadProcessMemory Lib "kernel32" (ByVal hProcess As Long, lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long Private Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long Private Declare Function WriteProcessMemory Lib "kernel32" (ByVal hProcess As Long, lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long Private Declare Function GetWindowThreadProcessId Lib "user32" (ByVal hwnd As Long, lpdwProcessId As Long) As Long Public Function ReadProc(ByVal adrs As Long, buffer As Long) Dim PiD As Long Dim Fhwnd As Long Dim OpPRoC As Long Fhwnd = FindWindow(vbNullString, "Öëßðåñ-3Ä ãéá Windows - Space Cadet") PiD = GetWindowThreadProcessId(Fhwnd, lpdwProcessId) OpPRoC = OpenProcess(&H10FFF, False, lpdwProcessId) Call ReadProcessMemory(OpPRoC, adrs, buffer, 4, 0&) Form1.Label1 = PiD End Function Public Function FindHwnd() Dim Fhwnd As Long Dim ProC As String Dim PiD PiD = GetWindowThreadProcessId(Fhwnd, lpdwProcessId) Fhwnd = FindWindow(vbNullString, "Öëßðåñ-3Ä ãéá Windows - Space Cadet") If Fhwnd = 0 Then MsgBox "No Window Found Im Running Pinbal Now!!!!", vbExclamation, "Error" ProC = Shell("C:\Program Files\Windows NT\Pinball\PINBALL.EXE", vbNormalFocus) Call OpenProcess(&H10FFF, False, ProC) End If End Function Public Function WriteProc(ByVal addrs As Long, val As Long) Dim PiD As Long Dim Fhwnd As Long Dim OpPRoC As Long Fhwnd = FindWindow(vbNullString, "Öëßðåñ-3Ä ãéá Windows - Space Cadet") PiD = GetWindowThreadProcessId(Fhwnd, lpdwProcessId) OpPRoC = OpenProcess(&H10FFF, False, lpdwProcessId) Call WriteProcessMemory(OpPRoC, addrs, val, 4, 0&) End Function Form Code: Private Sub Command1_Click() If Timer1.Enabled = True Then Timer1.Enabled = False ElseIf Timer1.Enabled = False Then Timer1.Enabled = True End If End Sub Private Sub Command2_Click() Dim Qq As Long Qq = Text1 Call WriteProc(Combo1, Qq) End Sub Private Sub Form_Load() Timer1.Enabled = False Combo1.AddItem ("&HB73B8C") Combo1.AddItem ("&HCEAEBA") Combo2.AddItem ("&HB73B8C") Combo2.AddItem ("&HCEAEBA") Call FindHwnd End Sub Private Sub Timer1_Timer() Dim QqQ As Long Call ReadProc(Combo2, QqQ) Text2 = Hex(QqQ) End Sub Private Sub Timer2_Timer() End Sub and dont forget to add &h before adress or if u wanna change dec to hex value stil use &H cos its not gonna work without PS: Dont leech my code and paste it on other forums as urs dont be -beep-ing lecheers with other's work if u wanna copy that give creds
  18. EDIT: almost fixed in most servers ascent 4+ dont work
  19. give the fucking credits
  20. give authors and dont leeching stuff i know this is from ce forum and WEH its here to help us without need to use ce
  21. dont work test it on ascent 4.0 almost all exploits have fixed in this version
  22. i can translate it if i got time
  23. I want to apply for wow mod im playing wow almost 2 years i have stop it but still im exploiting small servers and have fun with donators
  24. maybe u need directX9 just download it and install it before install wow
  25. very old i know something new u need flury axe x2 and belive me its better and its not 1hit kill its many hits with 1 attack but anyway stop leeching without giving the authors
×
×
  • Create New...