How do you do an SQL injection from in game? Are you just tampering with the data sent and received when it queries the database upon opening the equipment manager, or is there actually a way to SQL inject from inside the game? 
Edit: Looks like it's about to be fixed anyway:
Code:
Index: src/arcemu-world/EquipmentSetMgr.cpp
===================================================================
--- src/arcemu-world/EquipmentSetMgr.cpp (revision 3738)
+++ src/arcemu-world/EquipmentSetMgr.cpp (working copy)
@@ -128,7 +128,7 @@
ss << ownerGUID << "','";
ss << set->SetGUID << "','";
ss << set->SetID << "','";
- ss << set->SetName << "','";
+ ss << CharacterDatabase.EscapeString(string(set->SetName)) << "','";
ss << set->IconName << "'";
for( uint32 j = 0; j < set->ItemGUID.size(); ++j ){