答案1
我创建了一个愚蠢的小网络服务nc
,这似乎对我有用:
#!/bin/bash
while true;
# reply to web traffic with a basic 200 response
do cat /usr/local/bin/200.http |
# listen on port 80
nc -l 80 |
# save any json to a file
grep '{"transaction"' >> /path/to/logs.json
done
我将其包装到一项服务中,并将其设置为特定设备的防火墙。