FireSheep is able to use pcap in promiscuous mode to listen to other computers on the network. But promiscous mode requires root privileges, or at least access to /dev/bpf* on *nix machines. How is this done? Do Firefox extensions run with root privs?

link|improve this question

71% accept rate
Firesheep is for OS X and Windows only. :-) – Chris Jester-Young Apr 26 '11 at 3:04
feedback

1 Answer

up vote 1 down vote accepted

It has run_privileged methods which run the required operations as root using OS-specific mechanisms such as AuthorizationCreate (OS X), pkexec (Linux) (but this is apparently not supported, yet), and of course return true on Windows (since pretty much everyone runs as admin anyway).

link|improve this answer
hmmm, so those mechanisms must allow a subset of features that root would normally have, correct? for example, in this case AuthorizationCreate would allow putting the device into promiscuous mode, but it would not allow removing /etc/passwd or something – Caleb Hearon Apr 27 '11 at 18:51
@Caleb, nope. After the AuthorizationCreate call, it calls AuthorizationExecuteWithPrivileges, which will "with root privileges regardless of the privileges of the invoking process." pkexec is an executable, rather than a function, and it can let you run as any user. But it's also being used to request root in this case. Keep in mind that both mechanisms will usually prompt the user. – Matthew Flaschen Apr 29 '11 at 3:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.