cleanup and gitignore update

This commit is contained in:
sirjonasxx 2018-10-11 19:49:24 +02:00
parent 6680c105de
commit 3748105e36
26 changed files with 14 additions and 11 deletions

4
.gitignore vendored
View File

@ -1,4 +1,6 @@
.idea/
out/
G-Earth2.iml
Extensions/
/Extensions
/G-WinMem/.vs
/G-WinMem/x64

Binary file not shown.

View File

@ -23,7 +23,7 @@
<ProjectGuid>{D445BBD6-23E4-40AD-BB05-39E0401D7421}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>GWinMem</RootNamespace>
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

View File

@ -0,0 +1,4 @@
 stdafx.cpp
G-WinMem.cpp
c:\users\jeunez\g-earth\g-winmem\g-winmem\g-winmem.cpp(119): warning C4244: 'argument': conversion from 'DWORD' to 'u_short', possible loss of data
G-WinMem.vcxproj -> C:\Users\Jeunez\G-Earth\G-WinMem\x64\Debug\G-WinMem.exe

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,2 @@
#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.16299.0
Debug|x64|C:\Users\Jeunez\G-Earth\G-WinMem\|

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,3 +0,0 @@
[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

0
git
View File

Binary file not shown.

Binary file not shown.

View File

@ -1,3 +1,3 @@
Manifest-Version: 1.0
Main-Class: main.extensions.examples.adminonconnect.AdminOnConnect
Manifest-Version: 1.0
Main-Class: main.Main

View File

@ -31,7 +31,6 @@ public class WindowsHabboClient extends HabboClient {
while((line = reader.readLine()) != null) {
if (line.length() > 1) {
possibleData.add(line);
System.out.println(line);
}
}
p.destroy();
@ -42,13 +41,12 @@ public class WindowsHabboClient extends HabboClient {
public List<byte[]> getRC4possibilities() {
List<byte[]> result = new ArrayList<>();
try {
Thread.sleep(3000);
ArrayList<String> possibleData = readPossibleBytes();
for (String possibleHexStr : possibleData) {
result.add(DatatypeConverter.parseHexBinary(possibleHexStr));
}
} catch (IOException | URISyntaxException | InterruptedException e) {
} catch (IOException | URISyntaxException e) {
e.printStackTrace();
}
return result;