Go Back   BWHacks > BWHacks > User Downloads > Development Tools

Closed Thread
 
LinkBack Thread Tools

Old 09-16-2007, 01:30 AM   #21 (permalink)
KnightZach_RPoS
Mortal
 
Join Date: Sep 2007
Posts: 2
KnightZach_RPoS is on a distinguished road
Default

I have the same problem as Abrupt... So if I do not access how will I download this... Can someone please assist me here!
KnightZach_RPoS 15 0FF11|\|3  
Sponsored links
Advertisement
 
Advertisement
Advertisement


Old 09-16-2007, 01:47 AM   #22 (permalink)
HARD_ON

Inquisitor
 
HARD_ON's Avatar
 
Join Date: Apr 2005
Location: 33°46'N - 84°25'W
Posts: 4,398
HARD_ON is a name known to allHARD_ON is a name known to allHARD_ON is a name known to allHARD_ON is a name known to all
Send a message via ICQ to HARD_ON Send a message via AIM to HARD_ON Send a message via MSN to HARD_ON Send a message via Yahoo to HARD_ON Send a message via Skype™ to HARD_ON
Default

I hope this is a joke, LCS.
__________________
"Roses are red, Violets are blue, I'll **** you with a rake."
Quote:
Originally Posted by Degausser View Post
tomato, tomato.
Why are we living for?
HARD_ON 15 0FF11|\|3  

Old 09-16-2007, 12:15 PM   #23 (permalink)
KnightZach_RPoS
Mortal
 
Join Date: Sep 2007
Posts: 2
KnightZach_RPoS is on a distinguished road
Default

I am serious is it not possible too access that page??
KnightZach_RPoS 15 0FF11|\|3  

Old 09-16-2007, 12:36 PM   #24 (permalink)
gamepin126
Senior Member
Retired Staff Member

Celestial Entity
 
gamepin126's Avatar
 
Join Date: Oct 2004
Posts: 19,437
gamepin126 has a reputation beyond reputegamepin126 has a reputation beyond reputegamepin126 has a reputation beyond reputegamepin126 has a reputation beyond reputegamepin126 has a reputation beyond reputegamepin126 has a reputation beyond reputegamepin126 has a reputation beyond reputegamepin126 has a reputation beyond reputegamepin126 has a reputation beyond reputegamepin126 has a reputation beyond reputegamepin126 has a reputation beyond repute
Default

You only need the fixed EXE's if you intend on copying and pasting the code. Cmon, use your brains.

The code generated still works.

(btw, if you don't have access, that means you're not cool enough so stfu you don't need it)
__________________

Set a trashcan on fire and keep a bum warm for a night. Set the bum on fire, and keep him warm for the rest of his life.
gamepin126 15 0FF11|\|3  

Old 09-24-2007, 12:59 AM   #25 (permalink)
Po-aWARz)

Deviant
 
Join Date: Jul 2004
Posts: 89
Po-aWARz) is on a distinguished road
Default

I'm noob at this...

But does this create some DLL files?

I mean would it be possible to make an auto-mine at start/game within a DLL? with this program.....:P

I would make some few good hacks..but well, never coded before :/
Po-aWARz) 15 0FF11|\|3  

Old 09-24-2007, 02:21 AM   #26 (permalink)
Titan
Pervali on Battle.net
Senior Member
Retired Staff Member

Blessed
 
Titan's Avatar
 
Join Date: May 2004
Posts: 2,143
Titan is a jewel in the rough
Default

No Po-aWARz), this will give you code to put into an EXE VB project. You could technically write auto-mine in code caves and use this to inject, but trust me... you don't want to do that!!! Only use this for simple projects like offline mineral hack, host hack, null timer, and whatnot.

If you're just beginning to learn, and you aren't going to release any of it, use TSearch's EasyWrite; it's a great tool I still use for quick patches. However, if you ever want to make something like auto-mine, you will need assembly knowledge plus either MASM or C programming experience.
__________________

Titan 15 0FF11|\|3  

Old 09-24-2007, 02:31 PM   #27 (permalink)
Po-aWARz)

Deviant
 
Join Date: Jul 2004
Posts: 89
Po-aWARz) is on a distinguished road
Default

Damnit, thanks for the reply Titan!

So TSearch's EasyWrite is for making some few DLL?
I'd like to learn things like that..i know i have no big time to deal with but well..

I didn't think that Auto-Mine was pretty hard to make? Oh well.. I'm lost than! i'l have to wait that new V of APRON! hehe.
Po-aWARz) 15 0FF11|\|3  

Old 09-25-2007, 03:12 AM   #28 (permalink)
Titan
Pervali on Battle.net
Senior Member
Retired Staff Member

Blessed
 
Titan's Avatar
 
Join Date: May 2004
Posts: 2,143
Titan is a jewel in the rough
Default

Tsearch's EasyWrite won't make DLLs, it's just an easy way to patch a process. You can use code caves to make some decent stuff with it. You could then use this(VB code generator) or TMK to make your hack into an EXE. But, if you want to make DLLs, you will have to learn a programming lanuage. I suggest MASM, but C will also do.

"Hard" is dependent on experience. To a beginner, yes, auto-mine will be difficult. To someone with some hacking experience & knowledge of SC, no, it isn't difficult.
__________________

Titan 15 0FF11|\|3  

Old 10-24-2007, 10:38 AM   #29 (permalink)
Logos

Disciple
 
Logos's Avatar
 
Join Date: Aug 2006
Posts: 456
Logos has a spectacular aura about
Default

To make it work on 1.15+ without "StarCraft with Security Removed (by LCSBSSRHXXX) and CRWA - CheckRevision Work Around (by Palomino)"

