Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Silkroad Online > SRO Private Server > SRO PServer Guides & Releases
You last visited: Today at 00:54

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

Advertisement



[Release] ASM/packets (Exploit/fixes) {Server&Client Side} vsro-ecsro-br!

Discussion on [Release] ASM/packets (Exploit/fixes) {Server&Client Side} vsro-ecsro-br! within the SRO PServer Guides & Releases forum part of the SRO Private Server category.

Reply
 
Old 07/03/2013, 18:08   #16
 
HaGsTeR?'s Avatar
 
elite*gold: 0
Join Date: Mar 2012
Posts: 232
Received Thanks: 259
Quote:
Originally Posted by A new hope View Post
i love you and i love your avatar
love you too bro
can i put my peepee in your bunghole
HaGsTeR? is offline  
Old 07/03/2013, 18:19   #17
 
A new hope's Avatar
 
elite*gold: 0
Join Date: Sep 2012
Posts: 753
Received Thanks: 711
Quote:
Originally Posted by HaGsTeR? View Post
love you too bro
can i put my peepee in your bunghole
ýas
A new hope is offline  
Thanks
1 User
Old 07/03/2013, 18:27   #18
 
IceAmStiel's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1,058
Received Thanks: 1,118
Quote:
Originally Posted by MaximumDark View Post
If you can't fix it, you can still track it.

1) Make a SQL Job, that will run every second, tracking for the items, once you've found abnormal counts, you can automatically ban this player account and character and probably kick it out of the game .
Super smart advice to run a query every second that will definitely take >1s to execute, plus "abnormal" counts, do you want to ban donators for a purchase of multiple stacks of scrolls?
And did you think of the people that might abuse such bugs slightly to be safe from the admins?

