Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Silkroad Online > SRO Guides & Templates
You last visited: Today at 18:34

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[GUIDE] For wanna-be hackers LIKE projecthax and their scourge.

Discussion on [GUIDE] For wanna-be hackers LIKE projecthax and their scourge. within the SRO Guides & Templates forum part of the Silkroad Online category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Apr 2007
Posts: 36
Received Thanks: 18
[GUIDE] For wanna-be hackers LIKE projecthax and their scourge.

This guide is made to fake hackers/crackers like Projecthax and some other random guys.

First of all



In this topic, in Projecthax,

Anthony, a random noob moderator said:
________________________________________
So, DV3 sends your info to their server. By info I mean sro login. username/pass. Don't use it.

And then, WeeMan said:
Log packets and watch.



OK, First of all, he said that this PACKET is their Silkroad USERNAME and PASSWORD that is being sent to me; but, it actually ins't - so, flaming is the ONLY thing they can do.

THIS PACKET is their PROCESSOR ID, HD ID, WINDOWS PC ID.
So I want to help you guys from ProjectHax, and I will post here a source code, from MINIGUI, which is a standard software, that shows your processor ID - HD ID, WINID.
Here is the source code, some EPVPERS guy can compile it if they want, but from as far I know, Projecthax won't have skills to compile it, so I will post the EXE in the end of the file.
Thanks.

/*
* MiniGUI WMI Service Demo
*
* (c) 2008 Grigory Filatov <>
*/

#include "minigui.ch"

Procedure Main

DEFINE WINDOW Form_1 ;
AT 0,0 ;
WIDTH 400 ;
HEIGHT 200 ;
TITLE 'WMI Service Demo' ;
MAIN ;
ON INTERACTIVECLOSE MsgYesNo ( 'Are You Sure ?', 'Exit' )

DEFINE BUTTON Button_1
ROW 10
COL 10
WIDTH 120
CAPTION 'Processor Info'
ACTION ProcessorInfo()
END BUTTON

DEFINE BUTTON Button_2
ROW 40
COL 10
WIDTH 120
CAPTION 'Disk Drive Info'
ACTION DiskDriveInfo()
END BUTTON

DEFINE BUTTON Button_3
ROW 70
COL 10
WIDTH 120
CAPTION 'Logical Disk Info'
ACTION LogicalDiskInfo()
END BUTTON

DEFINE BUTTON Button_4
ROW 100
COL 10
WIDTH 120
CAPTION 'Physical Media Info'
ACTION PhysicalMediaInfo()
END BUTTON

DEFINE BUTTON Button_5
ROW 130
COL 10
WIDTH 120
CAPTION 'Cancel'
ACTION ThisWindow.Release
END BUTTON

END WINDOW

Form_1.Button_4.Enabled := IsWinNT()

CENTER WINDOW Form_1
ACTIVATE WINDOW Form_1

Return

*--------------------------------------------------------*
#translate IFNOTCHAR( <exp1>,<exp2> ) ;
=> ;
IF( VALTYPE( <exp1> ) != "C",<exp2>,<exp1> )

#define IS_DATE(x) (VALTYPE(x) == "D")
#define IS_LOGICAL(x) (VALTYPE(x) == "L")
#define IS_NUMERIC(x) (VALTYPE(x) == "N")
#define CASE_AT(x,y,z) z[AT(x,y)+1]
#define TRIM_NUMBER(x) LTRIM(STR(x))
#define NULL ""

#define XTOC(x) CASE_AT(VALTYPE(x), "CNDLM", ;
{ NULL, ;
x, ;
IF(IS_NUMERIC(x),;
TRIM_NUMBER(x), ;
NULL), ;
IF(IS_DATE(x),DTOC(x),NULL),;
IF(IS_LOGICAL(x),;
IF(x,".T.",".F."), ;
NULL), ;
x })
*--------------------------------------------------------*

FUNCTION ProcessorInfo()

Local oWmi, oProc
Local cInfo := ""

oWmi := WmiService()

FOR EACH oProc IN oWmi:ExecQuery( "SELECT * FROM Win32_Processor" )

cInfo := ""
cInfo += "Manufacturer: " + oProc:Manufacturer + CRLF
cInfo += "Model: " + oProc:Name + CRLF
cInfo += "Description: " + oProcescription + CRLF
cInfo += "Speed: " + TRIM_NUMBER( oProc:CurrentClockSpeed ) + " MHz" + CRLF
cInfo += "ID: " + oProc:ProcessorID

