Categories > Exploiting > Complaints >

My game Keeps getting fatal error and an error code (Im using Oxygen U)

Posts: 4

Threads: 1

Joined: Mar, 2023

Reputation: 0

Posted


This is the crash log

Crash Information: [Code = 0xC0000005] [ExceptSymbol = NoSym] [Eip = 0x772ABB1F] [Eax = 0x00000006] [Ebx = 0x12635DA8] [Ecx = 0x487E02B0] [Edx = 0x391F1A48] [Esi = 0x12635C78] [Edi = 0x391F1A48] [Ebp = 0x0BDBFE80] [Esp = 0x0BDBFE78] [Dll Base = 0x00000000] [File: UnkFile] [DynamicAddr: 0x00400006] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x0189FDFA] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x0187CA2A] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x018777CE] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x01876F91] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x01878A2A] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x007F1579] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x007EACF6] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x007EA65D] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x0086BBB9] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x0086CAF6] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x010CB4F0] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x010CA00C] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x010C9609] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x010C640A] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x010C52EE] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x011C537D] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x00B2A6C8] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x00B2A214] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x00B4E27D] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x00B2CAB9] [BaseAddr: 0x00810000] [File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x025F38B5] [BaseAddr: 0x00810000] [File: UnkFile] [Module: KERNEL32.DLL] [RebaseAddr: 0x00417D69] [BaseAddr: 0x75B40000] [File: UnkFile] [Module: ntdll.dll] [RebaseAddr: 0x0046BB9B] [BaseAddr: 0x77240000] [File: UnkFile] [Module: ntdll.dll] [RebaseAddr: 0x0046BB1F] [BaseAddr: 0x77240000]
  • 0

Haruka

STD Testing Center

Posts: 58

Threads: 3

Joined: Feb, 2023

Reputation: 5

Replied

detected lol

 

  • 0

https://media.discordapp.net/attachments/979069297374671018/1078367228593971362/VelvetSiggy.png

 

 

Posts: 4

Threads: 1

Joined: Mar, 2023

Reputation: 0

Replied

bruhhhhhhhhhhhhhhhh

  • 0

Added

the script or executor?

 

  • 0

Posts: 414

Threads: 3

Joined: Apr, 2021

Reputation: 43

Replied

@Haruka, that's not how an executor works, an executor doesn't typically crash due to any type of detection. It is likely that the executor crashed from the script executed.

  • 0

I am Styx/John/JJ.

I specialize in Luau, and I don't accept commissions. I am Jupiter's current and only founder, a known script for Prison Life. Jupiter is open-source to provide transparency.

Haruka

STD Testing Center

Posts: 58

Threads: 3

Joined: Feb, 2023

Reputation: 5

Replied

@JJSploit_On_Top, exploit tried to write to a readonly page, cause the memory of the pointer pointed to another page (it could also be a diff protected page it doesnt necessarily mean readonly)

 

int* abc = SOME_PROTECTED_PAGE;

*abc = 25;
// violation

 iI bet one of their custom funcs is bad 

func(nil, nil, nil)

this will crash an executor without argument checking (on a custom func)

 

 

  • 0

https://media.discordapp.net/attachments/979069297374671018/1078367228593971362/VelvetSiggy.png

 

 

Posts: 414

Threads: 3

Joined: Apr, 2021

Reputation: 43

Replied

@Haruka The crash was likely caused due to the script ran nothing to do with being detected. As he indirectly stated that he ran a script and it crashed after running. Oxygen U likely crashed because of the script that he attempted to execute.
https://media.discordapp.net/attachments/911003765463711844/1085303606590316574/image.png
A good example of replicating a crash similar is just executing while true do end

  • 0

I am Styx/John/JJ.

I specialize in Luau, and I don't accept commissions. I am Jupiter's current and only founder, a known script for Prison Life. Jupiter is open-source to provide transparency.

Haruka

STD Testing Center

Posts: 58

Threads: 3

Joined: Feb, 2023

Reputation: 5

Replied

@JJSploit_On_Top, did you read what i said


the example i gave was an example of a custom func being used wrong and crashing the game


https://media.discordapp.net/attachments/981336442129223711/1085309544034467952/image.png

while true do end

 doesnt crash you're game it just inf loop yielding scheduler forever not a crash though

 

  • 0

https://media.discordapp.net/attachments/979069297374671018/1078367228593971362/VelvetSiggy.png

 

 

Posts: 414

Threads: 3

Joined: Apr, 2021

Reputation: 43

Replied

@Haruka really while true do end doesn't crash try it and if the custom function was used incorrectly it would error.

  • 0

I am Styx/John/JJ.

I specialize in Luau, and I don't accept commissions. I am Jupiter's current and only founder, a known script for Prison Life. Jupiter is open-source to provide transparency.

yvneEnvy

<><><<>>><<>

Posts: 306

Threads: 47

Joined: Mar, 2023

Reputation: 3

Replied

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )