Coder Social home page Coder Social logo

apex_dma_kvm_pub's People

Contributors

mistery52 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

apex_dma_kvm_pub's Issues

Hello can you provide a list of multi-process traversal enumerated KVM

I need to enumerate more process PID's under Linux
Hope to get your help!

void Memory::open_procc(const wchar_t* name)
{
PROCESSENTRY32 entry;
entry.dwSize = sizeof(PROCESSENTRY32);
HANDLE snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, NULL);

if (Process32First(snapshot, &entry) == TRUE)
{
	while (Process32Next(snapshot, &entry) == TRUE)
	{
		if (wcscmp(entry.szExeFile, name) == 0)
		{
			if (proc.hProcess <= 0)
			{
				proc.hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, entry.th32ProcessID);

				if (proc.hProcess > 0)
				{
					proc.baseaddr = GetModuleBaseAddress(entry.th32ProcessID, name);

					if (proc.baseaddr)
					{
						status = process_status::FOUND_READY;
						proc.pid = entry.th32ProcessID;
					}
					else
					{
						status = process_status::FOUND_NO_ACCESS;
						close_proc();
					}
				}
				else
				{
					status = process_status::FOUND_NO_ACCESS;
					close_proc();
				}
			}

			CloseHandle(snapshot);
			return;
		}
	}
}

status = process_status::NOT_FOUND;
close_proc();

CloseHandle(snapshot);

}

Is it be detect?

EAC doesnt detect the windows client?
did someone got banned?
if it be detect what can i do to make the client on windows be undetect?

the value 0.08 & 0.05

Ctx.BulletSpeed = BulletSpeed - (BulletSpeed*0.08);

Why there are 0.08 and 0.05 correction data, what is the role of respectively, I want to know the principle, some weapons are not allowed to be far away, may be flying overhead, how to correct it

calrification please

Hi,
Not an issue but wanted to get some clarification. Can you please tell me what is the difference some of the attributes/offsets below ?

  •  #define OFFSET_ORIGIN				0x14c //m_vecAbsOrigin (**This is vec 3 player location coordinates**)
    
  • #define OFFSET_VIEWANGLES			0x252c - 0x14 //m_ammoPoolCapacity - 0x14 (**vec 2 mouse x,y axis**)
    

What's the difference between bottom three please.

  • #define OFFSET_CAMERAPOS			0x1ED0
    
  • #define OFFSET_AIMPUNCH			0x2430 //m_currentFrameLocalPlayer.m_vecPunchWeapon_Angle
    
  • #define OFFSET_BREATH_ANGLES		OFFSET_VIEWANGLES - 0x10
    

Thanks

Hi i got into error while building in guest what to do to solve this :0

Severity Code Description Project File Line Suppression State
Error C1083 Cannot open include file: 'd3dx9.h': No such file or directory Client C:\Users\shahe\Desktop\apex_dma_kvm_pub-master\apex_guest\Client\Client\overlay.h 20

Severity Code Description Project File Line Suppression State
Warning C28251 Inconsistent annotation for 'WinMain': this instance has no annotations. See c:\program files (x86)\windows kits\10\include\10.0.19041.0\um\winbase.h(1006). Overlay C:\Users\shahe\Desktop\apex_dma_kvm_pub-master\apex_guest\Overlay\Overlay\main.cpp 9

Smooth value

I need Smooth Aimbot
This aimbot is so obv for play and I got manual ban'd

Where is the smooth value
In UC, " Currently there is almost no smooth with aimbot, (you can increase the value) but with more smooth"

edit: nvm i was stupid

any tutorial on using this?

Seems it is actively updating.

Someone told me the driver of DIRECT EFI is detected.

Looking for usable driver and hack code

Hi got into error while compiling on host [generics are unstable]

after ./install.sh on apex_dma i am getting this error(i have installed cargo and memflow-kvm.):

error[E0658]: const generics are unstable
--> /root/.cargo/registry/src/github.com-1ecc6299db9ec823/dataview-0.1.2/src/lib.rs:170:27
|
170 | unsafe impl<T: Pod, const N: usize> Pod for [T; N] {}
| ^
|
= note: see issue #74878 rust-lang/rust#74878 for more information

Compiling bitflags v1.2.1
Compiling ryu v1.0.5
error: aborting due to previous error

For more information about this error, try rustc --explain E0658.
error: could not compile dataview.

To learn more, run the command again with --verbose.
warning: build failed, waiting for other jobs to finish...
error: build failed
Error while building memflow-win32-ffi

how to solve this :0

How to debug apex_dma

I try to debug apex_dma,because I want to add some functions.
So I change Makefile
$(CXX) -o $(OUTDIR)/$@ $(OBJDIR)/apex_dma.o $(OBJDIR)/Game.o $(OBJDIR)/Math.o $(OBJDIR)/memory.o $(CXXFLAGS) $(LIBS)
to $(CXX) -g -o $(OUTDIR)/$@ $(OBJDIR)/apex_dma.o $(OBJDIR)/Game.o $(OBJDIR)/Math.o $(OBJDIR)/memory.o $(CXXFLAGS) $(LIBS)
But when I use gdb apex_dma ,some errors have occurred.
I try to break in the apex_dma.cpp It returns "Function "apex_dma.cpp" not defined" and I can't print the value of variable.
I try to google this,it tells me use DIR /apex_dma.But it doesn't work.
Can you tell me how to debug this?
English is not my native language and I'm sorry for the rudeness of my language.

getting error free(): double free detected in tcache 2

changen4125@host:~/Documents/apex_dma/build$ ./apex_dma
Searching for apex process...
Searching for client process...
free(): double free detected in tcache 2
Aborted (core dumped)

did memory.cpp get a rewrite?

for (size_t n = 0; n < (len - l); ++n)
{
if (isMatch(rangeStart + n, patt_base, msk_base))
{
free(patt_base);
free(msk_base);
return n;
}
}
free(patt_base);
free(msk_base);

this seems like the only place where free() is being used and it's causing the apex_dma to crash

Offset problem

I'm sorry to bother you. I have some questions.How do I get the offset of OFFSET_VISIBLE_TIME and OFFSET_AIMPUNCH.I found the offset code on GitHub, but it doesn't seem to provide these two items.Can you tell me how to do it? Thank you very much

When i compile build.sh it returns an Error | Anyone can help?

I always get this error while i build apex dma

`error[E0658]: arbitrary expressions in key-value attributes are unstable
--> /root/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.9.1/src/lib.rs:1:10
|
1 | #![doc = include_str!("../README.md")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: see issue #78835 rust-lang/rust#78835 for more information

error: aborting due to previous error

For more information about this error, try rustc --explain E0658.
error: could not compile bumpalo

To learn more, run the command again with --verbose.
warning: build failed, waiting for other jobs to finish...
error: build failed
Error while building memflow-win32-ffi

I have tried the follwoing
I have latest ubuntu installed
I have latest rust installed (i installed it via curl)
Installed build essentials
Installed git

`

quesstion

1can i use windows as host
ubuntu as guest
2.while i using vmware run the program it cant found apex process

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.