4

I have a friend who has a PCI device that has no driver. Is there a command that will allow me to speak to this device without a driver? (we are trying to reverse engineer its protocols.)

I will basically be fuzzing it with random data.

sendmoreinfo
  • 2,533
  • 21
  • 36
MrSynAckSter
  • 239
  • 2
  • 8

2 Answers2

1

The command setpci might be what you're looking for.

Paulo Tomé
  • 3,754
  • 6
  • 26
  • 38
BCK
  • 11
  • 1
-1

You can check if its getting detected by the OS. run the below command

#lspci -----> check the output and see if you can get the attached PCI device

AReddy
  • 3,122
  • 5
  • 35
  • 75