Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


[EXPOSED]"Kitterz" Injector.
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam
View previous topic :: View next topic  
Author Message
DeletedUser14087
I post too much
Reputation: 2

Joined: 21 Jun 2006
Posts: 3069

PostPosted: Tue Dec 23, 2008 5:16 am    Post subject: [EXPOSED]"Kitterz" Injector. Reply with quote

That person used this public source posted by DoomsDay ages ago, just to inform you people.

Code:
program Injector;

{$APPTYPE CONSOLE}

uses
  SysUtils, windows, psapi, tlhelp32, inifiles;

var
  WName,PName,DName:string;
  DLLLocation:string;
  ProcessId:DWORD;

procedure PhraseINI();
var
  IniFile:TIniFile;
begin
  if FileExists(GetCurrentDir + '\Injector.ini') then
  begin
    IniFile:=TIniFile.Create(GetCurrentDir + '\Injector.ini');
    WName:=IniFile.ReadString('DLL Injector','Window','');
    PName:=IniFile.ReadString('DLL Injector','Target','notepad.exe');
    DName:=IniFile.ReadString('DLL Injector','DLL','MessageBox.dll');
  end
  else
  begin
    IniFile:=TIniFile.Create(GetCurrentDir + '\Injector.ini');
    IniFile.WriteString('Injector','Window','Untitled - Notepad');
    IniFile.WriteString('Injector','Target','notepad.exe');
    IniFile.WriteString('Injector','DLL','MessageBox.dll');
    PhraseINI();
  end;
end;

procedure GetPID();
var
  TempSnapshot:THandle;
  Process32:TProcessEntry32;
begin
  while (ProcessId=0) do
  begin
    TempSnapshot:=CreateToolhelp32Snapshot(TH32CS_SNAPALL,0);
    Process32First(TempSnapshot,Process32);
    while Process32Next(TempSnapshot,Process32) do
      begin
        if Process32.szExeFile = PName then
            ProcessId:=Process32.th32ProcessID;
      end;
    CloseHandle(TempSnapshot);
  end;
end;

procedure InjectDLL();
var
  Process:THandle;
  TempHandle:THandle;
  AllocatedRegion:pointer;
  Empty:DWORD;
  NumberOfBytesWritten:Cardinal;
begin
  Process:=OpenProcess(PROCESS_ALL_ACCESS,False,ProcessId);
  AllocatedRegion:=VirtualAllocEx(Process,NIL,length(DLLLocation),MEM_COMMIT,PAGE_EXECUTE_READWRITE);
  WriteProcessMemory(Process,AllocatedRegion,pchar(DLLLocation),length(DLLLocation),NumberOfBytesWritten);
  if WName='' then
    sleep(750)
  else
    while FindWindow(nil,pchar(WName))=0 do
      sleep(10);
  TempHandle:=CreateRemoteThread(Process,nil,0,GetProcAddress(GetModuleHandle('kernel32.dll'),'LoadLibraryA'),AllocatedRegion,0,Empty);
  WaitForSingleObject(TempHandle,INFINITE);
  CloseHandle(TempHandle);
end;

begin
  PhraseINI();
  Writeln('- DLL Injector -'+#$0A+#$0D+'----------------');
  DLLLocation:=GetCurrentDir()+'\'+DName;
  if not FileExists(DLLLocation) then
  begin
    Writeln('Unable to locate the DLL');
    sleep(7000);
    exitprocess(0);
  end;
  Writeln('Waiting for process: '+PName);
  GetPID();
  Writeln(' - Process found'+#$0A+#$0D);
  Writeln('Injecting '+DName+' into '+PName);
  InjectDLL();
  Writeln(' - DLL injected');
  sleep(7000);
end.
Back to top
View user's profile Send private message
PurpleMadness
Expert Cheater
Reputation: 0

Joined: 15 Oct 2006
Posts: 234

PostPosted: Tue Dec 23, 2008 5:17 am    Post subject: Reply with quote

I don't see the problem with that. Other than that he should have given some credits probably.
_________________
Wazzup yo.


Last edited by PurpleMadness on Tue Dec 23, 2008 5:18 am; edited 1 time in total
Back to top
View user's profile Send private message
PhoenixForceX
Master Cheater
Reputation: 0

Joined: 10 Feb 2007
Posts: 411
Location: New Zealand

PostPosted: Tue Dec 23, 2008 5:18 am    Post subject: Reply with quote

Whats exposed?
_________________
I just ate a grape and then I JIZZED IN MY PANTS.
Back to top
View user's profile Send private message
DeletedUser14087
I post too much
Reputation: 2

Joined: 21 Jun 2006
Posts: 3069

PostPosted: Tue Dec 23, 2008 5:18 am    Post subject: Reply with quote

n3v4h wrote:
I don't see the problem with that. Other than that he should have given some credits probably.


He renamed everything to Kitterz so people would think he made it.
Back to top
View user's profile Send private message
PurpleMadness
Expert Cheater
Reputation: 0

Joined: 15 Oct 2006
Posts: 234

PostPosted: Tue Dec 23, 2008 5:21 am    Post subject: Reply with quote

Pen1 wrote:
n3v4h wrote:
I don't see the problem with that. Other than that he should have given some credits probably.


He renamed everything to Kitterz so people would think he made it.

Okay, so he should have given some credits. Your point exactly?

_________________
Wazzup yo.
Back to top
View user's profile Send private message
DeletedUser14087
I post too much
Reputation: 2

Joined: 21 Jun 2006
Posts: 3069

PostPosted: Tue Dec 23, 2008 5:21 am    Post subject: Reply with quote

n3v4h wrote:
Pen1 wrote:
n3v4h wrote:
I don't see the problem with that. Other than that he should have given some credits probably.


He renamed everything to Kitterz so people would think he made it.

Okay, so he should have given some credits. Your point exactly?


Yes, that's my point.
Back to top
View user's profile Send private message
Xt3hb4nd1tX
Festering pile of crap
Reputation: 0

Joined: 12 Mar 2007
Posts: 953
Location: Beer Sheva, Israel

PostPosted: Tue Dec 23, 2008 5:27 am    Post subject: Reply with quote

it makes it inject to notepad ;D
_________________
Back to top
View user's profile Send private message MSN Messenger
Eyalos
Master Cheater
Reputation: 0

Joined: 03 Oct 2006
Posts: 343

PostPosted: Tue Dec 23, 2008 5:31 am    Post subject: Reply with quote

That was clear.
I used somebastardstolemyname's which is kinda similar to this one..
Back to top
View user's profile Send private message MSN Messenger
marzlino
Newbie cheater
Reputation: 0

Joined: 24 Apr 2008
Posts: 23

PostPosted: Tue Dec 23, 2008 6:11 am    Post subject: Reply with quote

haha so very much like pen1 to expose the deep and dark secrets of others Smile

but also, does doomsday know about this?
Back to top
View user's profile Send private message
HomerSexual
Grandmaster Cheater Supreme
Reputation: 5

Joined: 03 Feb 2007
Posts: 1657

PostPosted: Tue Dec 23, 2008 7:31 am    Post subject: Reply with quote

Pen1 wrote:
n3v4h wrote:
Pen1 wrote:
n3v4h wrote:
I don't see the problem with that. Other than that he should have given some credits probably.


He renamed everything to Kitterz so people would think he made it.

Okay, so he should have given some credits. Your point exactly?


Yes, that's my point.


He should've released it with credits, but this just makes you the bigger douche. You act like it's such a big deal his INJECTOR has his name on it when he used public source. It's a fucking injector, I wouldn't use my own when theres this nice one out there, why reinvent the wheel? This just pisses me off because you seem to spend more time on here exposing people and trying to promote yourself rather than actually try shit. It's fucking annoying and embarrassing on your part.

_________________
Back to top
View user's profile Send private message
snowie72
Master Cheater
Reputation: 0

Joined: 26 Nov 2005
Posts: 480
Location: GFs house...No internet lol..

PostPosted: Tue Dec 23, 2008 7:33 am    Post subject: Reply with quote

You renamed CheatEngine to KasperSpy engine how many times again......?
_________________
De-Rep me if you love Sneak!

The arrogant...Lying...Noobs.. They will get bored and leave eventually.! Very Happy
Back to top
View user's profile Send private message
keviinz
Expert Cheater
Reputation: 0

Joined: 29 Jan 2008
Posts: 249

PostPosted: Tue Dec 23, 2008 7:35 am    Post subject: Reply with quote

snowie72 wrote:
You renamed CheatEngine to KasperSpy engine how many times again......?


i think you mean kaspersky?
Back to top
View user's profile Send private message
Mozilla Firefox
Grandmaster Cheater Supreme
Reputation: 0

Joined: 06 Feb 2007
Posts: 1250

PostPosted: Tue Dec 23, 2008 7:35 am    Post subject: Reply with quote

snowie72 wrote:
You renamed CheatEngine to KasperSpy engine how many times again......?


...
Seems like you don't know much anyway.
Back to top
View user's profile Send private message
ClericX
Master Cheater
Reputation: 0

Joined: 03 Dec 2006
Posts: 360
Location: Too bad, I'm not telling.

PostPosted: Tue Dec 23, 2008 7:35 am    Post subject: Reply with quote

So what, what's the big deal that he used another person's source?

You could just tell him he should have given credits, period. You don't have to go making a thread about it o_o.

_________________
So I herd u liek mudkipz.
Back to top
View user's profile Send private message
Mozilla Firefox
Grandmaster Cheater Supreme
Reputation: 0

Joined: 06 Feb 2007
Posts: 1250

PostPosted: Tue Dec 23, 2008 7:36 am    Post subject: Reply with quote

ClericX wrote:
So what, what's the big deal that he used another person's source?

You could just tell him he should have given credits, period. You don't have to go making a thread about it o_o.


It is Pen1.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites