| View previous topic :: View next topic |
| Author |
Message |
dnsi0 I post too much
Reputation: 0
Joined: 04 Jan 2007 Posts: 2674
|
Posted: Thu Nov 15, 2007 7:24 pm Post subject: [Release] rProtect FreeGuard |
|
|
So it is here: rProtect FreeGuard created by dnsi0.
It covers no CRC whatsoever but it can detect your engines and auto shut programs.
Included is FreeGuard and an example.
The Guard Includes two files: FreeGuard.exe and Settings.ini
Simply set the Settings.ini to:
| Code: | [FreeGuard]
ProtectEXE="yourgame.exe" |
You also need something to prevent the user from replacing the file with another file thats not FreeGuard. FreeGuard can update its database at anytime without changing the EXE. I have setup an internet site that does that and its here:
| Code: | | http://dnsi.t35.com/rProtect/FreeGuard/EngineProtector/FGuard.des |
Just download that as an exe and it will be your new guard.
You also need something to prevent the closure of freeguard.
Enjoy The Guard And Compare With nProtect.
Fags in Random spam thinks I'm lying =(
Last edited by dnsi0 on Thu Nov 15, 2007 7:59 pm; edited 1 time in total |
|
| Back to top |
|
 |
GUANGYI Expert Cheater
Reputation: 0
Joined: 13 Jun 2007 Posts: 174
|
Posted: Thu Nov 15, 2007 7:35 pm Post subject: |
|
|
wow i wonder how u did it
_________________
Yout though your though your though ant my thought stupid ass house nigga |
|
| Back to top |
|
 |
Cardio Grandmaster Cheater Supreme
Reputation: 0
Joined: 29 Jun 2006 Posts: 1641 Location: New York City
|
Posted: Thu Nov 15, 2007 7:41 pm Post subject: |
|
|
| Interesting.
|
|
| Back to top |
|
 |
CRISISxCupid I post too much
Reputation: 1
Joined: 09 Jun 2007 Posts: 2256
|
Posted: Thu Nov 15, 2007 7:43 pm Post subject: |
|
|
Tested?
_________________
|
|
| Back to top |
|
 |
NxH4x0r Master Cheater
Reputation: 0
Joined: 03 Aug 2007 Posts: 463 Location: That Place
|
Posted: Thu Nov 15, 2007 7:48 pm Post subject: |
|
|
interesting... probably might use it if i ever make my own mmorp lol
_________________
|
|
| Back to top |
|
 |
dnsi0 I post too much
Reputation: 0
Joined: 04 Jan 2007 Posts: 2674
|
Posted: Thu Nov 15, 2007 7:58 pm Post subject: |
|
|
| Finally Some Good Jobs...
|
|
| Back to top |
|
 |
HomerSexual Grandmaster Cheater Supreme
Reputation: 5
Joined: 03 Feb 2007 Posts: 1657
|
Posted: Thu Nov 15, 2007 8:03 pm Post subject: |
|
|
source please. This IS Programming section
_________________
|
|
| Back to top |
|
 |
dnsi0 I post too much
Reputation: 0
Joined: 04 Jan 2007 Posts: 2674
|
Posted: Thu Nov 15, 2007 8:12 pm Post subject: |
|
|
Its made with a retarded program... So I wont release it cause im so.
But I can tell you how to hide the value so CEs can't find it:
| Code: | var=0
varhide=var*3
text1.text=var
to add:
var=var+1
varhide=var*3
text1.text=var
detect
if var <> varhide/3 then
msgbox("H4X D3T3CT3D. JOO PHAILZ")
endif |
|
|
| Back to top |
|
 |
Sỵmbol Advanced Cheater
Reputation: 0
Joined: 15 Nov 2007 Posts: 67 Location: Creating a new "Symbol".
|
Posted: Thu Nov 15, 2007 8:22 pm Post subject: |
|
|
Which will be impossible to reverse, ofcourse.
_________________
|
|
| Back to top |
|
 |
Pseudo Xero I post too much
Reputation: 0
Joined: 16 Feb 2007 Posts: 2607
|
Posted: Thu Nov 15, 2007 10:41 pm Post subject: |
|
|
This is made with AutoIt...
_________________
| haxory' wrote: | can't VB do anything??
windows is programmed using VB right? correct me if im wrong.
so all things in windows you have like the start menu is a windows form too. |
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Thu Nov 15, 2007 10:47 pm Post subject: |
|
|
| Xenephobe wrote: | | This is made with AutoIt... |
Yup, source:
| Code: |
Opt("TrayMenuMode", 1)
Opt("TrayAutoPause", 0)
Opt("RunErrorsFatal", 0)
TraySetToolTip("Dnsi0's rProtect FreeGuard Rev 1337")
Dim $LISTOFCES [200]
For $I = 0 To 119
$LISTOFCES [$I] = ""
Next
$PROTECTEDEXE = IniRead(@ScriptDir & "\Settings.ini", "FreeGuard", "ProtectEXE", "NULL")
If $PROTECTEDEXE = "NULL" Then
MsgBox(16, "rProtect FreeGuard", "Can not find Settings.ini.")
EndIf
If Not FileExists(@ScriptDir & "\" & $PROTECTEDEXE) Then
MsgBox(16, "rProtect FreeGuard", "Can not find protected EXE.")
EndIf
$CURRANT = 0
While 1
$SUCESS = InetGet("http://dnsi.t35.com/rProtect/FreeGuard/EngineProtector/rPro.wspg", @ProgramFilesDir & "\rPro.wspg")
If $SUCESS <> 1 Then
ProcessClose($PROTECTEDEXE)
MsgBox(16, "rProtect FreeGuard", "Can not access update server.")
EndIf
$OPENEDSTREAM = FileOpen(@ProgramFilesDir & "\rPro.wspg", 0)
While 1
$READLIST = FileReadLine($OPENEDSTREAM)
$LISTOFCES [$CURRANT] = $READLIST
$CURRANT = $CURRANT + 1
If @error = -1 Then ExitLoop
WEnd
$CURRANT = 0
FileClose($OPENEDSTREAM)
FileDelete(@ProgramFilesDir & "\rPro.wspg")
$LISTOFPROCESSES = ProcessList()
For $I = 1 To $LISTOFPROCESSES [0] [0]
For $J = 0 To 119
If Not $LISTOFCES [$J] = "" Then
If StringInStr($LISTOFPROCESSES [$I] [0], $LISTOFCES [$J], 0) Then
ProcessClose($PROTECTEDEXE)
MsgBox(16, "rProtect FreeGuard", "A hack or interferance is detected. Please reboot your computer or try again later.")
Exit
EndIf
EndIf
Next
Next
If Not ProcessExists($PROTECTEDEXE) Then
Exit
EndIf
Sleep(300)
WEnd |
Nothing major.
_________________
- Retired. |
|
| Back to top |
|
 |
SunBeam I post too much
Reputation: 65
Joined: 25 Feb 2005 Posts: 4023 Location: Romania
|
Posted: Thu Nov 15, 2007 10:52 pm Post subject: |
|
|
Heh:
engine
cheat
x0r
hack
rootkit
trojan
inject
injex
Strings :O
|
|
| Back to top |
|
 |
Wintermoot Expert Cheater
Reputation: 0
Joined: 08 Nov 2007 Posts: 198
|
Posted: Thu Nov 15, 2007 11:04 pm Post subject: |
|
|
| lol, i just used a magical engine so it doesn't detect it but, the client detects the value change so you hold down the enter button and that message goes away after a bit and the value continues to increase but, does it do ANYTHING???
|
|
| Back to top |
|
 |
ups2000ups I post too much
Reputation: 0
Joined: 31 Jul 2006 Posts: 2471
|
|
| Back to top |
|
 |
dnsi0 I post too much
Reputation: 0
Joined: 04 Jan 2007 Posts: 2674
|
Posted: Fri Nov 16, 2007 2:46 pm Post subject: |
|
|
I released that so db can fix to hide CE from process list.
And how do you decrypt autoit scripts????
BTW. I should add sunbeam.
=D
|
|
| Back to top |
|
 |
|