MsgInfo( cInfo, oProceviceID )

NEXT

Return nil


FUNCTION DiskDriveInfo()

Local oWmi, oDrive
Local cInfo := ""

oWmi := WmiService()

FOR EACH oDrive IN oWmi:ExecQuery( "SELECT * FROM Win32_DiskDrive" )

cInfo += "Model: " + oDrive:Model + CRLF
cInfo += "Name: " + STRTRAN(oDrive:Name, "\\.\", "" ) + CRLF

if IsWinNT()

cInfo += "Signature: " + IF( IS_NUMERIC(oDrive:Signature), LTRIM( STR( Abs( oDrive:Signature ), 20, 0 ) ), "N/A" ) + CRLF

endif

cInfo += CRLF

NEXT

MsgInfo( cInfo, "Result" )

Return nil


FUNCTION LogicalDiskInfo()

Local oWmi, oDrive, cSerialNumber
Local cInfo := ""

oWmi := WmiService()

FOR EACH oDrive IN oWmi:ExecQuery( "SELECT * FROM Win32_LogicalDisk" )

cSerialNumber := XTOC( oDrive:VolumeSerialNumber )
cInfo += "Volume: " + oDrive:Name + " Serial Number: " + IFEMPTY( cSerialNumber, "N/A", cSerialNumber ) + CRLF

NEXT

MsgInfo( cInfo, "Result" )

Return nil


FUNCTION PhysicalMediaInfo()

Local oWmi, oDrive
Local cInfo := ""

oWmi := WmiService()

FOR EACH oDrive IN oWmi:ExecQuery( "SELECT * FROM Win32_PhysicalMedia" )

cInfo := "Serial: " + IfNotChar( oDrive:SerialNumber, "N/A" )

MsgInfo( cInfo, IfNotChar( STRTRAN( oDrive:Tag, "\\.\", "" ), "N/A" ) )

NEXT

Return nil


STATIC FUNCTION WMIService()

Static oWMI

Local oLocator

if oWMI == NIL

oLocator := CreateObject( "wbemScripting.SwbemLocator" )
oWMI := oLocator:ConnectServer()

endif

Return oWMI






Thanks, from - Forbannet.
First of all, those guys didn't saw that even if they log diferent accounts in teh same computer, the packet stills the same;
All they want to know is just FLAME and FLAME.

You guys are a bunch of noobs;

Não chegam nem aos meus pés, imagina do clockwork, deve ser por causa disso que eles, 0x, não falaram merda de mim, e vocês sim.
MORRAM NOOBS.
forbannet is offline  
Old 12/13/2008, 21:16   #2
 
_KillaH_'s Avatar
 
elite*gold: 20
Join Date: Apr 2008
Posts: 1,148
Received Thanks: 861
i aprroved this because they Suck xD
and everyone must see it ^^
_KillaH_ is offline  
Old 12/13/2008, 21:25   #3
 
ShyroN1337's Avatar
 
elite*gold: 0
Join Date: Jul 2008
Posts: 812
Received Thanks: 105
Quote:
Originally Posted by _KillaH_ View Post
i aprroved this because they Suck xD
and everyone must see it ^^
#agreed
ShyroN1337 is offline  
Old 12/13/2008, 21:56   #4
 
elite*gold: 0
Join Date: Feb 2008
Posts: 2,309
Received Thanks: 861
about wtf is this all?
Nova1337 is offline  
Old 12/13/2008, 22:02   #5
 
Julian2008's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 1,563
Received Thanks: 360
Yeah they really s*ck !! Fake hakers lol^^
Julian2008 is offline  
Old 12/14/2008, 12:49   #6
 
InvincibleNoOB's Avatar
 
elite*gold: 20
Join Date: Mar 2007
Posts: 4,277
Received Thanks: 2,990
ProjectHax are like us,**** sapiens,but not quite.

Great,Drew gave us the source of edx33,so now we have the full source of your crack /sarcasm/

forbannet,you should use some encryption.


The level of the encryption used is just 1,the max level that my encryption supports is 90.

The real encryption that i call - Invincible Encryption,is in chinese characters.

Invincible.
InvincibleNoOB is offline  
Old 12/14/2008, 13:29   #7
 
thashiznit's Avatar
 
elite*gold: 0
Join Date: Nov 2008
Posts: 41
Received Thanks: 16
So it's safe or not?
thashiznit is offline  
Old 12/14/2008, 16:32   #8
 
elite*gold: 0
Join Date: May 2007
Posts: 106
Received Thanks: 9
No its not...
SwaDDie is offline  
Old 12/14/2008, 16:46   #9
 
ngage's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 100
Received Thanks: 9
i got hacked after using this bot
ngage is offline  
Old 12/15/2008, 09:41   #10
 
xxbrentonxx's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 277
Received Thanks: 103
Quote:
Originally Posted by InvincibleNoOB View Post
ProjectHax are like us,**** sapiens,but not quite.

Great,Drew gave us the source of edx33,so now we have the full source of your crack /sarcasm/

forbannet,you should use some encryption.


The level of the encryption used is just 1,the max level that my encryption supports is 90.

The real encryption that i call - Invincible Encryption,is in chinese characters.

Invincible.
Do you reckon these bot/pw packets are the same ones projecthax reckons were of our sro id?
xxbrentonxx is offline  
Old 12/15/2008, 10:51   #11
 
InvincibleNoOB's Avatar
 
elite*gold: 20
Join Date: Mar 2007
Posts: 4,277
Received Thanks: 2,990
Quote:
Originally Posted by brent01 View Post
Do you reckon these bot/pw packets are the same ones projecthax reckons were of our sro id?
No this has nothing to do with projecthax,I gave him an example showing how to encrypt his packets.
It's my own project.
InvincibleNoOB is offline  
Old 12/15/2008, 11:25   #12
 
xxbrentonxx's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 277
Received Thanks: 103
Quote:
Originally Posted by InvincibleNoOB View Post
No this has nothing to do with projecthax,I gave him an example showing how to encrypt his packets.
It's my own project.
What im trying to ask is, DV3 is safe right? Its packets are not our user/pass, correct?
xxbrentonxx is offline  
Old 12/15/2008, 15:56   #13
 
snagod's Avatar
 
elite*gold: 0
Join Date: Jul 2008
Posts: 162
Received Thanks: 38
Yeah is safe. I am using it and i am happy. Project hax have some good and some awful things. Anyway dont tell ur character info to anyone. Not even to your friends becouse u never knw when he will stop being your friend Forbannet is honest and wouldn't make any keyloggers or pw stealers!
snagod is offline  
Old 12/15/2008, 17:47   #14
 
add3's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 807
Received Thanks: 189
Does this mean that if you use Stealthlite bot you may get hacked ?
add3 is offline  
Old 12/15/2008, 23:14   #15
 
elite*gold: 0
Join Date: Aug 2007
Posts: 54
Received Thanks: 0
Hi! i dont understand the topic... can someone tell me what is it about?
Thanks in advance!
rq005 is offline  
Reply


Similar Threads Similar Threads
Warcraft3..A hackers Guide..
06/12/2012 - General Gaming Releases - 64 Replies
Updated for patch 1.22 Well, I have looked about this forum for a while and have not found a suitable section that describes the number of Warcraft 3: Frozen Throne hacks/exploits/programs out there. So this is my (somewhat pitiful) attempt at creating an well compiled and easily read list. Sorry its only in English, but I do not know German. Contact me in any of these mediums for comments; [email protected] CaptainAdmiralKeyes <Steam Account> Kaltazar@USRavenholdt <WoW>...
Wanna be really imba? Guide on how to use Openkore in PVP
05/24/2011 - RO Bots & Macros - 85 Replies
--- Guide deleted post can be deleted too, i will donate no more guides to epvp. You can find this Guide by using Google on other websites :P
The Scourge Project
12/06/2009 - User Submitted News - 2 Replies
New TPS (third-person shooter) game coming soon to PlayStation 3, Xbox 360 and PC. The team that developed the game called Tragnarion Studios today announced a few details about The Scourge Project. The game will use Epic Games's Unreal Engine. This game will be available on PC through Steam in December for the Xbox 360 will be available via Xbox LIVE Marketplace, while the PS3 PSN. For the console this game comes out in March 2010th year. Graphic details looked great, a lot of you will...
I wanna help me guide hack sp
03/22/2009 - Cabal Online - 5 Replies
I use uce but I wanna hack sp please guide for me



All times are GMT +1. The time now is 18:34.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.