File tree 1 file changed +1
-19
lines changed
1 file changed +1
-19
lines changed Original file line number Diff line number Diff line change @@ -195,9 +195,6 @@ commands:
195
195
pip3 install --upgrade pip
196
196
pip3 install mitmproxy==10.2.4
197
197
198
- # Start mitmdump
199
- mitmdump --set block_global=false &
200
- sleep 10
201
198
202
199
# Create mitmproxy directory
203
200
mkdir -p ~/.mitmproxy
@@ -387,31 +384,16 @@ commands:
387
384
adb shell ls -l /data/local/tmp/certs/$HASH.0
388
385
389
386
# Configure proxy settings
390
- adb shell settings put global http_proxy "localhost:8084"
391
387
adb shell settings put global global_http_proxy_host "localhost"
392
388
adb shell settings put global global_http_proxy_port 8084
389
+ adb shell settings put global http_proxy "localhost:8084"
393
390
394
391
# Verify proxy settings
395
392
echo "Verifying proxy settings..."
396
393
adb shell settings get global http_proxy
397
394
adb shell settings get global global_http_proxy_host
398
395
adb shell settings get global global_http_proxy_port
399
396
400
- - run :
401
- name : Start MITM Proxy with Verbose Logging
402
- background : true
403
- command : |
404
- mitmdump -p 8084 --set block_global=false --verbose &
405
- sleep 5
406
-
407
- # Verify proxy is running
408
- if ! pgrep -f "mitmdump"; then
409
- echo "Proxy failed to start"
410
- exit 1
411
- fi
412
-
413
- # Monitor proxy logs
414
- tail -f ~/.mitmproxy/mitmproxy.log &
415
397
setup_ios_simulator :
416
398
steps :
417
399
- run :
You can’t perform that action at this time.
0 commit comments