|
You last visited: Today at 17:31
Advertisement
Answer to How PWI is exploited
Discussion on Answer to How PWI is exploited within the PW Hacks, Bots, Cheats, Exploits forum part of the Perfect World category.
03/15/2012, 21:16
|
#46
|
elite*gold: 0
Join Date: Oct 2008
Posts: 184
Received Thanks: 27
|
I wonder if this is working on private servers? like servers that offer the same kidn of service... or was it a PWI based bug?
|
|
|
03/15/2012, 22:07
|
#47
|
elite*gold: 20
Join Date: May 2009
Posts: 1,290
Received Thanks: 326
|
If the private servers are stupid enough to do it in the same retarded way as PWI (not checking JSP parameters serversided), then sure...
|
|
|
03/23/2012, 21:53
|
#48
|
elite*gold: 0
Join Date: Jul 2011
Posts: 61
Received Thanks: 38
|
<p itemid="31537" itemname="Perfect Stone" cost="50" maxqty="99" class="send ">Send</p>
we can see it in dq points...
But how to launch sending command with changed id?
|
|
|
03/23/2012, 21:56
|
#49
|
elite*gold: 20
Join Date: May 2009
Posts: 1,290
Received Thanks: 326
|
Use Firebug or send http manually - it will not work anymore though, how often do we need to repeat that?!
|
|
|
03/23/2012, 22:59
|
#50
|
elite*gold: 0
Join Date: Jul 2011
Posts: 61
Received Thanks: 38
|
or chrome. ) i also tried to change the cost - it didn`t work....
Only changed things in user part(
|
|
|
04/01/2012, 06:34
|
#51
|
elite*gold: 0
Join Date: Aug 2009
Posts: 114
Received Thanks: 12
|
I soooo wish I had found this topic when it still worked xD I have an extra account fo such things which I can spare if it gets banned.... To bad they fixed it. PLZ can some1 burry this thread already? It depresses me every time I see it.
|
|
|
04/01/2012, 08:30
|
#52
|
elite*gold: 0
Join Date: Jul 2011
Posts: 57
Received Thanks: 8
|
need a mod to jus close this shiz lol
|
|
|
04/01/2012, 18:32
|
#53
|
elite*gold: 0
Join Date: Apr 2012
Posts: 1
Received Thanks: 0
|
So how exactly can i change the ITEMID? I made webproxy but im struggle with changing itemid xD I know it wont work but im just curious how to do it
I want to learn in other words.
<li val="28297">Jones' Blessing (+30 Atk Lvl)</li>
I found this line in the code but what i do with it? How to change it?
|
|
|
04/01/2012, 18:41
|
#54
|
elite*gold: 20
Join Date: May 2009
Posts: 1,290
Received Thanks: 326
|
Firebug for firefox is easiest way.
|
|
|
04/02/2012, 11:27
|
#55
|
elite*gold: 0
Join Date: Mar 2010
Posts: 862
Received Thanks: 576
|
Or just use javascript in the url bar to send whatever info you need to.
|
|
|
04/10/2013, 04:05
|
#56
|
elite*gold: 0
Join Date: Mar 2013
Posts: 17
Received Thanks: 3
|
Quote:
Originally Posted by Interest07
Yeah, i got em somewher ein my catshop bot I'll dig em up later
Code:
private int sellSingleCatShopItemAddress;
private byte[] sellSingleCatShopItemAddressRev;
private byte[] sellSingleCatShopItemPkt = new byte[]
{
0x25, 0x00, //Header
0x15, 0x00, 0x00, 0x00, //npcInteraction type
0x1A, 0x00, 0x00, 0x00, //nBytes following
0x00, 0x00, 0x00, 0x00, //catshopId [player + C4C]
0x00, 0x00, 0x00, 0x00,
0xA8, 0x00, 0x50, 0x39,
0x01, 0x00, 0x00, 0x00, //nItems Sold
0x00, 0x00, 0x00, 0x00, //typeId
0x00, 0x00, //shopIndex
0x00, 0x00, //inv index
0x00, 0x00 //amount
};
public void sellSingleCatShopItem(int typeId, int shopIndex, short amount, int catShopId, short invIndex)
{
//Get size of the packet
int packetSize = sellSingleCatShopItemPkt.Length;
if (sellSingleCatShopItemAddress == 0)
{
//load packet in memory
loadPacket(sellSingleCatShopItemPkt, ref sellSingleCatShopItemAddress, ref sellSingleCatShopItemAddressRev);
}
byte[] catShopIdRev = BitConverter.GetBytes(catShopId);
catShopIdRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, sellSingleCatShopItemAddress + 10, catShopIdRev);
byte[] typeIdRev = BitConverter.GetBytes(typeId);
typeIdRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, sellSingleCatShopItemAddress + 26, typeIdRev);
byte[] shopIndexRev = BitConverter.GetBytes(shopIndex);
shopIndexRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, sellSingleCatShopItemAddress + 30, shopIndexRev);
byte[] invIndexRev = BitConverter.GetBytes(invIndex);
invIndexRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, sellSingleCatShopItemAddress + 32, invIndexRev);
byte[] amountRev = BitConverter.GetBytes(amount);
amountRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, sellSingleCatShopItemAddress + 34, amountRev);
sendPacket(sellSingleCatShopItemAddressRev, packetSize);
}
private int buySingleCatShopItemAddress;
private byte[] buySingleCatShopItemAddressRev;
private byte[] buySingleCatShopItemPkt = new byte[]
{
0x25, 0x00, //Header
0x13, 0x00, 0x00, 0x00, //npcInteraction type
0x1A, 0x00, 0x00, 0x00, //nBytes following
0x00, 0x00, 0x00, 0x00, //catshopId [player + C4C]
0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, //nItems Sold
0x00, 0x00, 0x00, 0x00, //typeId
0x00, 0x00, 0x00, 0x00, //shopIndex
0x00, 0x00 //amount
};
public void buySingleCatShopItem(int typeId, int shopIndex, short amount, int catShopId)
{
//Get size of the packet
int packetSize = buySingleCatShopItemPkt.Length;
if (buySingleCatShopItemAddress == 0)
{
//load packet in memory
loadPacket(buySingleCatShopItemPkt, ref buySingleCatShopItemAddress, ref buySingleCatShopItemAddressRev);
}
byte[] catShopIdRev = BitConverter.GetBytes(catShopId);
catShopIdRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, buySingleCatShopItemAddress + 10, catShopIdRev);
byte[] typeIdRev = BitConverter.GetBytes(typeId);
typeIdRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, buySingleCatShopItemAddress + 26, typeIdRev);
byte[] shopIndexRev = BitConverter.GetBytes(shopIndex);
shopIndexRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, buySingleCatShopItemAddress + 30, shopIndexRev);
byte[] amountRev = BitConverter.GetBytes(amount);
amountRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, buySingleCatShopItemAddress + 34, amountRev);
sendPacket(buySingleCatShopItemAddressRev, packetSize);
}
|
Maybe necro a very old Thread, but i found this while searching for some Info about the ??? in my Buy Packet research for Catshops.
Code:
2500
13000000
1C000000
F84A6451 ; ???
00000000
00000000
01000000
9E1F0000 <- item id
00000000 <- shop index
01000000 <- amount
Size 38
That confused me:
Code:
0x00, 0x00, 0x00, 0x00, //catshopId [player + C4C]
Is that a different ID to a Player ID or did you just named it catshopId ?
Since the Hex PlayerID is different then what i found inside the Packet: F84A6451
Is "player" that the base of the selected Player ?
Would be great if some one can explain this to me, thank you.
|
|
|
04/11/2013, 00:41
|
#57
|
elite*gold: 0
Join Date: Mar 2009
Posts: 112
Received Thanks: 123
|
Quote:
Originally Posted by Afro-Head
Maybe necro a very old Thread, but i found this while searching for some Info about the ??? in my Buy Packet research for Catshops.
Code:
2500
13000000
1C000000
F84A6451 ; ???
00000000
00000000
01000000
9E1F0000 <- item id
00000000 <- shop index
01000000 <- amount
Size 38
That confused me:
Code:
0x00, 0x00, 0x00, 0x00, //catshopId [player + C4C]
Is that a different ID to a Player ID or did you just named it catshopId ?
Since the Hex PlayerID is different then what i found inside the Packet: F84A6451
Is "player" that the base of the selected Player ?
Would be great if some one can explain this to me, thank you.
|
Yes, catshopId is different from playerId, each player has both.
Player would be the base of player, no matter how you reach it, be it via players array, current target or your own self.
Mind you, that offset for it, probably isn't up to date.
|
|
|
04/11/2013, 04:50
|
#58
|
elite*gold: 0
Join Date: Mar 2013
Posts: 17
Received Thanks: 3
|
Thank you Shareen 
So it is the Base + Offset of the Player who owns the Catshop.
|
|
|
04/14/2013, 11:31
|
#59
|
elite*gold: 0
Join Date: Mar 2013
Posts: 17
Received Thanks: 3
|
Quote:
Originally Posted by Shareen
Just to finalize this discussion, I'd like to point out something else to watch for using this packet: ShopIndex
You are viewing the shop window and "Items Offered" as they called it, meaning items you can sell to shop are on the right side in their own 'group'.
Tendency would be to thus use index 0 for first item in first row, but that however isn't the case.
ShopIndex is calculated using ALL the items shop deals with, those for sale as well as those for purchase, while skipping empty slots.
Thus, in selling to cat shop, item that is located first in first row and with total items on sale being, let's say 12, ShopIndex would be: (12+1)-1. -1 is for zero indexing.
See image below to avoid confusion.
|
I got some Problem to calculate the right cell, maybe you can please help me out ?
Heres my Example:
Code:
;sell packet
25 00
15 00 00 00
1C 00 00 00
09 60 69 51 ; shop id
00 00 00 00
BE 00 28 8C ; [[playerBase]+0x08] and [[playerBase]+0x0A] (not needed)
01 00 00 00 ; nItems Sold
2D 03 00 00 ; item id
16 00 07 00 ; shop index = shop cell and player inv. cell
01 00 00 00 ; amount
So Shop index is based like this:
first the Cell of the Item i want to sell in the Shop = 16 hex = count 19
last the Cell of the Item i want to sell in my Inventory = 7 hex = count 7
So i start counting like you descriped:
The Cell in the Shop to sell should be 19 = 13 hex
But in the packet from the listener it shows as 16 hex = count 22 and with hex 13 it wont work
Maybe the Cell counting is changed meanwhile ?
Edit:
I try on other Shop:
He is selling 10 Items.
I sell the first Item in his Buy Cell to him, Results 0A hex = 10 cell count
So your Description is Right (10 items selling -1 = first item buying cell = 1+9)
But why is in the Shop i tested before the Cell 16 hex = 22 count and not 13 hex = 19 count.
The Shop has no 22 Cells with Items and the Item i like to sell is on count 19.
Quote:
Originally Posted by Interest07
oh yeah, and something to pay attention to:
say originally a shop sets up with item X at slot 0 and item Y at slot 1.
Someone buys all of item X, now moving item Y to slot 0. When sending the packet you will still need to send shopIndex 1.
|
So if i understand right, the Shop started first with more Items to sell.
Some buy the Items out and the Cell Count changed for me to viewing count 19 but wen the Shop set up first, it was on Count 22 = 16 hex ?
Like dumfck say:
Quote:
Originally Posted by dumbfck
Oooh nasty... So for item Y which was in slot 1, but now in slot 0, you need to send 1? That's dangerous xD. Is this only if you don't close the shop interface? If that's always the case then those item slot IDs are pretty worthless as far as sending packets go?
|
And the Problem is Interest07 forget were to get the right Value ?
Quote:
Originally Posted by Interest07
Nahh, that value can be found still  I forget where exactly though
|
So another Place to read out the real Item Count and that Info is lost
|
|
|
04/14/2013, 13:27
|
#60
|
elite*gold: 0
Join Date: Mar 2010
Posts: 862
Received Thanks: 576
|
Ehmm, I believe it can be found in a tiny array before you take the +0xC pointer. But it's been a long time ago since I did anything with this, you'll just have to browse the memory along the pointer chain to find it.
|
|
|
 |
|
Similar Threads
|
[Release] gifimg.php exploited servers. Maybe someone will need it :)
05/27/2011 - Kal Hacks, Bots, Cheats & Exploits - 3 Replies
Have fun :)
|
Much can probably be exploited with mixing files
06/04/2008 - RF Online - 0 Replies
Not sure if this (title) is common knowledge or what, but by doing so I was able to create different racial characters in one account in RFO-ph (which officially, is locked only to one race per account) just a few moments ago. For a full TUT on this go to the forum where you can hide stuff, sorry but I just hate spoonfeeding (you already got your clue from this topic's title).
Thanks to zereke for this idea though, his alleged item spawn hack got me into working on this line of exploits.
|
new thing to maybe get exploited
09/04/2007 - Conquer Online 2 - 19 Replies
-------------------------------------------------- ------------------------------
We are proud to announce an incredible opportunity to all our loyal fans. We are giving away double EXP points!
Event Duration:
Beginning on Sept. 7th at 18:30 and ending on Sept. 9th at 23:59 (2 days)
Find GuruTodd in the Twin City (438,377) and he will invite you to join in the double EXP training. Each time, you will receive an hour's worth of double EXP. During the event, you can join in the...
|
Make 1 mil Gold in 1 hour exploited
06/11/2006 - General Gaming Discussion - 13 Replies
Hi all sry for my bad english cause not my primary language , i'll describe u all how to make ur GB char rich a few hours and lvlup ur GB char from noobs to Sapphire Wand just a few days , but i recommend u dont try it every day ,actualy im using 2 comp for it i got 1 mil every 1 hour, and dont blame me if u got banned .
Tools
======
XFS2 = .xfs Decompiler ( googling it for that tool )
B43bot = bot ur gb char while u sleep
Vbot = another bot with ideath, auto ready fuction
1st...
|
All times are GMT +1. The time now is 17:32.
|
|