Description
I tried the Tcp Raw option of mitmproyx and its not working.
I don't know if this should be a feature request or a bug report.
Kubectl commands to create reproducable environment / deployment
I enabled rawtcp in the option menu of mitmweb.
and added ".*" to tcp_hosts
According to mitmproxy/mitmproxy#2595 this should work.
Do you have a idea to get rawtcp mode working?
The
Screenshots or other information
This are the deployments and the service I use:
apiVersion: apps/v1
kind: Deployment
metadata:
name: ncl
labels:
app: netcatlistener
spec:
replicas: 1
revisionHistoryLimit: 1
selector:
matchLabels:
app: netcatlistener
template:
metadata:
labels:
app: netcatlistener
spec:
containers:
- args:
- "-lk"
- "8888"
image: subfuzion/netcat
imagePullPolicy: IfNotPresent
name: ncl
tty: true
stdin: true
ports:
- containerPort: 8888
name: listenerport
nodeName: k8s-worker-1
---
apiVersion: v1
kind: Service
metadata:
name: ncservice
spec:
clusterIP: 10.103.53.167
ports:
- name: nctcp
port: 8888
protocol: TCP
targetPort: 8888
- name: ncudp
port: 8888
protocol: UDP
targetPort: 8888
selector:
app: netcatlistener
sessionAffinity: None
type: ClusterIP
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: ncs
spec:
replicas: 1
revisionHistoryLimit: 1
selector:
matchLabels:
app: netcatsend
template:
metadata:
labels:
app: netcatsend
spec:
containers:
- args:
- "-v"
- "10.103.53.167"
- "8888"
image: subfuzion/netcat
imagePullPolicy: IfNotPresent
name: ncs
tty: true
stdin: true
nodeName: k8s-worker-1
Description
I tried the Tcp Raw option of mitmproyx and its not working.
I don't know if this should be a feature request or a bug report.
Kubectl commands to create reproducable environment / deployment
I enabled rawtcp in the option menu of mitmweb.
and added ".*" to tcp_hosts
According to mitmproxy/mitmproxy#2595 this should work.
Do you have a idea to get rawtcp mode working?
The
Screenshots or other information
This are the deployments and the service I use: