Coder Social home page Coder Social logo

Comments (6)

PCAssistSoftware avatar PCAssistSoftware commented on July 23, 2024 2

Problem fixed

In SystemInformation.cs you are assuming that the client is running on a 64-bit version of Windows and looking in a key which only exists in 64-bit

e.g.

private static string GetProductName()
{
var key = @"SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion";
return Registry.LocalMachine.OpenSubKey(key).GetValue("ProductName").ToString();
}

That is what causes the crash above

For testing I change it to below and it works, but it really needs changing to detect 32 or 64 and then look in correct key

private static string GetProductName()
{
var key = @"SOFTWARE\Microsoft\Windows NT\CurrentVersion";
return Registry.LocalMachine.OpenSubKey(key).GetValue("ProductName").ToString();
}

from pace.

fragtion avatar fragtion commented on July 23, 2024

I just compiled from master on VS2017 and it works fine

Did you make any changes to the source before compiling? Which IDE did you use to compile, and did it fetch all of the dependency packages?

Keep in mind that this RAT is still in very early development stages and is basically just a client-server framework with basic GUI at this stage. There are virtually no useful features yet, so unless you plan to fork and develop your own extensions, it's better to wait for development and use a more complete RAT for your needs such as Quasar or a paid alternative

from pace.

PCAssistSoftware avatar PCAssistSoftware commented on July 23, 2024

Using VS2019 running on Windows 10 64-bit

Client running on Windows 7 virtual PC running in VirtualBox

No changes made, and yes all dependencies fetched as it builds fine

Noted, was just testing several RAT's and liked your GUI

from pace.

PCAssistSoftware avatar PCAssistSoftware commented on July 23, 2024

tried it again several times with same issue. here is full text of error message:-

[DEBUG]: Waiting for Server...
[DEBUG]: Connected!
[DEBUG]: Packet received.

Unhandled Exception: System.NullReferenceException: Object reference not set to
an instance of an object.
at Pace.Client.System.SystemInformation.GetProductName() in C:\Users\darre\Do
wnloads\remote\RATs\pace-master\pace-master\Pace.Client\System\SystemInformation
.cs:line 30
at Pace.Client.System.SystemInformation.Get() in C:\Users\darre\Downloads\rem
ote\RATs\pace-master\pace-master\Pace.Client\System\SystemInformation.cs:line 17

at Pace.Client.Handlers.SystemHandlers.HandleGetSystemInfo(PaceClient client,
IPacket packet) in C:\Users\darre\Downloads\remote\RATs\pace-master\pace-master
\Pace.Client\Handlers\SystemHandlers.cs:line 16
at Pace.Client.Network.PacketChannel.HandlePacket(PaceClient client, IPacket
packet) in C:\Users\darre\Downloads\remote\RATs\pace-master\pace-master\Pace.Cli
ent\Network\PacketChannel.cs:line 23
at Pace.Client.Program.Run() in C:\Users\darre\Downloads\remote\RATs\pace-mas
ter\pace-master\Pace.Client\Program.cs:line 45
at Pace.Client.Program.Main(String[] args) in C:\Users\darre\Downloads\remote
\RATs\pace-master\pace-master\Pace.Client\Program.cs:line 18

from pace.

PCAssistSoftware avatar PCAssistSoftware commented on July 23, 2024

P.S. when you do "take screenshot" - where does it put it? as can't find where it is saving them or what it does with them. This is one feature I am interested in as most of the others like Quasar don't seem to do screenshots

from pace.

fragtion avatar fragtion commented on July 23, 2024

Hey nice work finding the bug for x86
I'm guessing the screenshot function isn't fully implemented yet.. also couldn't find the output myself xD
PS It's not my project I'm just subscribed to watch list updates etc ;)
I agree the interface is simplistic, modern, and clean. This project has great potential, hopefully we'll see it grow and evolve into something great :)

from pace.

Related Issues (14)

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.