Proiect

Discutii despre tot ce nu se incadreaza in celelalte categorii (dar legat de Counter-Strike !)

Moderators: Moderatori ajutatori, Moderatori, Echipa eXtreamCS.com

User avatar
SkillartzHD
Membru, skill +3
Membru, skill +3
Posts: 1096
Joined: 08 Feb 2013, 19:43
Detinator Steam: Da
CS Status: HLDS Vulnerability
Detinator server CS: GoldSrc
SteamID: SkillartzHD_hlds
Reputatie: Fost Moderator ajutator
Location: Bucuresti
Has thanked: 14 times
Been thanked: 28 times
Contact:

20 Nov 2016, 03:40

Salut , eu sunt in lipsa de ideei pentru a mai face un proiect pentru acest domeniu , voi ce aveti in plan ?
Pentru ca tot a venit frigul m-am gandit sa mai fac si eu cate ceva avand in vedere ca n-am mai facut nimic.
ultimul meu proiect : http://i.imgur.com/2tawhxR.png
care a fost ultimul tau proiect ?
:zipper_mouth:
Project by HLDS-Project 2017
Static Emulator : Native | Random Emulator : SettiEmu/AVSMP1/AVSMP0/SteamEmu/oldRevEmu/RevEmu is done
KickASS-HLDS v2 (hlds)
KickASS-HLDS v1 (fakedetector)
HL-ClientSteam exploit (pure hlds)
PLCore exploit (dproto&hlds)
FakeConnect 2.0(reunion&rehlds)
KickASS-HLDS v3 in amxx(hlds&rehlds)
...... time passes and evidence are many
Special thanks to Spanwer and Magister
Skype : spyware.spyware1
Steam : Click

SV_CheckForDuplicateNames V2 download
RoyalServer
User avatar
JaiLBreaK
Scripter eXtreamCS
Scripter eXtreamCS
Posts: 1517
Joined: 05 Jan 2016, 18:17
Detinator Steam: Nu
Detinator server CS: Da
Reputatie: Membru Club eXtreamCS (2 luni)
Fost Scripter eXtreamCS
Fond eXtream: 0
Has thanked: 5 times
Been thanked: 10 times
Contact:

20 Nov 2016, 10:00

cum ai facut acel fakeplayer, imi poti da un link cu tutorial sau sa imi explici?
Image
CSGO Original Module[35%]
4D61676973746572
Membru, skill 0
Membru, skill 0
Posts: 11
Joined: 19 Aug 2016, 14:10
Detinator Steam: Da
Detinator server CS: localhost
Fond eXtream: 0

20 Nov 2016, 11:00

SkillartzHD wrote:Salut , eu sunt in lipsa de ideei pentru a mai face un proiect pentru acest domeniu , voi ce aveti in plan ?
Pentru ca tot a venit frigul m-am gandit sa mai fac si eu cate ceva avand in vedere ca n-am mai facut nimic.
ultimul meu proiect : http://i.imgur.com/2tawhxR.png
care a fost ultimul tau proiect ?
:zipper_mouth:
Image
JaiLBreaK wrote:cum ai facut acel fakeplayer, imi poti da un link cu tutorial sau sa imi explici?
http://pvpru.com/board/showthread.php?t=200028
User avatar
JaiLBreaK
Scripter eXtreamCS
Scripter eXtreamCS
Posts: 1517
Joined: 05 Jan 2016, 18:17
Detinator Steam: Nu
Detinator server CS: Da
Reputatie: Membru Club eXtreamCS (2 luni)
Fost Scripter eXtreamCS
Fond eXtream: 0
Has thanked: 5 times
Been thanked: 10 times
Contact:

20 Nov 2016, 12:00

sincer nu am inteles nimic, tot e scris in rusa sau ce naibi o fi
Image
CSGO Original Module[35%]
User avatar
SkillartzHD
Membru, skill +3
Membru, skill +3
Posts: 1096
Joined: 08 Feb 2013, 19:43
Detinator Steam: Da
CS Status: HLDS Vulnerability
Detinator server CS: GoldSrc
SteamID: SkillartzHD_hlds
Reputatie: Fost Moderator ajutator
Location: Bucuresti
Has thanked: 14 times
Been thanked: 28 times
Contact:

