C69F - My new project

L00PeR
7 years ago | edited 7 years ago

1

Hi :D !!

After a couple of months writing this program, I think is ready for releasing, and I would like it to share it with you :)
The program is a kind of command-line which you can use for creating a payload to infect and control someone else computer, or even controlling 2 or more people at the same time (Botnet).
This program only works on local networks so the victim must be connected to your Wi-Fi.
I hope you like it :)


Other important things:
I’m not responsible of the use of this program for illegal purposes.

Check the program on my github —> https://github.com/xVL00PeR/c69f

You can contact me on: anon.looper@gmail.com

Actually accepting colaborations, Here is a list of things in which I would like to improve c69f:
[list=1]
[] Making c69f working outside local networks
[
] Creating a way for encrypting data which is send and received from the payload
[] Writing some piece of code which lets the process migrate to another.
[
] Thinking of a way in which Windows users could be infected easly
[*] Creating a W0RM
[/list]

Happy Hacking :)

13replies
10voices
256views
theMunchBox
7 years ago

0

Move over, metasploit.

Reply has been removed
f0rk [HackingGuy]
7 years ago

0

Very nice for just building a tool by yourself :)

I’ll be looking over it for improvements and fixes ;)

Mugi [Mugiwara27]
7 years ago

0

Metasploit > everything

L00PeR
7 years ago

0

@Mugiwara27

Metasploit > No Botnet handler

C69F > Botnet handler

:)

Smyler [WHGhost]
7 years ago | edited 7 years ago

0

Just had a quick look at your code, and there is a things than can be improved:

When working with files and sockets, you should close them:
def create_payload(filename, code):generates the payload. f = open(filename, 'w') f.write(code) f.close()

You don’t need to add a
else: pass
after each if statement.

You should have all your main code inside a main function instead of directly on the script, this would allow to execute it only when it’s called as a standalone application, and not when your script is imported as a module. Here is an example:
```#!/usr/bin/env python

def main():
print(“Called as a standalone app.”)

print(“Called if imported or executed”)

if name == “main”:
main() ```

You also have hard-coded IP addresses, which may not help to work outside your LAN, and I can’t see why it would work otherwise (or maybe you didn’t setup port-forwarding).

You could definitely have a cleaner code by following some programming methodologies (Python is good at Object Oriented Programming for example). Remember that you can always import this if you need some advises.

For your Windows implementation, have a look at py2exe: http://www.py2exe.org/.

It’s great to do your own tools, it helps to learn and understand how other tools work, but let’s face it, @Mugiwara27 is right, Metasploit > everything.
And yes it can be used on different targets at the same time, if that’s what you call a botnet.

dloser
7 years ago

2

Knowing what you’re doing >> Metasploit.

latency
7 years ago

0

dloser

             Knowing what you're doing >> everything  

:D

f0rk [HackingGuy]
7 years ago

0

Knowing what @dloser is doing > > > Knowing what you’re doing

tehron
7 years ago

0

@WHGhost did you know about the with statement? It makes sure that close is called when leaving the with block, even when an exception is raised inside the with:
with open("filename") as fp: fp.write("Hello World!")

Oh, and yeah, praise the d!

Smyler [WHGhost]
7 years ago

0

Yes I know, but with the way his code is structures, adding statements would only make the code messy. Nice from you to mention it :)

tehron
7 years ago

0

Oh ok. Haven’t looked at the original code. I’m afraid of @L00PeR ’s avatar.

L00PeR
7 years ago

0

JAJJAJAJA

Don’t worry I just like that TV series
:)

M3CH4N1X [MechaniX]
6 years ago

0

really impressed with your application.

You must be logged in to reply to this discussion. Login
1 of 14

This site only uses cookies that are essential for the functionality of this website. Cookies are not used for tracking or marketing purposes.

By using our site, you acknowledge that you have read and understand our Privacy Policy, and Terms of Service.

Dismiss