• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Segmentation Fault

Hello all,

I've recently rooted one of my android phones because I wanted to test out this app called WPA/WPS Tester. For the application to work it also requires an app called Terminal Emulator. The WPA/WPS Tester will copy a command to the clipboard and paste it into Terminal Emulator.

This is the command: su -c wpa_cli IFNAME=wlan0 wps_reg (mac address) (pin number) && su -c wpa_cli

My problem is this: when I run the code, it gives the following error

Segmentation Fault.

Any ideas on a fix for this?
 
Just out of curiosity, what happens if you run the commands separately? That may give a better clue as to where it's failing:

Code:
$ su -c wpa_cli IFNAME=wlan0 wps_reg (MAC) (PIN)
$ su -c wpa_cli
 
Back
Top Bottom