20 Nov 2016, 15:21

JaiLBreaK wrote:sincer nu am inteles nimic, tot e scris in rusa sau ce naibi o fi
Cheie :
hex 0xFF,0xFF,0xFF,0xFF
decilmal 255,255,255,255
delphi #$FF + #$FF + #$FF + #$FF
toate rezulta un caracter utf8 (yyyy/rrrr/)

preluarea codului getchallenge
c#
List<byte> list = new List<byte>
list.AddRange(new byte[] {0xFF,0xFF,0xFF,0xFF}); //cheie
list.AddRange(new byte[] {0x20,0x67,0x65,0x74,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65}); // getchallenge
// sau 0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65 poate fi folosit si asta pentru preluare
socket.Send(list.ToArray());
socket.Receive(array2);

exemplu de cod preluat dupa aceasta operatiune : 136131686 , cu un anumit cod tu faci legatura intre tine si serverul hlds (in mica parte)


/// exemplu rcon sennder
0x20,0x72,0x63,0x6f,0x6e = rcon

rcon -> codul preluat mai sus de getchallenge -> password -> comanda
exemplu : rcon 1234567 "parola" say salut

List<byte> list = new List<byte>
list.AddRange(new byte[] {0xFF,0xFF,0xFF,0xFF}); //cheie
list.AddRange(new byte[] {0x20,0x72,0x63,0x6f,0x6e,0x22}); // rcon + 0x22
list.AddRange(new byte[] {0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x22}); // password + 0x22
list.AddRange(new byte[] {0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e}); // comanda shutdown
socket.Send(list.ToArray());
socket.Receive(array2);

0x20 = spatiu
0x22 = ghirimele


efect : Image

magister :

Code: Select all

public byte[] Mungify_Table = new byte[]
{ 0x05, 0x61, 0x7A, 0xED, 0x1B, 0xCA, 0x0D, 0x9B, 0x4A, 0xF1, 0x64, 0xC7, 0xB5, 0x8E, 0xDF, 0xA0  };
poti adauga si o mica 'consola' cu ajutorul COM_UnMunge/COM_Munge pentru a afisa drop client/banned blablaba/ doar ca trebui filtrate

:gaben:
Project by HLDS-Project 2017
Static Emulator : Native | Random Emulator : SettiEmu/AVSMP1/AVSMP0/SteamEmu/oldRevEmu/RevEmu is done
KickASS-HLDS v2 (hlds)
KickASS-HLDS v1 (fakedetector)
HL-ClientSteam exploit (pure hlds)
PLCore exploit (dproto&hlds)
FakeConnect 2.0(reunion&rehlds)
KickASS-HLDS v3 in amxx(hlds&rehlds)
...... time passes and evidence are many
Special thanks to Spanwer and Magister
Skype : spyware.spyware1
Steam : Click

SV_CheckForDuplicateNames V2 download
User avatar
LondoN eXtream
Membru eXtream
Membru eXtream
Posts: 2755
Joined: 10 Oct 2014, 06:21
Detinator Steam: Da
SteamID: /id/london_extreamcs
Reputatie: Fost scripter eXtreamCS
Fost moderator ajutator
Membru Club eXtreamCS (6 luni)
Fond eXtream: 0
Location: Roman, Neamț
Has thanked: 3 times
Been thanked: 12 times

22 Nov 2016, 20:33

SkillartzHD wrote:
JaiLBreaK wrote:sincer nu am inteles nimic, tot e scris in rusa sau ce naibi o fi
Cheie :
hex 0xFF,0xFF,0xFF,0xFF
decilmal 255,255,255,255
delphi #$FF + #$FF + #$FF + #$FF
toate rezulta un caracter utf8 (yyyy/rrrr/)

preluarea codului getchallenge
c#
List<byte> list = new List<byte>
list.AddRange(new byte[] {0xFF,0xFF,0xFF,0xFF}); //cheie
list.AddRange(new byte[] {0x20,0x67,0x65,0x74,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65}); // getchallenge
// sau 0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65 poate fi folosit si asta pentru preluare
socket.Send(list.ToArray());
socket.Receive(array2);

exemplu de cod preluat dupa aceasta operatiune : 136131686 , cu un anumit cod tu faci legatura intre tine si serverul hlds (in mica parte)


/// exemplu rcon sennder
0x20,0x72,0x63,0x6f,0x6e = rcon

rcon -> codul preluat mai sus de getchallenge -> password -> comanda
exemplu : rcon 1234567 "parola" say salut

List<byte> list = new List<byte>
list.AddRange(new byte[] {0xFF,0xFF,0xFF,0xFF}); //cheie
list.AddRange(new byte[] {0x20,0x72,0x63,0x6f,0x6e,0x22}); // rcon + 0x22
list.AddRange(new byte[] {0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x22}); // password + 0x22
list.AddRange(new byte[] {0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e}); // comanda shutdown
socket.Send(list.ToArray());
socket.Receive(array2);

0x20 = spatiu
0x22 = ghirimele


efect : Image

magister :

Code: Select all

public byte[] Mungify_Table = new byte[]
{ 0x05, 0x61, 0x7A, 0xED, 0x1B, 0xCA, 0x0D, 0x9B, 0x4A, 0xF1, 0x64, 0xC7, 0xB5, 0x8E, 0xDF, 0xA0  };
poti adauga si o mica 'consola' cu ajutorul COM_UnMunge/COM_Munge pentru a afisa drop client/banned blablaba/ doar ca trebui filtrate

:gaben:
e frumi in China? :troll
User avatar
SkillartzHD
Membru, skill +3
Membru, skill +3
Posts: 1096
Joined: 08 Feb 2013, 19:43
Detinator Steam: Da
CS Status: HLDS Vulnerability
Detinator server CS: GoldSrc
SteamID: SkillartzHD_hlds
Reputatie: Fost Moderator ajutator
Location: Bucuresti
Has thanked: 14 times
Been thanked: 28 times
Contact:

23 Nov 2016, 01:07

Daca omul a intrebat eu i-am raspuns , acum depinde de cine intreaba sa si inteleaga cat de cat motorul de functionare a jocului :')


explicatia de mai sus in cod realizat
Image

http://rgho.st/private/8qV2gT4nW/090725 ... 58a91c0926

scris/impachetat in c# , deci este nevoie de framework 3.5

el este capabil sa trimita orice pachet asupra serverului pana in sv_clientconnect

parola : hl1pack

Image
el poate sa acceseze si NET_GetLong
Project by HLDS-Project 2017
Static Emulator : Native | Random Emulator : SettiEmu/AVSMP1/AVSMP0/SteamEmu/oldRevEmu/RevEmu is done
KickASS-HLDS v2 (hlds)
KickASS-HLDS v1 (fakedetector)
HL-ClientSteam exploit (pure hlds)
PLCore exploit (dproto&hlds)
FakeConnect 2.0(reunion&rehlds)
KickASS-HLDS v3 in amxx(hlds&rehlds)
...... time passes and evidence are many
Special thanks to Spanwer and Magister
Skype : spyware.spyware1
Steam : Click

SV_CheckForDuplicateNames V2 download
User avatar
SkillartzHD
Membru, skill +3
Membru, skill +3
Posts: 1096
Joined: 08 Feb 2013, 19:43
Detinator Steam: Da
CS Status: HLDS Vulnerability
Detinator server CS: GoldSrc
SteamID: SkillartzHD_hlds
Reputatie: Fost Moderator ajutator
Location: Bucuresti
Has thanked: 14 times
Been thanked: 28 times
Contact:

09 Dec 2016, 02:57

Image

Mi-am incins creierii intens :sunglasses:
Project by HLDS-Project 2017
Static Emulator : Native | Random Emulator : SettiEmu/AVSMP1/AVSMP0/SteamEmu/oldRevEmu/RevEmu is done
KickASS-HLDS v2 (hlds)
KickASS-HLDS v1 (fakedetector)
HL-ClientSteam exploit (pure hlds)
PLCore exploit (dproto&hlds)
FakeConnect 2.0(reunion&rehlds)
KickASS-HLDS v3 in amxx(hlds&rehlds)
...... time passes and evidence are many
Special thanks to Spanwer and Magister
Skype : spyware.spyware1
Steam : Click