Add the option to add this code to the header (just make sure OpenProcess and CloseHandle don't overlap ofc):
Code:
Private Const TOKEN_ADJUST_PRIVILEGES = &H20
Private Const TOKEN_QUERY = &H8
Private Const ANYSIZE_ARRAY = 1
Private Const PROCESS_ALL_ACCESS = &H1F0FFF
Private Const SE_DEBUG_NAME = "SeDebugPrivilege"
Private Const SE_PRIVILEGE_ENABLED = &H2

Private Type LUID
   lowpart As Long
   highpart As Long
End Type

Private Type LUID_AND_ATTRIBUTES
   pLuid As LUID
   Attributes As Long
End Type

Private Type TOKEN_PRIVILEGES
   PrivilegeCount As Long
   Privileges(ANYSIZE_ARRAY) As LUID_AND_ATTRIBUTES
End Type

Private Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
Private Declare Function GetCurrentProcess Lib "kernel32" () As Long
Private Declare Function OpenProcessToken Lib "advapi32.dll" (ByVal ProcessHandle As Long, ByVal DesiredAccess As Long, TokenHandle As Long) As Long
Private Declare Function LookupPrivilegeValue Lib "advapi32.dll" Alias "LookupPrivilegeValueA" (ByVal lpSystemName As String, ByVal lpName As String, lpLuid As LUID) As Long
Private Declare Function AdjustTokenPrivileges Lib "advapi32.dll" (ByVal TokenHandle As Long, ByVal DisableAllPrivileges As Long, NewState As TOKEN_PRIVILEGES, BufferLength As Any, PreviousState As Any, ReturnLength As Any) As Long
Private Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
And these functions
Code:
Private Function getProcessHandle(pID As Long) As Long
   EnableDebugPrivilege (True)
   getProcessHandle = OpenProcess(PROCESS_ALL_ACCESS, 0, pID)
   EnableDebugPrivilege (False)
End Function

Private Function EnableDebugPrivilege(bOnOff As Boolean) As Boolean
   Dim tp As TOKEN_PRIVILEGES
   Dim tpPrev As TOKEN_PRIVILEGES
   Dim lid As LUID
   Dim tpSize As Long
   Dim lRet As Long
   Dim hCurProc As Long
   Dim hToken As Long
   
   
   tpSize = Len(tp)
   
   hCurProc = GetCurrentProcess()
   
   lRet = OpenProcessToken(hCurProc, TOKEN_ADJUST_PRIVILEGES Or TOKEN_QUERY, hToken)
   lRet = LookupPrivilegeValue("", SE_DEBUG_NAME, lid)
   
   tp.PrivilegeCount = 1
   tp.Privileges(0).pLuid = lid
   tp.Privileges(0).Attributes = 0
   
   '//Get Attributes
   lRet = AdjustTokenPrivileges(hToken, 0, tp, tpSize, tpPrev, tpSize)

   tpPrev.PrivilegeCount = 1
   tpPrev.Privileges(0).pLuid = lid
   
   If bOnOff = True Then
      tpPrev.Privileges(0).Attributes = tpPrev.Privileges(0).Attributes Or (SE_PRIVILEGE_ENABLED)
   Else
      tpPrev.Privileges(0).Attributes = tpPrev.Privileges(0).Attributes Xor _
                                         (SE_PRIVILEGE_ENABLED And tpPrev.Privileges(0).Attributes)
   End If

   '//Set Attributes
   lRet = AdjustTokenPrivileges(hToken, 0, tpPrev, tpSize, ByVal CLng(0), ByVal CLng(0))
   
   CloseHandle (hToken)
   EnableDebugPrivilege = CBool(lRet)
End Function
Now, in your generated code just replace
Code:
pHandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
With
Code:
pHandle = getProcessHandle(pid)
Works for me. Thanks to hure for pointing out this workaround here.
Logos 15 0FF11|\|3  

Old 01-03-2008, 06:41 PM   #30 (permalink)
Rufus

Disciple
 
Rufus's Avatar
 
Join Date: May 2007
Posts: 428
Rufus is on a distinguished road
Default

this made me super horny +rep!!!
__________________
Quote:
DrubZ says:
IpwnU would be a great hack name... cuz like.. it's right in ur face
Rufus 15 0FF11|\|3  

Old 01-03-2008, 08:58 PM   #31 (permalink)
kds
MENOS EL OSO
Senior Member
Moderator

Saint
 
kds's Avatar
 
Join Date: Sep 2004
Location: South suburbs of Chicago, Illinois
Posts: 6,284
kds has a reputation beyond reputekds has a reputation beyond reputekds has a reputation beyond reputekds has a reputation beyond reputekds has a reputation beyond reputekds has a reputation beyond reputekds has a reputation beyond reputekds has a reputation beyond reputekds has a reputation beyond reputekds has a reputation beyond reputekds has a reputation beyond repute
Default

please don't bring up old threads
LCS open the thread if oyu have further development on it.
kds 15 0FF11|\|3  
Sponsored links
Advertisement
 
Advertisement
Advertisement

Closed Thread



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Lets finish this NickF Flame Board 37 01-22-2007 10:40 PM
VB Source Code The_Jelly Programming 2 01-18-2007 02:12 AM
A few hack ideas Applesauce Starcraft Hacking Related 42 10-16-2004 04:17 AM
Help with making hack with VB punture Programming 5 08-22-2004 11:15 AM


All times are GMT. The time now is 05:18 PM.


vBulletin style developed by Transverse Styles

Powered by vBulletin Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.0.0
Copyright © 2004-2008 BWHacksAd Management by RedTyger