(Implies that you aren't running a server for only 10 Characters)
IceAmStiel is offline  
Old 07/03/2013, 22:00   #19
 
elite*gold: 0
Join Date: Jan 2013
Posts: 480
Received Thanks: 95
Quote:
Originally Posted by IceAmStiel View Post
Super smart advice to run a query every second that will definitely take >1s to execute, plus "abnormal" counts, do you want to ban donators for a purchase of multiple stacks of scrolls?
And did you think of the people that might abuse such bugs slightly to be safe from the admins?

(Implies that you aren't running a server for only 10 Characters)
I am sorry, but you still have much to learn, I suppose you aren't a certified DBA..., anyways, do it your own way .
MaximumDark is offline  
Thanks
1 User
Old 07/03/2013, 22:15   #20
 
IceAmStiel's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1,058
Received Thanks: 1,118
Quote:
Originally Posted by MaximumDark View Post
I am sorry, but you still have much to learn, I suppose you aren't a certified DBA..., anyways, do it your own way .
I can understand that people that never dealt with large databases lack of knowledge about the performance of queries and the rows that they are affecting, you should probably get a database, populate it with data and try your version out.
I'm sure that even you will recognize that your way is impracticable for a table that contains several millions of records.

I don't need a certification to know that you're insanely wrong
IceAmStiel is offline  
Thanks
1 User
Old 07/03/2013, 22:20   #21
 
elite*gold: 0
Join Date: Jan 2013
Posts: 480
Received Thanks: 95
Quote:
Originally Posted by IceAmStiel View Post
I can understand that people that never dealt with large databases lack of knowledge about the performance of queries and the rows that they are affecting, you should probably get a database, populate it with data and try your version out.
I'm sure that even you will recognize that your way is impracticable for a table that contains several millions of records.

I don't need a certification to know that you're insanely wrong
You don't know about indexing, you don't know about views, you don't know about pre-caching and transactioning of data, you also don't know about pre-compiled queries and also don't know about incremental / differential queries, so once you learn this, let me know .
MaximumDark is offline  
Old 07/03/2013, 22:32   #22
 
IceAmStiel's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1,058
Received Thanks: 1,118
Quote:
Originally Posted by MaximumDark View Post
You don't know about indexing, you don't know about views, you don't know about pre-caching and transactioning of data, you also don't know about pre-compiled queries and also don't know about incremental / differential queries, so once you learn this, let me know .
You want to track data that is constantly changed, plus you have to run through all the records to check whether a stack is suspicious or not.
Using assemblies to process the data doesn't change the fact that you have to get the data from the table first.

Your way would work if the table was static, _Items is exactly the opposite which contains data that is changed every second multiple times.

One question, did you google for random fancy-looking words to state here?
IceAmStiel is offline  
Old 07/03/2013, 22:36   #23
 
elite*gold: 0
Join Date: Jan 2013
Posts: 480
Received Thanks: 95
Quote:
Originally Posted by IceAmStiel View Post
You want to track data that is constantly changed, plus you have to run through all the records to check whether a stack is suspicious or not.
Using assemblies to process the data doesn't change the fact that you have to get the data from the table first.

Your way would work if the table was static, _Items is exactly the opposite which contains data that is changed every second multiple times.

One question, did you google for random fancy-looking words to state here?
There are techniques which you don't know, as for example 'In memory/temporary tables', which you can use for extremely modifiable tables, if this is the case, also you can use differential queries to check for the 'in-modifying' data during the transactions, you can also make the usage of indexes to reduce the I/O overhead during your transactions, there are 'ways' of doing the same thing, if you are a performance freak, still I do it, and I don't have any issue with this, however if you think it doesn't works, or it wouldn't work the way you expect, don't do it .
MaximumDark is offline  
Old 07/03/2013, 22:44   #24
 
elite*gold: 0
Join Date: May 2008
Posts: 11
Received Thanks: 6
Quote:
Originally Posted by MaximumDark View Post
There are techniques which you don't know
thats all i hear from you.. go and get some good arguments because i agree to ice- there is a chance to get performance problems.
thesurviver is offline  
Old 07/03/2013, 23:02   #25
 
elite*gold: 0
Join Date: Jan 2013
Posts: 480
Received Thanks: 95
Quote:
Originally Posted by thesurviver View Post
thats all i hear from you.. go and get some good arguments because i agree to ice- there is a chance to get performance problems.
Read the rest of what I said, and not just a few words
MaximumDark is offline  
Old 07/03/2013, 23:05   #26
 
-HiwatariKai*'s Avatar
 
elite*gold: 0
Join Date: Jul 2013
Posts: 12
Received Thanks: 9
Nice release bro thanks!
-HiwatariKai* is offline  
Thanks
1 User
Old 07/03/2013, 23:13   #27
 
IceAmStiel's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 1,058
Received Thanks: 1,118
Quote:
Originally Posted by MaximumDark View Post
There are techniques which you don't know, as for example 'In memory/temporary tables', which you can use for extremely modifiable tables, if this is the case, also you can use differential queries to check for the 'in-modifying' data during the transactions, you can also make the usage of indexes to reduce the I/O overhead during your transactions, there are 'ways' of doing the same thing, if you are a performance freak, still I do it, and I don't have any issue with this, however if you think it doesn't works, or it wouldn't work the way you expect, don't do it .
I never said that it won't work, I said that it's impracticable and simply a freaking bad idea.
Concerning to the indexing, you're returning data by stack, neither by ID64 nor Serial64 and indexing a column which holds values that are nearly changing every second.. doesn't that sound already entirely wrong?

You're free to implement everything and either sell or release it here if you feel like wasting your time on it
IceAmStiel is offline  
Old 07/04/2013, 00:03   #28
 
SnowStyle™'s Avatar
 
elite*gold: 130
Join Date: Apr 2008
Posts: 1,165
Received Thanks: 423
Good work as always, I'm surprised to see you still help this community after all this time passed though =o
SnowStyle™ is offline  
Thanks
2 Users
Old 07/04/2013, 14:50   #29
 
elite*gold: 0
Join Date: Mar 2008
Posts: 33
Received Thanks: 10
Quote:
Originally Posted by Br.Abdelfattah View Post
-------------------------------------------

Agent server Exploit (Packets of crash)

Code:
Paket             : 8  {8 ; 0}
Veri Boyutu       : 129 Byte  {129 ; 0}
Toplam Büyüklük   : 532 Byte  {449 ; 83}
Veri H‎z‎         : 0.9 KB/Sn
Yakalama Zaman‎   : 25.06.2013 22:43:46:552

==================================================


[25.06.2013 22:43:46:552]
00000000  25 00 00 50 00 00 0E 41  41 75 26 98 AE 82 E8 BB   %..P...A Au&ک®‚è» 
00000010  00 00 00 19 00 00 00 99  25 03 DD BA 18 E0 1A C3   .......™ %.ف؛.à.أ 
00000020  D9 F4 5D 1B B4 69 6A AB  48 1C 21 09 00 00 50 00   ظô].´ij« H.!...P. 
00000030  00 10 47 48 EC 19 A3 DA  2F E9 0E 00 01 20 00 00   ..GHى.£ع /é... .. 
00000040  0B 00 41 67 65 6E 74 53  65 72 76 65 72 00 05 00   ..AgentS erver... 
00000050  0D 60 00 00 01 01 00 05  20 0B 00 0D 60 00 00 00   .`......  ...`... 
00000060  01 00 01 C3 02 05 00 00  00 02 05 00 0D 60 00 00   ...أ.... .....`.. 
00000070  01 01 00 05 60 06 00 0D  60 00 00 00 03 00 02 00   ....`... `....... 
00000080  02
Packet

Code:
0x2005
----------------------------------------------------
How to fix it? what to do? i dont get it.
links2007 is offline  
Old 07/04/2013, 14:54   #30
Chat Killer In Duty


 
PortalDark's Avatar
 
elite*gold: 5
Join Date: May 2008
Posts: 16,309
Received Thanks: 6,470
Arrow Private SRO Main Discussions / Questions -> Private SRO Exploits/Hacks/Bots/Guides

#moved to correct section
PortalDark is offline  
Reply


Similar Threads Similar Threads
[Release] +5500 Packets structure , client/packets constants
10/07/2012 - CO2 PServer Guides & Releases - 10 Replies
edit : if u know nothing about packets go to this post first explaining what is packets , and explaining a packet with details and everything http://www.elitepvpers.com/forum/co2-pserver-disc ussions-questions/2162344-packets-packets-packets. html#post19074533 i start making my very own packet structure to use them on my new proxy but i thought of ripping them from the source so yeah the following packets is ripped of trinity base source right now im just providing the packets structure...
[SUCHE]Neue 2012 Waffen client side + server side
06/07/2012 - Metin2 PServer Guides & Strategies - 4 Replies
Hallo com wie Überschrift schon sagt suche ich die neuen 2012 Waffen Server Side + Client Side. Ich weiß echt gibt hier genug Post die die neuen Waffen haben aber selten welche die die dazugehörigen Server side Querys Ein großen dank schon mal der mir die richtigen per Kommi oder pn schickt :)
[VsRO] Client side editing.
11/16/2011 - SRO Private Server - 3 Replies
I want to edit the client images, backgrounds and wellcome images which file do I have to edit? I already have pk2 editor..



All times are GMT +2. The time now is 00:54.


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.