Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Trap_lord

Pages: [1] 2
1
News and Announcements / Re: New Global Mod and Some News
« on: February 29, 2016, 02:54:07 pm »
Wait so were some of the boards removed or is it that I can't see them because I am null?

2
Scripting Languages / Re: Python TCP client/server
« on: February 23, 2016, 08:03:06 pm »
Ya it is from black hat python but for some reason it didn't work for me the first time I tried so maybe I did something different this time? Thought I would post it for those who don't have the book and want to do a networking related python project.

3
Scripting Languages / Python TCP client/server
« on: February 23, 2016, 06:05:03 pm »
Finally got this project working. TCP client/sever, client is set to send and recieve packets from client and server listens for incoming traffic and sends packets back.

client:
Code: [Select]
import socket

target_host = "www.google.com"
target_port = 80

# create a socket object
client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

# connect the client
client.connect((target_host, target_port))

# send data
client.send("GET / HTTP/1.1\r\nHost: google.com\r\n\r\n")

# receive data
response = client.recv(4096)

print response

server:
Code: [Select]
import socket
import threading

bind_ip = "0.0.0.0"
bind_port = 9999

server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

server.bind((bind_ip, bind_port))

server.listen(5)

print "[*] Listening on %s:%d" % (bind_ip, bind_port)

# thread for handling clients
def handle_client(client_socket):

    #print out what client sends
    request = client_client.recv(1024)

    print "[*] Received: %s" % request

    # send a packet to client
    client_socket.send("ACK!")

    client_socket.close()

while True:

    client,addr = server.accept()

    print "[*] Accepted connection from: %s:%d" % (addr[0],addr[1])

    # spin client thread to handle incoming traffic
    client_handler = threading.Thread(target=handle_client,args=(client,))
    client_handler.start()

4
Hacking and Security / Re: 24 Hour Hack - 99 000'th post
« on: February 23, 2016, 03:47:09 pm »
Alright, can you post when you finish the setup? And what about teams, will we just have individuals make their own teams or work alone? Will teams be organized?

It would be a lot easier to let participates make their own teams but then beginners would not get the experience and exposure to the skills involved in this contest. Let me know.

5
Hacking and Security / Re: 24 Hour Hack - 99 000'th post
« on: February 22, 2016, 08:23:14 pm »
So is this still happening?
If someone needs to organize this I can.

You can private message me if you want to host a vulnerable network or if you want to participate.

For participation send your handle and your skill level (beginner, intermediate or advanced). This is to better organize the teams based on skill.

For hosting send your handle, hardware specs and skill level for the server / machine.

I will post the teams and servers once they are all set up and teams are made.

6
Tutorials / Re: Taku's XSS handbook
« on: February 19, 2016, 05:52:19 pm »
This isn't bad at all content wise. Nice way for people wanting to learn xss to wet their beak a bit. Don't know why you got heat for the post?

I found this xss tutorial series on youtube. Its pretty good for covering the basics if you guys are interested.

https://www.youtube.com/watch?=M_nIIcKTxGk&index=1&list=PL1A2CSdiySGIRec2pvDMkYNi3iRO89Zot

Staff Note: No double posting

7
Anonymity and Privacy / Re: short anonymity/privacy guide
« on: February 19, 2016, 05:41:57 pm »
Ya i know windows is completely fucked and that's why I plan on switching to linux as my main OS. I was thinking maybe kali but it isn't very practical for day to day use. Plus most applications I use are designed for windows.

8
Reverse Engineering / Re: Malware analysis start
« on: February 19, 2016, 03:24:12 pm »
I posted this so that everyone could access it. I can't see the e-books and many others have the same problem. Considering this is a starting point for malware analysis I think that everyone should be able to view and download this resource.

I understand the frustration of reposting but now everyone can have this book, even people who are new to the forum.

9
Reverse Engineering / Malware analysis start
« on: February 18, 2016, 08:40:48 pm »
For those of you new to malware analysis this is one of the best resources that exist. Covers basics to advanced topics and is good for really getting a detailed look into malware analysis. Uploaded it here:

