mirror of
https://github.com/sirjonasxx/G-Earth.git
synced 2024-11-26 10:20:51 +01:00
commiting oncommitted shit
This commit is contained in:
parent
649fea0f29
commit
1685f350c9
@ -7,5 +7,7 @@
|
|||||||
</content>
|
</content>
|
||||||
<orderEntry type="inheritedJdk" />
|
<orderEntry type="inheritedJdk" />
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
<orderEntry type="library" name="jna-4.5.1" level="project" />
|
||||||
|
<orderEntry type="library" name="jna-platform-4.5.1" level="project" />
|
||||||
</component>
|
</component>
|
||||||
</module>
|
</module>
|
3
desktop.ini
Normal file
3
desktop.ini
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[LocalizedFileNames]
|
||||||
|
jna-4.5.1.jar=@jna-4.5.1.jar,0
|
||||||
|
jna-platform-4.5.1.jar=@jna-platform-4.5.1.jar,0
|
BIN
jna-4.5.1.jar
Normal file
BIN
jna-4.5.1.jar
Normal file
Binary file not shown.
BIN
jna-platform-4.5.1.jar
Normal file
BIN
jna-platform-4.5.1.jar
Normal file
Binary file not shown.
@ -233,11 +233,10 @@ public class LinuxHabboClient extends HabboClient {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
synchronized (lock) {
|
||||||
if (matchStart != -1) {
|
if (matchStart != -1) {
|
||||||
result.add(new LinuxMemorySnippet(start + matchStart, new byte[matchEnd - matchStart + 4]));
|
result.add(new LinuxMemorySnippet(start + matchStart, new byte[matchEnd - matchStart + 4]));
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized (lock) {
|
|
||||||
count[0] ++;
|
count[0] ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,36 +1,85 @@
|
|||||||
package main.protocol.memory.habboclient.windows;
|
package main.protocol.memory.habboclient.windows;
|
||||||
|
|
||||||
|
import com.sun.jna.Memory;
|
||||||
|
import com.sun.jna.Native;
|
||||||
|
import com.sun.jna.Pointer;
|
||||||
|
import com.sun.jna.platform.win32.Kernel32;
|
||||||
|
import com.sun.jna.platform.win32.User32;
|
||||||
|
import com.sun.jna.platform.win32.WinBase;
|
||||||
|
import com.sun.jna.platform.win32.WinNT;
|
||||||
|
import com.sun.jna.ptr.IntByReference;
|
||||||
import main.protocol.HConnection;
|
import main.protocol.HConnection;
|
||||||
import main.protocol.memory.habboclient.HabboClient;
|
import main.protocol.memory.habboclient.HabboClient;
|
||||||
|
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.util.ArrayList;
|
import java.lang.reflect.Array;
|
||||||
import java.util.List;
|
import java.util.*;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by Jeunez on 27/06/2018.
|
* Created by Jeunez on 27/06/2018.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* all code in this file is here for no actual purpose atm
|
||||||
|
*/
|
||||||
|
|
||||||
public class WindowsHabboClient extends HabboClient {
|
public class WindowsHabboClient extends HabboClient {
|
||||||
|
|
||||||
private static final boolean DEBUG = true;
|
private static final boolean DEBUG = true;
|
||||||
private int[] PID; // list of potential PIDs
|
private List<WindowsTask> possibleFlashTasks;
|
||||||
|
|
||||||
|
static Kernel32 kernel32 = (Kernel32) Native.loadLibrary("kernel32",Kernel32.class);
|
||||||
|
static User32 user32 = (User32) Native.loadLibrary("user32", User32.class);
|
||||||
|
|
||||||
|
public static int PROCESS_VM_READ= 0x0010;
|
||||||
|
public static int PROCESS_VM_WRITE = 0x0020;
|
||||||
|
public static int PROCESS_VM_OPERATION = 0x0008;
|
||||||
|
|
||||||
|
|
||||||
public WindowsHabboClient(HConnection connection) {
|
public WindowsHabboClient(HConnection connection) {
|
||||||
super(connection);
|
super(connection);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void obtain_PID () {
|
static class WindowsTask {
|
||||||
String command="cmd /C netstat -a -o -n | findstr "+hConnection.getClientHostAndPort()+" | findstr ESTABLISHED";
|
public String name;
|
||||||
|
public int PID;
|
||||||
|
public String session_name;
|
||||||
|
public int sessionNumber;
|
||||||
|
public int mem_usage;
|
||||||
|
|
||||||
|
public WindowsTask(String name, int PID, String sessions_name, int sessionNumber, int mem_usage) {
|
||||||
|
this.name = name;
|
||||||
|
this.PID = PID;
|
||||||
|
this.session_name = sessions_name;
|
||||||
|
this.sessionNumber = sessionNumber;
|
||||||
|
this.mem_usage = mem_usage;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "name: " + name + ", PID: " + PID + ", memory: " + mem_usage;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static List<String> execute_command(String command) {
|
||||||
|
List<String> result = new ArrayList<>();
|
||||||
try {
|
try {
|
||||||
Process process = Runtime.getRuntime().exec(command);
|
Process process = Runtime.getRuntime().exec(command);
|
||||||
BufferedReader reader=new BufferedReader( new InputStreamReader(process.getInputStream()));
|
BufferedReader reader=new BufferedReader( new InputStreamReader(process.getInputStream()));
|
||||||
String s;
|
String s;
|
||||||
while ((s = reader.readLine()) != null){
|
while ((s = reader.readLine()) != null){
|
||||||
String[] split = s.split(" ");
|
result.add(s);
|
||||||
|
}
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
private static List<String> splitStringExtra(String s, String regex ) {
|
||||||
|
String[] split = s.split(regex);
|
||||||
|
|
||||||
List<String> realSplit = new ArrayList<>();
|
List<String> realSplit = new ArrayList<>();
|
||||||
for (String spli : split) {
|
for (String spli : split) {
|
||||||
@ -39,21 +88,216 @@ public class WindowsHabboClient extends HabboClient {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (realSplit.get(1).equals(hConnection.getClientHostAndPort())) {
|
return realSplit;
|
||||||
// PID = Integer.parseInt(realSplit.get(4));
|
}
|
||||||
|
private static List<WindowsTask> parseTaskList(List<String> lines) {
|
||||||
|
List<WindowsTask> windowsTasks = new ArrayList<>();
|
||||||
|
|
||||||
|
final int ARG_COUNT = 5;
|
||||||
|
boolean listHasStarted = false;
|
||||||
|
int[] paramLengths = new int[ARG_COUNT];
|
||||||
|
for (String line : lines) {
|
||||||
|
|
||||||
|
if (!listHasStarted && line.startsWith("=")) {
|
||||||
|
List<String> splitted = splitStringExtra(line, " ");
|
||||||
|
if (splitted.size() == ARG_COUNT) {
|
||||||
|
listHasStarted = true;
|
||||||
|
for (int i = 0; i < ARG_COUNT; i++) {
|
||||||
|
paramLengths[i] = splitted.get(i).length();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
}
|
||||||
|
else if (listHasStarted && splitStringExtra(line, " ").size() >= 5) {
|
||||||
|
int v = 0;
|
||||||
|
String[] args = new String[ARG_COUNT];
|
||||||
|
for (int i = 0; i < ARG_COUNT; i++) {
|
||||||
|
int endindex = v + paramLengths[i];
|
||||||
|
args[i] = trim(line.substring(v, endindex));
|
||||||
|
v = endindex + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
WindowsTask task = new WindowsTask(
|
||||||
|
args[0],
|
||||||
|
Integer.parseInt(args[1]),
|
||||||
|
args[2],
|
||||||
|
Integer.parseInt(args[3]),
|
||||||
|
obtainMemorySizeFromCMDString(args[4])
|
||||||
|
);
|
||||||
|
|
||||||
|
windowsTasks.add(task);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return windowsTasks;
|
||||||
|
}
|
||||||
|
private static String trim(String s) {
|
||||||
|
int start = 0;
|
||||||
|
for (int i = 0; i < s.length(); i++) {
|
||||||
|
if (s.charAt(i) == ' ') start++;
|
||||||
|
else break;
|
||||||
|
}
|
||||||
|
|
||||||
|
int end = s.length();
|
||||||
|
for (int i = s.length() - 1; i >= 0; i--) {
|
||||||
|
if (s.charAt(i) == ' ') end--;
|
||||||
|
else break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return s.substring(start, end);
|
||||||
|
}
|
||||||
|
private static int obtainMemorySizeFromCMDString(String s) {
|
||||||
|
s = s.replaceAll("[^0-9A-Z]","")
|
||||||
|
.replace("K","000")
|
||||||
|
.replace("M", "000000")
|
||||||
|
.replace("G", "000000000");
|
||||||
|
return Integer.parseInt(s);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void obtain_PIDs() {
|
||||||
|
int headPID = -1;
|
||||||
|
|
||||||
|
|
||||||
|
String command1 = "cmd /C netstat -a -o -n | findstr "+hConnection.getClientHostAndPort()+" | findstr ESTABLISHED";
|
||||||
|
List<String> connections = execute_command(command1);
|
||||||
|
for (String s : connections) {
|
||||||
|
List<String> realSplit = splitStringExtra(s, " ");
|
||||||
|
|
||||||
|
if (realSplit.size() > 1 && realSplit.get(1).equals(hConnection.getClientHostAndPort())) {
|
||||||
|
headPID = Integer.parseInt(realSplit.get(4));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
String command2 = "cmd /C tasklist";
|
||||||
|
List<String> tasks = execute_command(command2);
|
||||||
|
List<WindowsTask> taskList = parseTaskList(tasks);
|
||||||
|
|
||||||
|
WindowsTask matchWithPID = null;
|
||||||
|
int i = 0;
|
||||||
|
while (matchWithPID == null && i < taskList.size()) {
|
||||||
|
WindowsTask task = taskList.get(i);
|
||||||
|
if (task.PID == headPID) {
|
||||||
|
matchWithPID = task;
|
||||||
|
}
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
possibleFlashTasks = new ArrayList<>();
|
||||||
|
if (matchWithPID != null) {
|
||||||
|
for (WindowsTask task : taskList) {
|
||||||
|
if (task.name.equals(matchWithPID.name)) {
|
||||||
|
possibleFlashTasks.add(task);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<byte[]> getRC4possibilities() {
|
public List<byte[]> getRC4possibilities() {
|
||||||
obtain_PID();
|
obtain_PIDs();
|
||||||
if (DEBUG) System.out.println("FLASH PROCESS ID: " + PID);
|
|
||||||
|
|
||||||
while (true) {}
|
List<byte[]> possibilities = new ArrayList<>();
|
||||||
// return null;
|
|
||||||
|
int[] count = {0};
|
||||||
|
for (int i = 0; i < possibleFlashTasks.size(); i++) {
|
||||||
|
WindowsTask task = possibleFlashTasks.get(i);
|
||||||
|
if (DEBUG) System.out.println("Potential task " + task);
|
||||||
|
|
||||||
|
new Thread(() -> {
|
||||||
|
List<byte[]> sublist = getRC4possibilities(task.PID, task.mem_usage);
|
||||||
|
|
||||||
|
synchronized (count) {
|
||||||
|
possibilities.addAll(sublist);
|
||||||
|
count[0] ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}).start();
|
||||||
|
}
|
||||||
|
|
||||||
|
while (count[0] != possibleFlashTasks.size() + 1) { // the +1 is temporary, to keep this function blocking untill it's functional
|
||||||
|
try {
|
||||||
|
Thread.sleep(1);
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return possibilities;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<byte[]> getRC4possibilities(int processID, int processMemorySize) {
|
||||||
|
List<byte[]> result = new ArrayList<>();
|
||||||
|
|
||||||
|
// user32.GetWindowThreadProcessId()
|
||||||
|
WinNT.HANDLE process = kernel32.OpenProcess(PROCESS_VM_READ|PROCESS_VM_OPERATION, true, processID);
|
||||||
|
|
||||||
|
IntByReference test = new IntByReference(0);
|
||||||
|
Memory output = new Memory(100000);
|
||||||
|
System.out.println(kernel32.ReadProcessMemory(process, new Pointer(0), output, 100000, test));
|
||||||
|
System.out.println(test.getValue());
|
||||||
|
|
||||||
|
int[] counter = new int[256];
|
||||||
|
int p = 0;
|
||||||
|
while (p < output.size()) {
|
||||||
|
counter[(output.getByte(p) + 256) % 256] ++;
|
||||||
|
p += 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
// for (int i = 0; i < counter.length; i++) {
|
||||||
|
// System.out.println("counter " + i + " = " + counter[i]);
|
||||||
|
// }
|
||||||
|
|
||||||
|
// WinNT.HANDLE process = kernel32.OpenProcess(PROCESS_VM_READ|PROCESS_VM_OPERATION, true, processID);
|
||||||
|
// Memory out = new Memory(processMemorySize);
|
||||||
|
// kernel32.ReadProcessMemory(process, new Pointer(0), out, processMemorySize, new IntByReference());
|
||||||
|
//
|
||||||
|
// int[] counter = new int[256];
|
||||||
|
// int p = 0;
|
||||||
|
// while (p < out.size()) {
|
||||||
|
// counter[((out.getByte(p)) + 256) % 256] ++;
|
||||||
|
// p += 4;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// HashMap<Integer, ArrayList<Integer>> mapper = new HashMap<>();
|
||||||
|
// HashSet<Integer> allvalues = new HashSet<>();
|
||||||
|
// for (int i = 0; i < counter.length; i++) {
|
||||||
|
// if (!mapper.containsKey(counter[i])) {
|
||||||
|
// mapper.put(counter[i], new ArrayList<>());
|
||||||
|
// }
|
||||||
|
// mapper.get(counter[i]).add(i);
|
||||||
|
// allvalues.add(counter[i]);
|
||||||
|
// }
|
||||||
|
//// System.out.println(allvalues.size());
|
||||||
|
// ArrayList<Integer> allvalues2 = new ArrayList<>(allvalues);
|
||||||
|
// allvalues2.sort(Integer::compareTo);
|
||||||
|
//
|
||||||
|
// StringBuilder sttt = new StringBuilder();
|
||||||
|
// sttt.append("process ").append(processID).append(", ");
|
||||||
|
// for (int i = 1; i < Math.min(4, allvalues2.size()+1); i++) {
|
||||||
|
// int occ = allvalues2.get(allvalues2.size() - i);
|
||||||
|
// sttt .append(i)
|
||||||
|
// .append(": ")
|
||||||
|
// .append(mapper.get(occ).get(0))
|
||||||
|
// .append(" with ")
|
||||||
|
// .append(occ)
|
||||||
|
// .append(" occurences, ");
|
||||||
|
// }
|
||||||
|
// System.out.println(sttt);
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
String command2 = "cmd /C tasklist";
|
||||||
|
List<String> tasks = execute_command(command2);
|
||||||
|
List<WindowsTask> taskList = parseTaskList(tasks);
|
||||||
|
|
||||||
|
System.out.println("t");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,19 +0,0 @@
|
|||||||
package main.ui.extensions.extensionfilemanager;
|
|
||||||
|
|
||||||
import main.ui.extensions.extensionfilemanager.extensionfile.ExtensionFile;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Created by Jonas on 21/06/18.
|
|
||||||
*/
|
|
||||||
public interface ExtensionFilesManager {
|
|
||||||
|
|
||||||
List<ExtensionFile> getAllExtensions();
|
|
||||||
|
|
||||||
ExtensionFile addExtension(File file); //returns g-earth extension file, returns null if failure
|
|
||||||
|
|
||||||
boolean removeExtension(ExtensionFile file); //returns false if not done
|
|
||||||
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
package main.ui.extensions.extensionfilemanager;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Created by Jonas on 21/06/18.
|
|
||||||
*/
|
|
||||||
public class ExtensionFilesManagerFactory {
|
|
||||||
}
|
|
@ -1,27 +0,0 @@
|
|||||||
package main.ui.extensions.extensionfilemanager;
|
|
||||||
|
|
||||||
import main.ui.extensions.extensionfilemanager.extensionfile.ExtensionFile;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Created by Jonas on 21/06/18.
|
|
||||||
*/
|
|
||||||
public class LinuxExtensionFilesManager implements ExtensionFilesManager {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<ExtensionFile> getAllExtensions() {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public ExtensionFile addExtension(File file) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean removeExtension(ExtensionFile file) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
package main.ui.extensions.extensionfilemanager.extensionfile;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Created by Jonas on 21/06/18.
|
|
||||||
*/
|
|
||||||
public class ExtensionFile {
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user