use of fr.glowstoner.fireapi.bigbrother.spy.packets.PacketSpyAction in project FireAPI by FireBlade-Serv.
the class Events method onJoin.
@EventHandler
public void onJoin(PlayerJoinEvent e) {
this.injector.addPlayer(e.getPlayer());
e.setJoinMessage(null);
this.tag.add(e.getPlayer());
try {
this.client.sendPacket(new PacketSpyAction(e.getPlayer().getName(), e.getPlayer().getAddress().getAddress().getHostAddress(), this.id, SpyAction.PLAYER_SERVER_CONNECTION));
} catch (IOException e1) {
e1.printStackTrace();
}
if (this.api.id().equals("login-spigot")) {
e.getPlayer().teleport(new Location(e.getPlayer().getWorld(), 0, 12, 0));
}
}
use of fr.glowstoner.fireapi.bigbrother.spy.packets.PacketSpyAction in project FireAPI by FireBlade-Serv.
the class BigBrotherListener method onPacketReceive.
@Override
public void onPacketReceive(Packet packet) {
try {
ConnectionHandler server = packet.getConnection();
String name = (server.getName().equals("default-name")) ? server.getIP() : server.getName();
if (!(packet instanceof PacketPing)) {
if (!(packet instanceof PacketSpyAction)) {
System.out.println("[BigBrother] Packet reçu : " + name + " -> " + packet.getClass().getSimpleName());
} else {
System.out.println("[BigBrother] Packet reçu : " + name + " -> " + packet.getClass().getSimpleName() + " / " + ((PacketSpyAction) packet).getAction().name());
}
}
if (server.isLogged().equals(LoginResult.NOT_LOGGED)) {
if (packet instanceof PacketLogin) {
PacketLogin pl = (PacketLogin) packet;
try {
String cpass = pl.decryptPass(this.log.getKey());
System.out.println("[BigBrother] PacketLogin reçu, valeur du PASS (crypt) : " + pl.getCryptPassword());
System.out.println("[BigBrother] PacketLogin reçu, valeur du PASS (D_key) : " + cpass);
if (cpass.equals(this.log.getPassword())) {
server.sendPacket(new PacketText("[BigBrother] Connection réussie !"));
server.setLoginResult(LoginResult.LOGGED);
listeners.callOnConnectionSuccessfullServerListener(server);
} else {
server.sendMessage("[BigBrother] Mot de passe incorect !");
if (limit.containsKey(server)) {
limit.replace(server, limit.get(server) + 1);
if (limit.get(server) == 3) {
server.sendPacket(new PacketText("[BigBrother] Trop de tentatives ratées ! Déconnexion ..."));
server.close();
}
} else {
limit.put(server, 1);
}
}
} catch (InvalidKeyException | NoSuchAlgorithmException | NoSuchPaddingException | IllegalBlockSizeException | BadPaddingException | IOException e) {
return;
}
} else {
server.sendPacket(new PacketText("[BigBrother] Vous devez vous connecter !"));
return;
}
}
if (packet instanceof PacketCommand) {
this.listeners.callOnCommandServerListener((PacketCommand) packet);
} else if (packet instanceof PacketVersion) {
PacketVersion ver = (PacketVersion) packet;
if (!this.connectionstype.containsKey(VersionType.SPIGOT_VERSION)) {
if (ver.getType().equals(VersionType.SPIGOT_VERSION)) {
List<ConnectionHandler> list = new CopyOnWriteArrayList<>();
list.add(server);
this.connectionstype.put(VersionType.SPIGOT_VERSION, list);
}
} else {
if (ver.getType().equals(VersionType.SPIGOT_VERSION)) {
List<ConnectionHandler> list = this.connectionstype.get(VersionType.SPIGOT_VERSION);
list.add(server);
this.connectionstype.replace(VersionType.SPIGOT_VERSION, list);
}
}
if (!this.connectionstype.containsKey(VersionType.BUNGEECORD_VERSION)) {
if (ver.getType().equals(VersionType.BUNGEECORD_VERSION)) {
List<ConnectionHandler> list = new CopyOnWriteArrayList<>();
list.add(server);
this.connectionstype.put(VersionType.BUNGEECORD_VERSION, list);
}
} else {
if (ver.getType().equals(VersionType.BUNGEECORD_VERSION)) {
List<ConnectionHandler> list = this.connectionstype.get(VersionType.BUNGEECORD_VERSION);
list.add(server);
this.connectionstype.replace(VersionType.BUNGEECORD_VERSION, list);
}
}
} else if (packet instanceof PacketFriends) {
PacketFriends pf = (PacketFriends) packet;
if (pf.getAction() instanceof FriendsActionTransmetterGUI) {
FriendsActionTransmetterGUI fa = (FriendsActionTransmetterGUI) pf.getAction();
if (fa.to().equals(VersionType.SPIGOT_VERSION)) {
for (ConnectionHandler chs : this.connected) {
if (chs.getName().equals(fa.getServerDestination())) {
chs.sendPacket(packet);
}
}
}
}
} else if (packet instanceof PacketPlayerPing) {
PacketPlayerPing pp = (PacketPlayerPing) packet;
if (pp.getState().equals(PingState.INIT_SERVER)) {
pp.setState(PingState.BUNGEE_REQUEST);
try {
this.getServerConnectionByNameUnsafe(VersionType.BUNGEECORD_VERSION, "main-bungeecord").sendPacket(pp);
} catch (IOException e) {
e.printStackTrace();
}
}
} else if (packet instanceof PacketSpyAction) {
PacketSpyAction spy = (PacketSpyAction) packet;
Calendar cal = GregorianCalendar.getInstance();
cal.setTime(new Date());
if (this.gs.ifDataFileExists(spy.getPlayerName())) {
this.gs.updateDataFile(spy.getPlayerName(), BigBrotherSpyUtils.mergeHistory(this.gs.getHistory(spy.getPlayerName()), spy));
} else {
BigBrotherSpyHistory gh = new BigBrotherSpyHistory(spy.getPlayerName(), spy.getIP(), BigBrotherSpyUtils.toFireCalendar(cal));
gh.putMessage(BigBrotherSpyUtils.toFireCalendar(spy.getActionDate()), spy.getAction(), spy.getFormatedMsg(), spy.getRawMsg());
this.gs.createNewDataFile(spy.getPlayerName(), gh);
}
} else if (packet instanceof PacketSpyHistoryGetter) {
PacketSpyHistoryGetter get = (PacketSpyHistoryGetter) packet;
if (get.getState().equals(BigBrotherSpyHistoryGetterState.REQUEST)) {
get.setState(BigBrotherSpyHistoryGetterState.SEND);
get.setHistory(this.gs.getHistory(get.getPlayerName()));
server.sendPacket(get);
}
} else if (packet instanceof PacketBigBrotherAC) {
PacketBigBrotherAC gacp = (PacketBigBrotherAC) packet;
if (gacp.getType().equals(BigBrotherTypeAC.CHEAT_DETECTION)) {
if (gacp.getTODO().equals(BigBrotherActionAC.INFORM_STAFF)) {
this.getServerConnectionByNameUnsafe(VersionType.BUNGEECORD_VERSION, "main-bungeecord").sendPacket(gacp);
}
}
}
} catch (Exception e) {
return;
}
}
use of fr.glowstoner.fireapi.bigbrother.spy.packets.PacketSpyAction in project FireAPI by FireBlade-Serv.
the class Events method onLoginSuccefull.
@EventHandler
public void onLoginSuccefull(LoginSuccessEvent e) {
ProxiedPlayer pp = e.getPlayer();
this.stillconnected.remove(pp);
pp.connect(this.instance.getBungeePlugin().getProxy().getServerInfo("hub"));
this.friends.sendFriendsAlert(pp);
try {
this.c.sendPacket(new PacketSpyAction(pp.getName(), pp.getAddress().getAddress().getHostAddress(), "Le joueur vient de passer les sécurités du login.", SpyAction.PLAYER_LOGGED));
} catch (IOException e1) {
e1.printStackTrace();
}
}
use of fr.glowstoner.fireapi.bigbrother.spy.packets.PacketSpyAction in project FireAPI by FireBlade-Serv.
the class Events method onLeave.
@EventHandler
public void onLeave(PlayerQuitEvent e) {
this.injector.removePlayer(e.getPlayer());
e.setQuitMessage(null);
this.tag.remove(e.getPlayer());
try {
this.client.sendPacket(new PacketSpyAction(e.getPlayer().getName(), e.getPlayer().getAddress().getAddress().getHostAddress(), this.id, SpyAction.PLAYER_SERVER_DISCONNECT));
} catch (IOException e1) {
e1.printStackTrace();
}
}
use of fr.glowstoner.fireapi.bigbrother.spy.packets.PacketSpyAction in project FireAPI by FireBlade-Serv.
the class BigBrotherAC method moveAlert.
public void moveAlert(Player p, int packets, boolean position) {
try {
String message = (position) ? "MoveCheat (" + packets + " paquets, position mode)" : "MoveCheat (" + packets + " paquets)";
this.api.getClient().sendPacket(new PacketBigBrotherAC(p.getName(), message, BigBrotherTypeAC.CHEAT_DETECTION, BigBrotherActionAC.INFORM_STAFF, BigBrotherCheatAC.MOVE, ((CraftPlayer) p).getHandle().ping));
this.api.getClient().sendPacket(new PacketSpyAction(p.getName(), p.getAddress().getAddress().getHostAddress(), "Flyhack (" + packets + " paquets)", SpyAction.PLAYER_BBAC_DETECTION));
} catch (IOException e) {
e.printStackTrace();
}
}
Aggregations