-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
My, hotel was just Hacked. I think that was a exploit in groups descriptions... :grr:
between the important tables, the guy deleted catalog_pages (what kind of people does that?)
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Anyone can fix that all exploits ?????
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
You can have a 'explodit' only when your server is receiving a string. If you want to make sure you are safe, you should take a look at all incoming strings. To do that, just get into your visual studio interface and search for all definitions of 'PopFixedString()' I guess(not in my pc right now to confirm). Every time you receive such data, you must handle it in your MySQL querys as a parameter. If not, you can be injected. I checked for all of them, and as far as I've seen, groups methods looks safe. But anyway, you should double check it
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
pls make a update fix all exploi'ts i pay 50 euro's
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
AKllX
You can have a 'explodit' only when your server is receiving a string. If you want to make sure you are safe, you should take a look at all incoming strings. To do that, just get into your visual studio interface and search for all definitions of 'PopFixedString()' I guess(not in my pc right now to confirm). Every time you receive such data, you must handle it in your MySQL querys as a parameter. If not, you can be injected. I checked for all of them, and as far as I've seen, groups methods looks safe. But anyway, you should double check it
I make the fix for SQL Injection, using PopFixedString(), very easy, I put on the return of the static string, a filter.
Very easy btw. I hope it handle. My hotel got attacked last night, and just now I do it... I think people (and me) just make action AFTER the shit happen! haha
Cheers!
Droppy
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Herofire
pls make a update fix all exploi'ts i pay 50 euro's
If you read through all the thread theres 100's of fixes including exploit ones, i fixed 2, owner: search in navi & marketplace one.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Why can group members kick poeple
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
is there someone Going to release events tab and HC fix :)
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Wbeu
Going to release events tab and HC fix tonight :)
Finally inwas waiting for this :)
Tapatalk.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
ImNotSatan
Finally inwas waiting for this :)
Tapatalk.
I actually wanna say IF someone wanna fix it... ><
Didn't read my comment u.u
-
[SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Oh lol XD fail.... The event tab u can remore tough.
Just rip someone"s if u cant do that
BTW the topic maker mentioned to not ask for help here lol
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
BaasHotel
I found some bugs too:
1. When you use 'wired user says the correct word', the correct word will appear in the room instead of being whispered.
2. If you buy too many wall/flooritems and then place a wall/flooritem in your room, you will get disconnected.
3. BOTs randomly duplicate themselves after you place one in a room, pick it up again and relog.
4. You will randomly be not able to walk on a certain tile again after somebody has walked over it.
I would be very happy to see this fixed somehow. :D
I need a fix for the 1.
Please help us.
thanks
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
knaller1
I need a fix for the 1.
Please help us.
thanks
Me2 i hope this can be fixed :o
Tapatalk.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Hello people wanted to ask if someone for me the bugs fixed source
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
This thread still up? lol
ont: I like most of the fixes, as I have said, but this thread must be more updated, to keep alive...
Btw, Swift is pretty outdated
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Droppy
This thread still up? lol
ont: I like most of the fixes, as I have said, but this thread must be more updated, to keep alive...
Btw, Swift is pretty outdated
Then peeps should update it :p
Tapatalk.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
ImNotSatan
Then peeps should update it :p
Tapatalk.
Well, yeah, agreed. yum, But I'm still thinking it is outdated AND unstable.. There's such a better emus, such as mango, if you get some time coding it, ofc, since its a framework...
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Droppy
Well, yeah, agreed. yum, But I'm still thinking it is outdated AND unstable.. There's such a better emus, such as mango, if you get some time coding it, ofc, since its a framework...
Offtopic: do you know anny emu with the same emu as swift wich is better?
Ontopic; i hope more coders will work on swift :/
Tapatalk.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Effect inventory fix 100%
find:
Code:
internal void AddEffect(int EffectId, int Duration)
replace the void with:
Code:
internal void AddEffect(int EffectId, int Duration)
{
using (IQueryAdapter dbClient =ButterflyEnvironment.GetDatabaseManager().getQueryreactor())
{
dbClient.runFastQuery("INSERT INTO user_effects (user_id,effect_id,total_duration,is_activated,activated_stamp) VALUES (" + UserId + "," + EffectId + "," + Duration + ",'0',0)");
}
EffectCount++;
Effects.Add(new AvatarEffect(EffectId, Duration, false, 0));
GetClient().GetMessageHandler().GetResponse().Init(Outgoing.AddEffectToInventary);
GetClient().GetMessageHandler().GetResponse().AppendInt32(EffectId);
GetClient().GetMessageHandler().GetResponse().AppendInt32(Duration);
}
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
Jerking
Effect inventory fix 100%
find:
Code:
internal void AddEffect(int EffectId, int Duration)
replace the void with:
Code:
internal void AddEffect(int EffectId, int Duration)
{
using (IQueryAdapter dbClient =ButterflyEnvironment.GetDatabaseManager().getQueryreactor())
{
dbClient.runFastQuery("INSERT INTO user_effects (user_id,effect_id,total_duration,is_activated,activated_stamp) VALUES (" + UserId + "," + EffectId + "," + Duration + ",'0',0)");
}
EffectCount++;
Effects.Add(new AvatarEffect(EffectId, Duration, false, 0));
GetClient().GetMessageHandler().GetResponse().Init(Outgoing.AddEffectToInventary);
GetClient().GetMessageHandler().GetResponse().AppendInt32(EffectId);
GetClient().GetMessageHandler().GetResponse().AppendInt32(Duration);
}
Offt: didnt you make an invisible fix???
Ont: saw that before nice tough =)
Btw does anny1 got a :ban fix? Or superban
Tapatalk.
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
ImNotSatan
Offt: didnt you make an invisible fix???
Ont: saw that before nice tough =)
Btw does anny1 got a :ban fix? Or superban
Tapatalk.
There was a fix but that wasn't 100% this one is 100% like I said in my thread and comment :).
Oh, the spectatormode I'm gonna make a fixes thread soon :).
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Can somebody upload this with all fixes?
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
I don't recommend use this version anymore... '-'
@Edit
Some Moderator can close this thread please?
-
Re: [SwiftEmu] Fix's for NewCrypto! [UPDATED 01/08]
Quote:
Originally Posted by
rafa95123
I don't recommend use this version anymore... '-'
@
Edit
Some Moderator can close this thread please?
What to use then ;)?