Tagged Questions

1
vote
2answers
75 views

C/Python Socket Performance?

Hi, my question simply relates to the difference in performance between a socket in C and in Python. Since my Python build is CPython, I assume it's similar, but I'm curious if someone actually has …
2
votes
1answer
114 views

Python port forwarding/multiplexer server

I would like to make simple server that for instance listen on UDP port 162 (SNMP trap) and then forwards this traffic to multiple clients. Also it is important that the source port & address …
1
vote
0answers
173 views

python/scapy mac flooding script

hi, I'm trying to make a small mac flood tool in python to fill my switches cam tables but i cant make the magic happen? can you see what im doing wrong? from scapy.all import * while 1: dest_mac …
0
votes
5answers
215 views

python-scapy: how to translate port numbers to service names?

A TCP layer in Scapy contains source port: >>> a[TCP].sport 80 Is there a simple way to convert port number to service name? I've seen Scapy has TCP_SERVICES and UDP_SERVICES to translate …
3
votes
4answers
561 views

Python - Library Problems

I'm relatively new to Python and am having problems programming with Scapy, the Python network manipulation tool. However, I can't tell if it's as much a Scapy problem as it is a being-a-Python-newbie …