I am currently writing a hacking software in Python (tkinter) that hacks scripts and looks for wireless devices… But it’s fake!! It only pretends to do stuff and has nice graphics but it’s like those websites that pretend you’re hacking. Would that be nice?? And it’s open source too, so it will not harm anyone.
Yes, that is a good beginner project if you’re learning Python.
It has a lot of flexibility in scale, scope and presentation and bugs don’t matter much. This makes it easier to make progress as you can just drop or change parts that are too big, complex or hard right now. Or add stuff at random if it looks like a good idea at the time. It also has a tangible visual output, which is motivating.
Don’t worry about it being confused for any real hacking tool. Legit hackers can tell at a glance - even if you were to try your best to pretend it’s real :) Labeling it “toy” or “fake” will make it clear for anyone else.
Go for it! Have fun!
Why make it fake? Why not spend time making a port scanner or something that looks for wireless networks and checks for weak credentials instead? Sounds like a better beginner project to me.
I don’t want to harm anyone… >~< I don’t like hacking!!! But my fake project is fun and cute!!
You can test your tool within your own network.
deleted by creator
Doing a “hack simulator” would likely be easier in other languages, so you will hopefully run into some problems regarding acquiring and presenting the information, which I imagine would give you a decent understanding of the flow of data in python.
I’d say “Go for it”, doesn’t sound too advanced and not “hello world”-simple either.
Just make sure you make it clear it’s a simulator. While I love to see script kiddie consternation when their ransomware target turns out to be fake, you probably don’t want the real bad guys to use it thinking it’s legitimate. And you don’t want security companies putting you on a bad list because of joke software someone else abused to give a sysadmin a heart attack, either.
It sounds like a fun bit of kit to use as a prank as long as there is an easy escape sequence line the windows fake BSOD.
If you want to see something fun check out the hollywood package in the Apt repository.
Have you heard of Bitburner?
To make it more educational make it interact with the system and the user . For example I would have the program to show a list of real files from the os and prompt the hacker to delete it or not.
thank you!! Yea!! I recently added that feature, there’s a button called “open files…” which when clicked prompts to the file selection screen of your OS. So I know that works now!!