http://upload.evilzone.org?page=download&file=Miy4LriEduuxugfErAcVSMpaZT8qIi8ki9NtPVtLbx7t8Rpabs

10
Hacking and Security / Re: Get Mac Adress of any IOS Device
« on: February 18, 2016, 08:22:15 pm »
If you are connected to the same wifi there are port/device scanners that can show all devices connected and open ports on the network.

11
Hacking and Security / Re: 24 Hour Hack - 99 000'th post
« on: February 18, 2016, 03:46:30 pm »
If this really picks up we should start crowd funding to have nice hardware so we can support a full network. Also do you guys wants this to be only for evilzone users or open for more forums and such?

If you guys want to inlude other forums we can have full teams in no time.

12
Anonymity and Privacy / Re: short anonymity/privacy guide
« on: February 18, 2016, 03:42:43 pm »
Pretty good guide, I use windows 10 but I have the tor browser and several vms. I also fully encrypted my hard disk (fuck you NSA) and am setting up a proxy.

Nice tutorial tho,
Cheers :)

13
Hacking and Security / Re: 24 Hour Hack - 99 000'th post
« on: February 17, 2016, 09:02:36 pm »
That sounds like an awesome idea, I would definitely participate.

With the VMs (depending on how much space and power your hardware has) you should make a network-like system. You can find router Vms for free online and use them to make interesting configurations with multiple operating systems and virtual servers. I'm sure there are tutorials online that can make the set up much easier and this would provide a more realistic situation for teams (especially beginners).

If this works and enough people join this should definitely be a yearly event.
Can't wait.

14
Reverse Engineering / Re: [Beginner Challenge] Screen Locker
« on: February 07, 2016, 04:44:39 am »
When infected with this malware, do the following:

1. Close virtual machine

2. Start vm again

3. If that doesn't work reload using a snapshot or start from scratch

Is there an actual way to unlock the screen.
If so can you post solutions/answers, I'm new to malware analysis and reverse-engineering.

15
Hardware / Re: Arduino Project
« on: February 03, 2016, 08:50:11 pm »
I think you should ditch the robotics and use kali linux's setoolkit to make an autorun arduino with metasploit. Even if the computer has autorun disabled it will still run by tricking the computer into thinking the arduino is keyboard/mouse.

I think you should look into it.

░░░░░░░░▌░░░░░░░▐
░░░░█░░▄▌░░░░▌░░░█░░░▄▄
░░░░▐▄░▌░░░░▐▄▌░░░▀▄█▄
░░░░░▐█░░░░░░░▌░▄█▀░░░▀█
░░░▌░░▐░░░░░▄▀▀▀░░░░░░░░
░░░▐░░░▀▄░█▀▄▄▄▄░░░░░░░░
▌░░█▄░░░▐▄█░░░░▌▀▄░░░░░░
█░░░▐░░░██░░░░░█░░▄░█▀░░
▐░░░█░░░▐█░░░░░░░░▌▀░░░░
░▌░░▌░░░▐█▄░░░░▄▄█▄▄▄░░░
▄▄▀▄█░░░░██░▄█▀░█▄▄░▐▄▄░
░░░░▀█▄░▄███░░░░░░░░░░░░
░░░░░░█████░░░░░░░░░░░░░
░░░░░░░▐███░░░░░░░░░░░░░
░░░░░░░▐███░░░░░░░░░░░░░
░░░░░░░▐████░░░░░░░░░░░░
░░▒▒▒▒▒█████▒▒░░░░░░░░░░
▒▒▒▒▒▒▄██████▒▒▒▒▒▒▒▒▒▒▒
▒▒▄▄▄█▀▒█▀▐▀▀██▄▄▄▒▒▒▒▒▒
█▀▐▒█▒▒▒▌▒▒▐▒▒▒▒▒▌▀▀▄▒▒▒

Pages: [1] 2