Windows 10: How can I fix Remote Code Execution CVE_2018_8653?

Discus and support How can I fix Remote Code Execution CVE_2018_8653? in AntiVirus, Firewalls and System Security to solve the problem; How do I fix this vulnerability? I was told that I need to fix; but, don't know much about it.... Discussion in 'AntiVirus, Firewalls and System Security' started by joannejones4, Feb 13, 2019.

  1. How can I fix Remote Code Execution CVE_2018_8653?


    How do I fix this vulnerability? I was told that I need to fix; but, don't know much about it.

    :)
     
    joannejones4, Feb 13, 2019
    #1
  2. ashwin Win User

    8-puzzle code executes infinitely.

    Your solution works! make these changes. Just change comment the first two line of equals and yo did not change the Code: public void equals(EightPuzzle test)[/quote] to Code: public void equals(Object test)[/quote] Now it executes withing 1 second for all the inputs. Superb optimization. Thanks*Smile How can I fix Remote Code Execution CVE_2018_8653? :)
    But I would like to get things clarified.
    You have made the following changes :

    • in astar() you changed Code: EightPuzzle x = openset.seek();[/quote] to Code: EightPuzzle x = openset.poll();[/quote] .This way you could removed the burden of first peeking and then polling.

    • in astar() you converted Code: if(closedset.contains(y)){ continue; } if(!closedset.contains(y)){ openset.add(y); }[/quote] to Code: if (closedset.contains(y)) { continue; } openset.add(y);[/quote] This removed the burden of calling contains two times. Instead you called it only once.
    • BUT in public LinkedList getChildren() of EightPuzzle you just kept one EightPuzzle variable called unified instead of up,right,down,left. And you changed the if statements to do while. Did you make these two change to save memory or does it also make the execution faster? If yes how did these two changes make the execution faster?
    4)
     
    ashwin, Feb 13, 2019
    #2
  3. Kreij Win User
    8-puzzle code executes infinitely.

    Without running this in a debugger or seeing actual values as the code executes, this is a bit hard to do in one's head. lol

    Given that the first code snippet you posted is where the infinite loop is occurring, it looks one of the two while loops is never returning a false value and exiting.

    The While(neighbor.size() > 0) loop doesn't look like the problem as you are removing the head of the list and never putting anything back into it in the loop.

    This would cause me to look at the openset.size() value as the code is running. If a situation occurs where after you remove the head of the list (with the openset.poll() call) another node is always being added by the openset.add() call inside the nested while loop, the size of openset would never reach zero and thus loop forever.

    I could, of course, be totally confused and wrong. *Big Grin How can I fix Remote Code Execution CVE_2018_8653? :D
     
    Kreij, Feb 13, 2019
    #3
  4. Aquinus Win User

    How can I fix Remote Code Execution CVE_2018_8653?

    8-puzzle code executes infinitely.

    Bingo, you go from linear time to constant time. Huge performance benefits for large data sets.
    Ahh, right. The object class should be smart enough to use all of the object attributes, but you may want to override it since it could most likely be executed faster. That makes sense, I missed that one. I only spent a little while looking through and editing code.
     
    Aquinus, Feb 13, 2019
    #4
Thema:

How can I fix Remote Code Execution CVE_2018_8653?

Loading...
  1. How can I fix Remote Code Execution CVE_2018_8653? - Similar Threads - fix Remote Code

  2. How can I fix "The code execution cannot proceed because MSVCR120.dll was not found....

    in Windows 10 Gaming
    How can I fix "The code execution cannot proceed because MSVCR120.dll was not found....: I have gone through the process of reinstalling C++ redistributables and restarting my computer. It's way too late and I should be in bed. but is this something I can fix myself? I'm not an incredible noob, if I have clear directions I can probably get it done. I recently...
  3. How can I fix "The code execution cannot proceed because MSVCR120.dll was not found....

    in Windows 10 Software and Apps
    How can I fix "The code execution cannot proceed because MSVCR120.dll was not found....: I have gone through the process of reinstalling C++ redistributables and restarting my computer. It's way too late and I should be in bed. but is this something I can fix myself? I'm not an incredible noob, if I have clear directions I can probably get it done. I recently...
  4. 3D Builder remote code execution vulnerability

    in Windows 10 Gaming
    3D Builder remote code execution vulnerability: Removed all instances including provisioned of 3DBuilder save for one that is listed as "staged" with no package user info other than {S-1-5-18}. Any way of getting rid of this hopefully via powershell? It seems to be triggering a Tenable.io plugin but I'm wondering if it is...
  5. 3D Builder remote code execution vulnerability

    in Windows 10 Software and Apps
    3D Builder remote code execution vulnerability: Removed all instances including provisioned of 3DBuilder save for one that is listed as "staged" with no package user info other than {S-1-5-18}. Any way of getting rid of this hopefully via powershell? It seems to be triggering a Tenable.io plugin but I'm wondering if it is...
  6. 3D Builder remote code execution vulnerability

    in AntiVirus, Firewalls and System Security
    3D Builder remote code execution vulnerability: Removed all instances including provisioned of 3DBuilder save for one that is listed as "staged" with no package user info other than {S-1-5-18}. Any way of getting rid of this hopefully via powershell? It seems to be triggering a Tenable.io plugin but I'm wondering if it is...
  7. How can I use CSC.EXE .NET Framework Executable to compile C# code into executables or...

    in Windows 10 Network and Sharing
    How can I use CSC.EXE .NET Framework Executable to compile C# code into executables or...: Hello. Recently I was trying to find out how do I compile my .CS file C# File with C# Code into an EXE or DLL file for my program. I asked some of my friends in case they know, they told me to use csc .NET Framework Feature. It is located in...
  8. How can I use CSC.EXE .NET Framework Executable to compile C# code into executables or...

    in Windows 10 Gaming
    How can I use CSC.EXE .NET Framework Executable to compile C# code into executables or...: Hello. Recently I was trying to find out how do I compile my .CS file C# File with C# Code into an EXE or DLL file for my program. I asked some of my friends in case they know, they told me to use csc .NET Framework Feature. It is located in...
  9. How can I use CSC.EXE .NET Framework Executable to compile C# code into executables or...

    in Windows 10 Software and Apps
    How can I use CSC.EXE .NET Framework Executable to compile C# code into executables or...: Hello. Recently I was trying to find out how do I compile my .CS file C# File with C# Code into an EXE or DLL file for my program. I asked some of my friends in case they know, they told me to use csc .NET Framework Feature. It is located in...
  10. WARNING BARS Remote Code Execution?

    in AntiVirus, Firewalls and System Security
    WARNING BARS Remote Code Execution?: I'm getting warning bars all over my screen, first it was a few then, I unpluged my laptop from the internet and today they seem to have multipled in numbers. I'm suspecting some sort of data gathering script. I deleted VLC player and ran CCleaner then, I looked into WinRAR...