Shirui Cao

Results 14 comments of Shirui Cao

#6 I think you can change it and open a PR?

Thank you for your explanation! I'll first try the simplest way, which is setting the sync address manually. However, we are going to simulate the base one day. I'll try...

Unfortunately I still can't capture anything useful. I set the threshold to be 70 (-35dbm), and I can't get anything after sending answer , if I set threshold to be...

So I set the sync address to {0x55,0x55,0x55, encodedID[0],encodedID[1] }, and finally I got something. I'll post my finding on #11.

Yes, I'll implement this and open a PR

Are you using a non-AVR Arduino? I met the same problem before when I was using Arduino 101. And I found that it seems that the RingBuff library is AVR...

Thank you for your response~ Actually, I am developing "replacing" attack, which is collecting other's IDs and use their IDs to replace their answers. (This is soooo evil). As for...

oh I didn't notice that function before. The answer_resubmit method works perfectly well. This DOS attack does have the ability to crash host computer. I have an iClicker1 base station...

我也遇到了同样的问题,原因是因为在`/etc/init.d/`中启动客户端的时候使用了 ``` tinyvpn -c -r 192.168.111.1:7891 & ``` 在init.d中用&来detach process会造成这个问题,改成了nohup 就好了 E.g. /etc/init.d/tinyvpn ```bash #!/bin/sh /etc/rc.common START=99 start() { nohup /usr/bin/tinyvpn -c -r xxx.xxx.xxx.xxx:xxxx } stop() { pkill tinyvpn }...

Yeah actually I've found that there are some wired things happens to my Arduino Sketch when replacing answers. But it seems to be normal when capturing and sending. Anyway, I...