SV_CheckForDuplicateNames V2 download
User avatar
^Head$hot^
Membru, skill +4
Membru, skill +4
Posts: 1541
Joined: 20 Feb 2013, 19:05
Detinator Steam: Da
Reputatie: Fost Membru Club eXtreamCS (doua luni)
Has thanked: 12 times
Been thanked: 14 times

09 Dec 2016, 13:59

Poţi face un test şi pe serverul din semnătura mea te rog?:D dă-mi un PM când încerci vreau să fiu şi eu on :)
User avatar
SkillartzHD
Membru, skill +3
Membru, skill +3
Posts: 1096
Joined: 08 Feb 2013, 19:43
Detinator Steam: Da
CS Status: HLDS Vulnerability
Detinator server CS: GoldSrc
SteamID: SkillartzHD_hlds
Reputatie: Fost Moderator ajutator
Location: Bucuresti
Has thanked: 14 times
Been thanked: 28 times
Contact:

09 Dec 2016, 18:03

^Head$hot^ wrote:Poţi face un test şi pe serverul din semnătura mea te rog?:D dă-mi un PM când încerci vreau să fiu şi eu on :)
Aici este vorba de alt subiect , nu de testarea exploitului
Project by HLDS-Project 2017
Static Emulator : Native | Random Emulator : SettiEmu/AVSMP1/AVSMP0/SteamEmu/oldRevEmu/RevEmu is done
KickASS-HLDS v2 (hlds)
KickASS-HLDS v1 (fakedetector)
HL-ClientSteam exploit (pure hlds)
PLCore exploit (dproto&hlds)
FakeConnect 2.0(reunion&rehlds)
KickASS-HLDS v3 in amxx(hlds&rehlds)
...... time passes and evidence are many
Special thanks to Spanwer and Magister
Skype : spyware.spyware1
Steam : Click

SV_CheckForDuplicateNames V2 download
User avatar
^Head$hot^
Membru, skill +4
Membru, skill +4
Posts: 1541
Joined: 20 Feb 2013, 19:05
Detinator Steam: Da
Reputatie: Fost Membru Club eXtreamCS (doua luni)
Has thanked: 12 times
Been thanked: 14 times

09 Dec 2016, 19:03

SkillartzHD wrote:
^Head$hot^ wrote:Poţi face un test şi pe serverul din semnătura mea te rog?:D dă-mi un PM când încerci vreau să fiu şi eu on :)
Aici este vorba de alt subiect , nu de testarea exploitului
Tu ai fost? :) http://prntscr.com/dhdqay de la eroarea aceea am luat crash..
User avatar
SkillartzHD
Membru, skill +3
Membru, skill +3
Posts: 1096
Joined: 08 Feb 2013, 19:43
Detinator Steam: Da
CS Status: HLDS Vulnerability
Detinator server CS: GoldSrc
SteamID: SkillartzHD_hlds
Reputatie: Fost Moderator ajutator
Location: Bucuresti
Has thanked: 14 times
Been thanked: 28 times
Contact:

09 Dec 2016, 23:56

^Head$hot^ wrote:
SkillartzHD wrote:
^Head$hot^ wrote:Poţi face un test şi pe serverul din semnătura mea te rog?:D dă-mi un PM când încerci vreau să fiu şi eu on :)
Aici este vorba de alt subiect , nu de testarea exploitului
Tu ai fost? :) http://prntscr.com/dhdqay de la eroarea aceea am luat crash..
Nu
Project by HLDS-Project 2017
Static Emulator : Native | Random Emulator : SettiEmu/AVSMP1/AVSMP0/SteamEmu/oldRevEmu/RevEmu is done
KickASS-HLDS v2 (hlds)
KickASS-HLDS v1 (fakedetector)
HL-ClientSteam exploit (pure hlds)
PLCore exploit (dproto&hlds)
FakeConnect 2.0(reunion&rehlds)
KickASS-HLDS v3 in amxx(hlds&rehlds)
...... time passes and evidence are many
Special thanks to Spanwer and Magister
Skype : spyware.spyware1
Steam : Click

SV_CheckForDuplicateNames V2 download
Post Reply

Return to “Diverse”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 4 guests