₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,329,074 members, 8,438,695 topics. Date: Friday, 03 July 2026 at 07:23 PM

Toggle theme

A Programmer Needed For A Project - Programming - Nairaland

Nairaland ForumScience/TechnologyProgrammingA Programmer Needed For A Project (607 Views)

1 Reply (Go Down)

A Programmer Needed For A Project by ogasmallie(op): 8:03pm On Jun 18, 2024
I need a programmer who can build and design a project on malware detection and resolution using machine learning. Behavioral analysis would be used to detect the malware
Re: A Programmer Needed For A Project by Ynix(m): 8:17pm On Jun 18, 2024
ogasmallie:
I need a programmer who can build and design a project on malware detection and resolution using machine learning. Behavioral analysis would be used to detect the malware
I hope you have a deep budget for this sha
Re: A Programmer Needed For A Project by ogasmallie(op): 8:55pm On Jun 18, 2024
Ynix:
I hope you have a deep budget for this sha
lyk how much do u think it’s going to cost me
Re: A Programmer Needed For A Project by Ynix(m): 1:49am On Jun 19, 2024
ogasmallie:
lyk how much do u think it’s going to cost me
if it's a small project, I am not talking about softwares and hosting plans, for hiring a professional alone you should be looking at a total of $20,000. Na Cyber Security be your project so you know that security matters are always expensive
Re: A Programmer Needed For A Project by Blaze9: 6:23am On Jun 19, 2024
I doubt if his budget is upto $1,000 Lolz...... You know some people have wild imaginations. But often they can't afford these projects. I started of as a programmer. Spent 3 years in the field. I had to enrol in cyber security courses separately after about $2,500 was stolen from a site I built. I was the number one suspect. I didn't know shit about botnet. I'm now two years into the field of cyber security as a whitehat hacker.

Acquiring the discipline is not cheap or easy. You will learn about Brute Force, Different malware detection tools, code obfuscation, how to make a malware bypass any anti-virus.
Bot crawlers. A lot of automation tools, antibots, etc.

Cyber security expands everyday. Newbies use the tools. Experts create them. And new crack tools are developed every day. In every two weeks I learn a new cyber security course. To keep up with the changes, you remain a student continually.

A simple crypto wallet drainer is built for $3,500 dollars. Most wannabes on nairaland come here looking to pay programmers #20k for a website project. The ones who can afford #200k actually behave like they are about to give you the entire world for a single project.

Lolz.

The highly skilled are not cheap.
Re: A Programmer Needed For A Project by ogasmallie(op): 7:27am On Jun 19, 2024
Blaze9:
I doubt if his budget is upto $1,000 Lolz...... You know some people have wild imaginations. But often they can't afford these projects. I started of as a programmer. Spent 3 years in the field. I had to enrol in cyber security courses separately after about $2,500 was stolen from a site I built. I was the number one suspect. I didn't know shit about botnet. I'm now two years into the field of cyber security as a whitehat hacker.

Acquiring the discipline is not cheap or easy. You will learn about Brute Force, Different malware detection tools, code obfuscation, how to make a malware bypass any anti-virus.
Bot crawlers. A lot of automation tools, antibots, etc.

Cyber security expands everyday. Newbies use the tools. Experts create them. And new crack tools are developed every day. In every two weeks I learn a new cyber security course. To keep up with the changes, you remain a student continually.

A simple crypto wallet drainer is built for $3,500 dollars. Most wannabes on nairaland come here looking to pay programmers #20k for a website project. The ones who can afford #200k actually behave like they are about to give you the entire world for a single project.

Lolz.

The highly skilled are not cheap.
I don’t need a complex system requiring much sophistication , it’s just for a final year project. How much would I be looking to spend on it sir.
Re: A Programmer Needed For A Project by larryking78(m): 8:07am On Jun 19, 2024
Blaze9:
I doubt if his budget is upto $1,000 Lolz...... You know some people have wild imaginations. But often they can't afford these projects. I started of as a programmer. Spent 3 years in the field. I had to enrol in cyber security courses separately after about $2,500 was stolen from a site I built. I was the number one suspect. I didn't know shit about botnet. I'm now two years into the field of cyber security as a whitehat hacker.

Acquiring the discipline is not cheap or easy. You will learn about Brute Force, Different malware detection tools, code obfuscation, how to make a malware bypass any anti-virus.
Bot crawlers. A lot of automation tools, antibots, etc.

Cyber security expands everyday. Newbies use the tools. Experts create them. And new crack tools are developed every day. In every two weeks I learn a new cyber security course. To keep up with the changes, you remain a student continually.

A simple crypto wallet drainer is built for $3,500 dollars. Most wannabes on nairaland come here looking to pay programmers #20k for a website project. The ones who can afford #200k actually behave like they are about to give you the entire world for a single project.

Lolz.

