Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,193,393 members, 7,950,839 topics. Date: Tuesday, 17 September 2024 at 12:21 AM

A Programmer Needed For A Project - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / A Programmer Needed For A Project (416 Views)

I Need A Programmer To Work On A Project With Me. / A Very Good Python Programmer Needed Asap / A Programmer Needed!!! (2) (3) (4)

(1) (Reply) (Go Down)

A Programmer Needed For A Project by ogasmallie: 8:03pm On Jun 18
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
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: 8:55pm On Jun 18
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
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
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.

1 Like

Re: A Programmer Needed For A Project by ogasmallie: 7:27am On Jun 19
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
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
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
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
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
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
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: 8:07am On Jun 21
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)

Students Vs Professionals Amid COVID-19: Survive (or) Thrive In The AI Career / Best Ways To Increase Sales On Ebay / Are There Any React Developers Here? I Need Help

(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. 31
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.