bacontsu / multibox

Growtopia Multiboxing program fully written in C#. Clear Compiled app without rats and stealer, the low level hooks system somehow flagged this app as a virus i dont know exactly why.
GNU General Public License v3.0
8 stars 1 forks source link

FAKE?? WHAT FAKE? HOW TF AM I GONNA FAKE THAT ANYWAY? #5

Closed Wiselyx closed 3 years ago

Wiselyx commented 3 years ago

https://www.virustotal.com/gui/url/c8faae3d8246125a7259f3d4b0f534511cf61ad4674458004b4869ac7f6dddf8/detection this virustotal link you sent is a fucking scam. ofc its gonna say "clean" cuz what u put is the fucking URL. get that? U.R.L!! and mine isnt, i downloaded the file on a virtual box and sent it in virustotal, and whaddya know, a million antivirus picked it up. so release the god damn source if you wanna prove that this isnt some virus shit.

Wiselyx commented 3 years ago

url xDDDD image

bacontsu commented 3 years ago

aight first of all let me get it straight, im sorry for the rude replies i made before, i have a really bad day today my pc wont stop from a bsod loop. and i shouldnt make false accusation, etc.

it turns out that the hooks are doing something sketchy. I dont actually know how it works since im using someone's hook, and every hook would do that (kinda), for example the hooks that were used on osiris. i CAN release the source code until i got my pc fixed, search it as you like. i've been trying to fix this trojan thing for a long time ago. actually i will be very helped if you or anybody could find any sketchy thing inside my program and help me remove/fix it. also looks up blacklock's source code github.com/blacklock/gtautofarmer so you can check anything to compare it to mine

bacontsu commented 3 years ago

https://www.virustotal.com/gui/url/c8faae3d8246125a7259f3d4b0f534511cf61ad4674458004b4869ac7f6dddf8/detection this virustotal link you sent is a fucking scam. ofc its gonna say "clean" cuz what u put is the fucking URL. get that? U.R.L!! and mine isnt, i downloaded the file on a virtual box and sent it in virustotal, and whaddya know, a million antivirus picked it up. so release the god damn source if you wanna prove that this isnt some virus shit.

also its not a scam. its a direct link to my file, virustotal bot would instantly download it an checks the file. i dont even know why it doesnt detects it using direct url download. not me making up stuff.

Wiselyx commented 3 years ago

uh no virustotal doesnt do that. sometimes websites can have viruses, i dunno why but it happens. thats why virustotal lets u put a url but github is clean, it is a trusted website, even if you put the direct download link url. its just gonna check that url and not download the file. you have to download the file and upload it urself to see if it a virus or nah.

bacontsu commented 3 years ago

uh no virustotal doesnt do that. sometimes websites can have viruses, i dunno why but it happens. thats why virustotal lets u put a url but github is clean, it is a trusted website, even if you put the direct download link url. its just gonna check that url and not download the file. you have to download the file and upload it urself to see if it a virus or nah.

oh nevermind. im pretty sorry about that, i might very misunderstood the use of virustotal url. also just got my pc working so i might upload it pretty soon. thanks for the help

bacontsu commented 3 years ago

kinda fixed my pc atm, the source code has been uploaded. please take a look at it

imtrynalearn commented 3 years ago

delete obj folder and bin folder and viruses are gone

imtrynalearn commented 3 years ago

nvm i compiled and the .exe contains viruses lol

bacontsu commented 3 years ago

nvm i compiled and the .exe contains viruses lol

its a hooking methods lmao of course it will get false trigger. its literally OPEN SOURCE you can see things inside

bacontsu commented 3 years ago

nvm i compiled and the .exe contains viruses lol

further more research into the code i find out that the only thing that makes this as a virus is the File.Exist() function lmao its actually a code to search for growtopia

                if (File.Exists(value)) {
                    _growtopiaPath = value;
                    fileSelectDialog.InitialDirectory = _growtopiaPath;
                    fileNameDisplayer.Text = _growtopiaPath;
                } else {
                    MessageBox.Show("Incorrect file specified", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);

might try to change it using try catch later idk

EDIT : replaced the File.Exists() function to _growtopiaPath.Contains("Growtopia.exe") but for some reason it still false flagged, i even removed the whole keyboard/mouse hook

                                  if (_growtopiaPath.Contains("Growtopia.exe")) {
                    _growtopiaPath = value;
                    fileSelectDialog.InitialDirectory = _growtopiaPath;
                    fileNameDisplayer.Text = _growtopiaPath;
                } else {
                    MessageBox.Show("Incorrect file specified", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }

EDIT 2 : yes its the hooking methods i guess