Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,148,874 members, 7,802,809 topics. Date: Friday, 19 April 2024 at 10:13 PM

I Want To Create A Malware (spyware) - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / I Want To Create A Malware (spyware) (2286 Views)

How To Easily Scan For And Remove Spyware / Malware Has Taken Over My System!!! / Remote Spyware For Windows Desktop N Android Mobile Platform (2) (3) (4)

(1) (Reply) (Go Down)

I Want To Create A Malware (spyware) by OnlyTheBrave: 8:43pm On Mar 26, 2017
Hi, I am a computer programmer, primarily C++, I have interest in malware and I want to create one, especially spyware i.e to spy on the host computer and then my program should ping back some info

I NEED ADVICE ANYONE!!!
Re: I Want To Create A Malware (spyware) by excanny: 9:29pm On Mar 26, 2017
Most police stations have a very good in-house programmer that help with stuffs like this.

Maybe you go and ask for the guys they have there. They usually bad ass at creating stuffs like this. Real geniuses.
Re: I Want To Create A Malware (spyware) by pseudonomer: 6:51am On Mar 27, 2017
OnlyTheBrave:
Hi, I am a computer programmer, primarily C++, I have interest in malware and I want to create one, especially spyware i.e to spy on the host computer and then my program should ping back some info

I NEED ADVICE ANYONE!!!

Install Kali Linux OS... If you can learn Python. You are good to go.
Re: I Want To Create A Malware (spyware) by OnlyTheBrave: 7:30am On Mar 27, 2017
pseudonomer:


Install Kali Linux OS... If you can learn Python. You are good to go.

C++ SHOULD BE ABLE TO HANDLE THIS. !
Re: I Want To Create A Malware (spyware) by Nobody: 8:09am On Mar 27, 2017
VBScript can easily do this for windows.
Re: I Want To Create A Malware (spyware) by vicsrael: 2:49am On Mar 28, 2017
excanny:
Most police stations have a very good in-house programmer that help with stuffs like this.

Maybe you go and ask for the guys they have there. They usually bad ass at creating stuffs like this. Real geniuses.
this guy want to put u in real trouble lol
Re: I Want To Create A Malware (spyware) by Nobody: 5:15am On Mar 28, 2017
excanny:
Most police stations have a very good in-house programmer that help with stuffs like this.

Maybe you go and ask for the guys they have there. They usually bad ass at creating stuffs like this. Real geniuses.
From experience, i believe you are correct - EFCC too have better in-house programmers for this kind of stuff too.
Re: I Want To Create A Malware (spyware) by hotwax: 12:03pm On Mar 28, 2017
I can help u target any windows version.

I write system apps.
Re: I Want To Create A Malware (spyware) by Nobody: 12:11pm On Mar 28, 2017
Fastest way to write malware for windows is VBScript, you can even package it on a flash drive fairly easily. It does not even need to be compiled (obfuscated maybe), i have experimented this before, I have written windows apps for like 10yrs plus, and I can easily write a malware with vbscript that can target windows 98 - windows 10 if it comes to that.

See here - https://helloacm.com/vbscript-malware-demo-using-filesystemobject/

Disclaimer: I am just joking, as I cannot even write malware or even any app other than a Hello World. I repeat, I was just joking - dont mind my running mouth above there o (i was only e-trolling).
Re: I Want To Create A Malware (spyware) by Olyboy16(m): 12:53pm On Mar 28, 2017
creating a spyware isnt very difficult. you only need to understand basic resource injection techniques. depending on the target factors i.e target uses macro programmable apps? is he techy enough to know he is being spied on? or can he even screen his firewall?

considering all these factors will tell you the kind of injection u'll use for your malware. sometimes you may not need to inject at all, all u need may just be to screen the list of installed apps and find known apps that are vulnerable to piggy back hooks, then hook your spyware through code injection. there are other much simpler means to deploying a spyware (trojans, or just fake exe naming), bt injection is the only chance ur spyware has at not being detected.

kinds of injections you can use?
- dll injection, macro programming, process hijacking.

points to note: let your fortress address be bare ip(url where feedback goes), never let your spyware cause an interaction by accident(fatal errors, exceptions, admin priviledges). hope these help
Re: I Want To Create A Malware (spyware) by Olyboy16(m): 1:07pm On Mar 28, 2017
pseudonomer:


Install Kali Linux OS... If you can learn Python. You are good to go.
spyware created in python will probably only be in stealth on a linux os, on windows, an up to date antivirus program will expose your python spyware, even if you freeze the python interpreter into native libraries
Re: I Want To Create A Malware (spyware) by pseudonomer: 1:46pm On Mar 28, 2017
Olyboy16:

spyware created in python will probably only be in stealth on a linux os, on windows, an up to date antivirus program will expose your python spyware, even if you freeze the python interpreter into native libraries

After writing d script in python, running the script on windows where python is not installed only required pyinstall to convert to exe. I will embed in a pdf for easy spread, and I can make sure it bypass most antivirus...

Metasploit framework on Kali.

Python is a must choice for anything related to Hacking, and you need Linux too.

Well maybe because I'm not a fan of C++...
Re: I Want To Create A Malware (spyware) by Nobody: 3:07pm On Mar 28, 2017
^^^if you understand what hacking is about, you should understand that it is not limited to any language. I can hack your PC with an ordinary .bat file, or even a plain JAVAScript .js file.
I agree with all you have said, but you spoilt it when you said PYTHON IS A MUST! No language is a must when it comes to hacking. It all depends on your exposure, target and precisely what you are trying to do. Python is a good language for hacking no doubt, but it stops there.
Re: I Want To Create A Malware (spyware) by Olyboy16(m): 5:59pm On Mar 28, 2017
pseudonomer:


After writing d script in python, running the script on windows where python is not installed only required pyinstall to convert to exe. I will embed in a pdf for easy spread, and I can make sure it bypass most antivirus...

Metasploit framework on Kali.

Python is a must choice for anything related to Hacking, and you need Linux too.

Well maybe because I'm not a fan of C++...
sir, all py to exe converters do the same thing - freeze python to native libraries.
you see what these tools do is they convert all required python libraries to .pyc modules then freeze the python executable into .dll libraries; these tools then write appropriate opcodes for execution into an exe file, they then write opcode that link required bundled(zipped mostly) .pyc files to the necesary functions in the frozen python .dll s. these process required deep knowledge of d win32 api and a bit of assembly.
now the problem is...
Re: I Want To Create A Malware (spyware) by Olyboy16(m): 6:13pm On Mar 28, 2017
1. the size of ur spyware exe will be too impractical, unless u deploy a trojan.
2. the moment u start ur exe d antivirus knows, nd once u try to inject anything into the pdf, most antivirus are smart enuf to knw u may wana inject, it den simply scans ur exe, it locates your malware strings nd alerts the OS. d only way u'll ever survive is pose as a trojan, so d user wil trust and approve all your actions nd even shutdown d antivirus program 4 u.

PS: spying needs more sophistication dan general hacking, anyone can destroy your PC with a simple python script but in the world of surveillance and stealth, you can only be an expert
Re: I Want To Create A Malware (spyware) by Nobody: 7:17pm On Mar 28, 2017
hehehehehehe, one of the posters above me is a virus while the other is an antivirus!

1 Like

(1) (Reply)

Come And Learn Programming In The Right Way / Lagos Github Meetup / Difference Between Arguments And Parameters In PHP

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 28
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.