The highly skilled are not cheap.
Chief, am into.cynersecuroty too but not as deep as you ... Can you semd me.a WhatsApp message 07030702602
Re: A Programmer Needed For A Project by larryking78(m): 8:09am On Jun 19, 2024
ogasmallie:
I need a programmer who can build and design a project on malware detection and resolution using machine learning. Behavioral analysis would be used to detect the malware
Chat me on WhatsApp let me have your details on the Project
Re: A Programmer Needed For A Project by Shedrick: 11:26am On Jun 19, 2024
larryking78:
Chief, am into.cynersecuroty too but not as deep as you ... Can you semd me.a WhatsApp message 07030702602
If you're interested in the Blackhat chat 0902340775 Make sure you have a very highly configured system.
Re: A Programmer Needed For A Project by Alphabyte3: 3:34pm On Jun 19, 2024
There are several ways to detect malware in a CSV file using Python. One common approach is to analyze the content of the CSV file for any suspicious patterns, such as executable file extensions, obfuscated code, or known malicious keywords. Here is a simple example of how you can detect malware in a CSV file:

1. Read the CSV file using the `csv` module in Python:

```python
import csv

def read_csv_file(file_path):
with open(file_path, 'r') as file:
reader = csv.reader(file)
for row in reader:
# Check each row for suspicious patterns
analyze_row(row)
```

2. Analyze each row of the CSV file for potential malware indicators. Here are some examples of checks you can perform:

```python
import re

def analyze_row(row):
for cell in row:
# Check for executable file extensions
if re.match(r'.*\.exe$', cell):
print(f'Malicious executable file detected: {cell}')

# Check for suspicious keywords
if 'malware' in cell.lower():
print(f'Suspicious keyword found: {cell}')

# Add more checks as needed
```

3. Run the script and pass the path to the CSV file you want to analyze:

```python
if __name__ == '__main__':
csv_file_path = 'path/to/your/csv/file.csv'
read_csv_file(csv_file_path)
```

Keep in mind that this is a very basic example and may not catch all malware in a CSV file. For more advanced malware detection, you may want to use a dedicated antivirus or malware detection library in Python, such as `pyClamAV` or `Sophos`.

Additionally, it is important to exercise caution when analyzing potentially malicious files, as they can harm your system if executed. Make sure to run any malware detection scripts in a secure, isolated environment.


How to remove malware


import os
import subprocess

def run_powershell_command(command):
result = subprocess.run(["powershell", "-Command", command], capture_output=True, text=True)
return result.stdout

# Disable Admin Shares
command = 'REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" /V "AutoShareWks" /T "REG_DWORD" /D "0" /F'
output = run_powershell_command(command)
print(output)

# Restart Lanmanserver service
command = 'restart-service Lanmanserver -Force'
output = run_powershell_command(command)
print(output)
Re: A Programmer Needed For A Project by Alphabyte3: 3:38pm On Jun 19, 2024
After look at kaggle repos and AI I was able to generate these .
Re: A Programmer Needed For A Project by BRIGHTRIVERS(m): 8:18am On Jun 20, 2024
Blaze9:
I doubt if his budget is upto $1,000 Lolz...... You know some people have wild imaginations. But often they can't afford these projects. I started of as a programmer. Spent 3 years in the field. I had to enrol in cyber security courses separately after about $2,500 was stolen from a site I built. I was the number one suspect. I didn't know shit about botnet. I'm now two years into the field of cyber security as a whitehat hacker.

Acquiring the discipline is not cheap or easy. You will learn about Brute Force, Different malware detection tools, code obfuscation, how to make a malware bypass any anti-virus.
Bot crawlers. A lot of automation tools, antibots, etc.

Cyber security expands everyday. Newbies use the tools. Experts create them. And new crack tools are developed every day. In every two weeks I learn a new cyber security course. To keep up with the changes, you remain a student continually.

A simple crypto wallet drainer is built for $3,500 dollars. Most wannabes on nairaland come here looking to pay programmers #20k for a website project. The ones who can afford #200k actually behave like they are about to give you the entire world for a single project.

Lolz.

The highly skilled are not cheap.
Lol I can relate! The highest a Nigerian has paid me is 200k. Clients from outside the cuntry pay way better because they understand the technicalities behind our job.

A look at the Op's project for instance. Its a very complicated task but I wouldnt be surprised at the pricing.
Re: A Programmer Needed For A Project by simplesol:
ogasmallie:
I need a programmer who can build and design a project on malware detection and resolution using machine learning. Behavioral analysis would be used to detect the malware
Lets disccuss for a fix
1 Reply

Good Programmer Needed Urgently For Huge Project!!Programmer Needed For Full Time Work Must Be Using A Mac Or Linux For The JobA Programmer Needed Urgently234

Web Development Training. Starting On Monday.Get Google Ads $150 CreditHelp A Newbie In Java