Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 12/30/2016 in all areas

  1. 1 point
    Hello everyone, I'll teach you to change the default password that is contained in the Safety table of the Tradedb database. Why should you change this password? 1) Because with TradeTools.exe, with its dedicated IP, with the right port and the default password (moliyo#TradeServer@bird&man), it is possible to add, edit and delete items and packages, albeit Categories, see these images: To maintain your security I recommend you change it, see the steps: 1) Generate a unicode password with 27 characters, I will use this site to generate a random password: http://maord.com/ 2) Open GameServer.exe with Notepad++ and look for the default password (moliyo#TradeServer@bird&man) and replace with new one and save it. Always back up your GameServer.exe before making any modifications. 3) Open InfoPasswd.exe and paste the new password into the text field and then click on the button until you create an encrypted password. Download InfoPasswd.exe here 4) Copy this encrypted password and paste it into the Passwd column inside the Safety table. 5) Open GameServer.exe and IGS and see if everything is ok. 6) Done, the default password has been modified successfully, now it is seized.
  2. 1 point
    Hey @Vasil~~ Thanks! I'll try using this part, so I won't need to hook: Appreciate it!
  3. 1 point
    MoneyDWHook = GetExp_PKM GetExp_PKM = function( dead , atk ) MoneyDWHook(dead,atk) local DeadMonster = GetChaID(dead) if(GetChaMapName(atk) == "puzzleworld" or GetChaMapName(atk) == "puzzleworld2") then if(DeadMonster == 669 or DeadMonster == 670 or DeadMonster == 671 or DeadMonster == 672 or DeadMonster == 725 or DeadMonster == 726)then local chamoney = GetChaAttr( atk , ATTR_GD ) local moneyadd = 1000000 chamoney = chamoney + moneyadd SetCharaAttr( chamoney, atk , ATTR_GD ) SyncChar(atk,4) SystemNotice( atk, "You have Recieved 1 Million Gold From "..GetChaDefaultName(dead) ) end elseif(GetChaMapName(atk) == "darkswamp")then if(DeadMonster == 696 or DeadMonster == 695 or DeadMonster == 698 or DeadMonster == 697)then local chamoney = GetChaAttr( atk , ATTR_GD ) local moneyadd = 500000 chamoney = chamoney + moneyadd SetCharaAttr( chamoney, atk , ATTR_GD ) SyncChar(atk,4) SystemNotice( atk, "You have Recieved 500k Gold From "..GetChaDefaultName(dead) ) end end end This should work @Faller
  4. 1 point
    I found TradeTools.exe in the source code of Tales Of Pirates. Just follow the path: Files > Server > TradeSystem > TradeTools > Bin. It adds, edits, and deletes items and packages. It sends data to the TradeServer and it updates the Item Mall without having to restart.
  5. 1 point
    Hello, in addition to @wolfenx message, check for any of these functions listed below within your php files (note, these functions are dangerous when they are wihin an user input, otherwise they are just fine): eval: evaluates an string as php code system: executes a program shell_exec: executes a command exec: executes a program ------------------------------------------------------------------------------------------------- -- Also sql queries, but that's just normal within most shared sites. ------------------------------------------------------------------------------------------------- -- listed functions below are probably within your php files on your website, don't worry at all unless you know that there could be a hole(an user input). include include_once require require_once for more info: https://www.owasp.org/index.php/Path_Traversal ------------------------------------------------------------------------------------------------- ^ there are probably more, these are most that I can remember right now ------------------------------------------------------------------------------------------------- If someone is interesed to read more about security stuff: This will be your `must`: https://www.owasp.org/index.php/Category:Vulnerability
  6. 1 point
    Thread locked. Reasons: self-explanatory
  • Newsletter

    Want to keep up to date with all our latest news and information?
    Sign Up
×
×
  • Create New...