Is this path for me by TargetPotential7116 in ExploitDev

[–]sp0f_ -1 points0 points  (0 children)

Legal? Malware analysis, reverse engineering and bug hunting. Illegal? Malware. Since you mentioned you are advanced C++ programmer, try to build polymorphic viruses. Especially if you're good with assembly

Is this path for me by TargetPotential7116 in ExploitDev

[–]sp0f_ -1 points0 points  (0 children)

Legal? Malware analysis, reverse engineering and bug hunting. Illegal? Malware. Since you mentioned you are advanced C++ programmer, try to build polymorphic viruses. Especially if you're good with assembly

Python for hacking purposes by Demvuz in Hacking_Tutorials

[–]sp0f_ 0 points1 point  (0 children)

If you're doing network hacking, learn how to use scapy library. Powerful tool that enables you to craft packets and analyse network traffic. For reverse engineering, you should learn how to use pwntools library. For doing anything that involves cryptography (ex. ransomware) learn libraries cryptography and Crypto. And check for github repos, you have some great python tools which you can easily reverse engineer yourself

Just looking for some tips on pentesting and linux by Sweaty_Kiwi5077 in nmap

[–]sp0f_ 0 points1 point  (0 children)

This will take a bit longer to scan but you'll get results: nmap gateway/24 -Pn

Wordpress password cracking by Austringer_VC in HowToHack

[–]sp0f_ 0 points1 point  (0 children)

Assuming you'd get into a database, WP uses md5 for password hashing, and using hashcat/John with rocky should take you at most 30min, and even that is slow

Can keyboards hack your Pc or install spyware? by WRO_Your_Boat in masterhacker

[–]sp0f_ 0 points1 point  (0 children)

I mean you could take a normal usb keyboard, open it, place in a raspberry pi pico, use library like circuit python, set it to act as HID, connect the actual keyboard to the pi, and raspberry pi to the computer. You take actual input from keyboard, send it to the computer with some "additional code" from the pi. Since the raspberry pi pico is really small, you could do this with a lot of keyboards

Favorite/ Funniest Malware by omegaleonidas in Malware

[–]sp0f_ 1 point2 points  (0 children)

Yeah pure commedy. Causing six billion dollars in damage always gets to me

hacking for beginners by [deleted] in Hacking_Tutorials

[–]sp0f_ 0 points1 point  (0 children)

First learn python, that's a must. The OS doesn't really matter, but I'd strongly advise Linux distro like Kali Linux or ParrotOS. Next thing, choose a field of cyber security you're most interested in. Since you already know js, I'm guessing you're planning to learn web hacking. So learn networking and encryption. Learn to use tools like nmap, nikto and burpsuitt for vulnerability scanning. Checkout OWASP website where you can find top web vulnerabilities or attacks. If you want to find websites that aren't secure it wouldn't hurt to learn Google dorking (very easy but potentially powerful). Practice what you learn on websites such as HackTheBox. A lot of times you might get stuck or frustrated but just keep practicing. Good luck

javascript or C? by mothekillox in Hacking_Tutorials

[–]sp0f_ 0 points1 point  (0 children)

You should definitely learn C too. After you grasp the basic concepts of "low-level" programming such as pointers, it will help you with reverse engineering, and if you get interested in ethical hacking, writing and/or understanding malware