Jump to content

Recommended Posts

Posted

lol  :)

 

you can play with this tool but you can t hack anytink with it

 

when you install sql database

 

1- with standard installtion ; you can t acces to database from other computer

2- if you allow acces to database from network or internet you need

    ( network authentification or "user password" authentification )

 

3- brute force sql server is very deficulte because it have a policie for stronger password

 

 

 

Posted

not working for me

Have you tested it?I am not sure that u even know wtf that program does...

 

You need to target an IP with MySQL enabled and port 3306 opened...

 

Then find a userlist.txt and a passlist.txt search google and brute it up

 

it may take a year but ok...

 

But if you didnt tested dont say that it isn't working

 

ty +1

+1 ? What +1? Karma ? omg u r spammer :)

Posted

any idea wchich server is this ? ---> M049 MAGENTA.FASTWEBSERVER.DE (mssqlserver)

cause i was looking for l2core l2j server (M050 MAGENTA.FASTWEBSERVER.DE (mysqlserver)

the ip and the name of the host is different from l2core , anybody has an idea?

Posted

any idea wchich server is this ? ---> M049 MAGENTA.FASTWEBSERVER.DE (mssqlserver)

cause i was looking for l2core l2j server (M050 MAGENTA.FASTWEBSERVER.DE (mysqlserver)

the ip and the name of the host is different from l2core , anybody has an idea?

Yes, maybe he hosts his Lineage server on onother host,

and his website to his own pc or to onother host,

thats why it maybe got different Adressses :)

Posted

any idea wchich server is this ? ---> M049 MAGENTA.FASTWEBSERVER.DE (mssqlserver)

cause i was looking for l2core l2j server (M050 MAGENTA.FASTWEBSERVER.DE (mysqlserver)

the ip and the name of the host is different from l2core , anybody has an idea?

L2core's mysql server ip is
This is the hidden content, please
. You'll need to bruteforce it
Posted

One know Linezeus ip?

i think is 212.72.187.2  sOo i know it now??

what i must do to take their acc??

 

Their website IP is 80.252.100.74

 

I dont know about their MySQL IP =x

 

Loginserver and gameserver IP is 212.72.187.2

 

But they maybe host MySQL Files on onother server, I dont know if its possible thow ;]...

 

to take their acc? Lol u wont hack Admins account, u will hack Server's database...

 

But nothing will happen even if you hack them because they keep backup's, trust me I know ;) !

 

To hack them u need to wait a year with MySQL so it can finds the password, start a scan with a passlist.txt and a userlist.txt

[search google]

 

and if it finds the password u will be good, if not gg qq bb :D

 

p.s They need to have 3306 Port opened...

 

So if they dont use remote connection it wont be opened ;)

Posted

Can you give me your msn to speak from here ??

i want it send me to pm Thanks!

or check you PM's I have send you my e-mail add me !!*(But now) :D

i have Create a Account

ID: aaaaa2

Password: pcaaa

 

so can you try it to find this account or something?

Guest
This topic is now closed to further replies.



  • Posts

    • So dont plat that waste time&money server.   GM promises pie in the sky, but does nothing. It's all about money, money, money. And wipe.   SCAM server!
    • I'm looking for someone to remove GameGuard from a game that uses XTRAP. The game no longer uses XTRAP. I have a game server. But the client is kicked from the game after a few minutes of logging in. If I try to remove XTRAP (just by deleting it), the game opens and closes quickly.   Send me a PM. The game is Audition, a dance game.
    • 🎉 L2Dead StuckSub - GRAND OPENING 14 February 2026🎉 After beta, testing, mistakes, laughs and a lot of PvP, the moment has finally come. L2Dead StuckSub is officially opening its gates on 14 February 2026.   ⚔️What to expect: ✦Main Class +6 Stuck Sub system ✦Balanced PvP & custom party farm areas ✦Custom events, bosses and strong rewards ✦Competitive clan scene with castle rewards   📌Until the opening: ✦Create your clans and register them in the Clan-Register channel ✦Invite your friends / old parties / CPs ✦Stay tuned for more information (rates, events, siege times, etc.)   Get your setups ready, prepare your macros and your Discord/voice. On 14 February 2026 20:00 GMT+2, we write the first chapter of L2Dead together. 🔥 https://www.l2dead.com/ https://discord.gg/TGnATuZmdt
    • Here’s the **clean, L2jAcis-style way** to make **Auto Loot work ONLY for Premium players** on **Interlude**.   I’ll give you **two options** — pick what fits your server philosophy.   ---   ## ✅ OPTION 1 (BEST PRACTICE): Premium-Only Auto Loot (Code-based)   ### 🔹 Step 1: Add config option   **`config/Premium.properties`**   ```properties # Enable auto loot only for premium players PremiumAutoLoot = True ```   ---   ### 🔹 Step 2: Read config   **`Config.java`**   ```java public static boolean PREMIUM_AUTO_LOOT; ```   Load it:   ```java PREMIUM_AUTO_LOOT = Premium.getProperty("PremiumAutoLoot", false); ```   ---   ### 🔹 Step 3: Modify drop handling   **File:**   ``` net.sf.l2j.gameserver.model.actor.instance.L2MonsterInstance ```   Find **dropItems()** or **doItemDrop()** Replace / modify logic like this:   ```java if (player != null && player.isPremium() && Config.PREMIUM_AUTO_LOOT) {     for (ItemInstance item : items)         player.getInventory().addItem("AutoLoot", item, player, this); } else {     for (ItemInstance item : items)         dropItem(player, item); } ```   ✅ Result:   * **Premium players** → instant loot * **Normal players** → loot on ground   ---   ## ✅ OPTION 2: Auto Loot via Character Variable (More Flexible)   Useful if you want **GM control** per character.   ### 🔹 Premium activation   When premium is added:   ```java player.setVar("AUTO_LOOT", "1"); ```   ### 🔹 Drop check   ```java if (player != null && player.getVarB("AUTO_LOOT")) {     player.addItem("AutoLoot", item, player, true); } else {     dropItem(player, item); } ```   ---   ## 🎯 BONUS (Recommended Add-Ons)   ### 🔸 Adena always auto-loot (even non-premium)   ```java if (item.getItemId() == 57) {     player.addAdena("Loot", item.getCount(), this, true);     continue; } ```   ### 🔸 Party check (premium leader only)   ```java player.isInParty() && player.getParty().getLeader().isPremium() ```   ---   ## ⚠️ Notes (Interlude Safe)   ✔ Compatible with **L2jAcis Interlude** ✔ No client-side changes ✔ No exploit risk ✔ Retail-like behavior   ---      
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..